全部產品
Search
文件中心

:DATASOURCE::RAM::Groups

更新時間:Nov 07, 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"
        ]
      }
    }
  }
}