DATASOURCE::GraphDatabase::Accounts类型用于查询账号信息。
语法
{
"Type": "DATASOURCE::GraphDatabase::Accounts",
"Properties": {
"DbInstanceId": String,
"AccountName": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
---|---|---|---|---|---|
DbInstanceId | String | 是 | 是 | 数据库实例ID。 | 无 |
AccountName | String | 否 | 是 | 账号名称。 | 无 |
返回值
Fn::GetAtt
- AccountNames:账号名称列表。
- Accounts:账号详情列表。
属性名称 | 类型 | 描述 | 约束 |
---|---|---|---|
AccountNames | List | 账号名称列表。 | 无 |
Accounts | List | 账号详情列表。 | 无 |
Status | String | 账号状态。 | 无 |
AccountDescription | String | 账号描述。 | 无 |
AccountType | String | 账号类型。 | 无 |
AccountName | String | 账号名称。 | 无 |
示例
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "DbInstanceId": { "Type": "String", "Description": "Instance Id." } }, "Resources": { "ExtensionDataSource": { "Type": "DATASOURCE::GraphDatabase::Accounts", "Properties": { "DbInstanceId": { "Ref": "DbInstanceId" }, "AccountName": "DBAdmin" } } }, "Outputs": { "AccountNames": { "Description": "The list of account names.", "Value": { "Fn::GetAtt": [ "ExtensionDataSource", "AccountNames" ] } }, "Accounts": { "Description": "The list of accounts.", "Value": { "Fn::GetAtt": [ "ExtensionDataSource", "Accounts" ] } } } }