DATASOURCE::RAM::Policies類型用於查詢權限原則。
文法
{
"Type": "DATASOURCE::RAM::Policies",
"Properties": {
"GroupName": String,
"PolicyType": String,
"RoleName": String,
"UserName": String,
"PolicyName": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
GroupName | String | 否 | 是 | 使用者組名稱。 | 您必須且只能指定UserName、GroupName和RoleName其中一個參數。 |
PolicyType | String | 否 | 是 | 權限原則類型。 | 取值:
說明 如果不指定該參數,則列出所有權限原則。 |
RoleName | String | 否 | 是 | RAM角色名稱。 | 您必須且只能指定UserName、GroupName和RoleName其中一個參數。 |
UserName | String | 否 | 是 | RAM使用者名稱稱。 | 您必須且只能指定UserName、GroupName和RoleName其中一個參數。 |
PolicyName | String | 否 | 是 | 權限原則名稱。 | 支援使用 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
PolicyNames:權限原則名稱列表。
Policies:權限原則詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
PolicyNames | List | 權限原則名稱列表。 | 無 |
Policies | List | 權限原則詳情列表。 | 無 |
DefaultVersion | String | 預設版本。 | 無 |
Description | String | 權限原則描述。 | 無 |
PolicyName | String | 權限原則名稱。 | 無 |
CreateDate | String | 建立時間(UTC時間)。 | 無 |
PolicyType | String | 權限原則類型。 | 取值:
|
樣本
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"GroupName": {
"Type": "String",
"Description": "The specific group to which policies attached.Only one of UserName, GroupName, and RoleName can be specified at most."
},
"PolicyType": {
"Type": "String",
"Description": "Filter the results by a specific policy type.",
"AllowedValues": [
"System",
"Custom"
]
},
"RoleName": {
"Type": "String",
"Description": "The specific role to which policies attached.Only one of UserName, GroupName, and RoleName can be specified at most."
},
"UserName": {
"Type": "String",
"Description": "The specific user to which policies attached. Only one of UserName, GroupName, and RoleName can be specified at most."
},
"PolicyName": {
"Type": "String",
"Description": "Filter the results by a specific policy name. Supports using * and ? to fuzzy match."
}
},
"Resources": {
"Policies": {
"Type": "DATASOURCE::RAM::Policies",
"Properties": {
"GroupName": {
"Ref": "GroupName"
},
"PolicyType": {
"Ref": "PolicyType"
},
"RoleName": {
"Ref": "RoleName"
},
"UserName": {
"Ref": "UserName"
},
"PolicyName": {
"Ref": "PolicyName"
}
}
}
},
"Outputs": {
"PolicyNames": {
"Description": "The list of policy names.",
"Value": {
"Fn::GetAtt": [
"Policies",
"PolicyNames"
]
}
},
"Policies": {
"Description": "The list of policies.",
"Value": {
"Fn::GetAtt": [
"Policies",
"Policies"
]
}
}
}
}