全部产品
Search
文档中心

资源编排:DATASOURCE::RAM::Groups

更新时间:Nov 06, 2024

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

语法

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

属性

属性名称

类型

必须

允许更新

描述

约束

GroupName

String

用户组名称。

支持使用*?模糊匹配。

UserName

String

用户组中的RAM用户名称。

RefreshOptions

String

当资源栈更新时,数据源资源的刷新策略。

有效值:

  • Never(默认值):更新堆栈时,从不刷新数据源资源。

  • Always:更新堆栈时,始终刷新数据源资源。

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