DATASOURCE::RDS::Accounts類型用於查詢執行個體的帳號資訊。
文法
{
"Type": "DATASOURCE::RDS::Accounts",
"Properties": {
"DBInstanceId": String,
"AccountName": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
DBInstanceId | String | 是 | 是 | 執行個體ID。 | 說明 暫不支援SQL Server 2017叢集版和PostgreSQL執行個體。 |
AccountName | String | 否 | 是 | 資料庫帳號名稱。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
AccountNames:資料庫帳號名稱列表。
Accounts:資料庫帳號詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
AccountNames | List | 資料庫帳號名稱列表。 | 無 |
Accounts | List | 資料庫帳號詳情列表。 | 無 |
AccountStatus | String | 帳號狀態。 | 取值:
|
AccountDescription | String | 帳號描述。 | 無 |
DBInstanceId | String | 帳號所屬執行個體ID。 | 無 |
PrivExceeded | String | 帳號管理的資料庫是否超過最大數量限制。 | 取值:
|
AccountType | String | 帳號類型。 | 取值:
|
AccountName | String | 資料庫帳號名稱。 | 無 |
DatabasePrivileges | Map | 帳號擁有的資料庫許可權列表。 | 例如:
|
樣本
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"DBInstanceId": {
"Type": "String",
"Description": "The ID of the RDS instance."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::RDS::Accounts",
"Properties": {
"DBInstanceId": {
"Ref": "DBInstanceId"
}
}
}
},
"Outputs": {
"AccountNames": {
"Description": "The list of The RDS account names.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"AccountNames"
]
}
},
"Accounts": {
"Description": "The list of The RDS accounts.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Accounts"
]
}
}
}
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
DBInstanceId:
Type: String
Description: The ID of the RDS instance.
Resources:
ExtensionDataSource:
Type: DATASOURCE::RDS::Accounts
Properties:
DBInstanceId:
Ref: DBInstanceId
Outputs:
AccountNames:
Description: The list of The RDS account names.
Value:
Fn::GetAtt:
- ExtensionDataSource
- AccountNames
Accounts:
Description: The list of The RDS accounts.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Accounts