DATASOURCE::RAM::Groups类型用于查询用户组列表。

语法

{
  "Type": "DATASOURCE::RAM::Groups",
  "Properties": {
    "GroupName": String,
    "UserName": String
  }
}

属性

属性名称 类型 必须 允许更新 描述 约束
GroupName String 用户组名称。 支持使用*?模糊匹配。
UserName String 用户组中的RAM用户名称。

返回数据(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"
        ]
      }
    }
  }
}