ALIYUN::RAM::AttachPolicyToRole类型用于为指定角色授予权限策略。
语法
{
"Type": "ALIYUN::RAM::AttachPolicyToRole",
"Properties": {
"PolicyName": String,
"PolicyType": String,
"RoleName": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
---|---|---|---|---|---|
PolicyName | String | 是 | 否 | 指定权限策略名称。 | 无。 |
PolicyType | String | 是 | 否 | 指定权限的类型。 | 取值范围:
|
RoleName | String | 是 | 否 | 指定角色名,例如:dev。 | 无。 |
返回值
Fn::GetAtt
无。
示例
-
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { "Role": { "Type": "String", "AssociationProperty": "ALIYUN::RAM::Role" } }, "Resources": { "AttachPolicyToRole": { "Type": "ALIYUN::RAM::AttachPolicyToRole", "Properties": { "PolicyName": "OSS-Administrator", "PolicyType": "Custom", "RoleName": { "Ref": "Role" } } } } }