DATASOURCE::RAM::Groups類型用於查詢使用者組列表。
文法
{
"Type": "DATASOURCE::RAM::Groups",
"Properties": {
"GroupName": String,
"UserName": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
GroupName | String | 否 | 是 | 使用者組名稱。 | 支援使用 |
UserName | String | 否 | 是 | 使用者組中的RAM使用者名稱稱。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
GroupNames:使用者組名稱列表。
Groups:使用者組詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
GroupNames | List | 使用者組名稱列表。 | 無 |
Groups | List | 使用者組詳情列表。 | 無 |
Comments | String | 備忘資訊。 | 無 |
GroupId | String | 使用者組ID。 | 無 |
GroupName | String | 使用者組名稱。 | 無 |
CreateDate | String | 建立時間(UTC時間)。 | 無 |
樣本
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"GroupName": {
"Type": "String",
"Description": "Filter the results by a specific group name. Supports using * and ? to fuzzy match.",
"Default": "mdc-****"
}
},
"Resources": {
"Groups": {
"Type": "DATASOURCE::RAM::Groups",
"Properties": {
"GroupName": {
"Ref": "GroupName"
}
}
}
},
"Outputs": {
"GroupNames": {
"Description": "The list of group names.",
"Value": {
"Fn::GetAtt": [
"Groups",
"GroupNames"
]
}
},
"Groups": {
"Description": "The list of groups.",
"Value": {
"Fn::GetAtt": [
"Groups",
"Groups"
]
}
}
}
}