全部產品
Search
文件中心

:DATASOURCE::RAM::Policies

更新時間:Nov 07, 2024

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

權限原則類型。

取值:

  • System:系統權限原則。

  • Custom:自訂權限原則。

說明

如果不指定該參數,則列出所有權限原則。

RoleName

String

RAM角色名稱。

您必須且只能指定UserName、GroupName和RoleName其中一個參數。

UserName

String

RAM使用者名稱稱。

您必須且只能指定UserName、GroupName和RoleName其中一個參數。

PolicyName

String

權限原則名稱。

支援使用*?模糊比對。

RefreshOptions

String

當資源棧更新時,資料來源資源的重新整理策略。

有效值:

  • Never(預設值):更新堆棧時,從不重新整理資料來源資源。

  • Always:更新堆棧時,始終重新整理資料來源資源。

返回資料(Fn::GetAtt)

  • PolicyNames:權限原則名稱列表。

  • Policies:權限原則詳情列表。

屬性名稱

類型

描述

約束

PolicyNames

List

權限原則名稱列表。

Policies

List

權限原則詳情列表。

DefaultVersion

String

預設版本。

Description

String

權限原則描述。

PolicyName

String

權限原則名稱。

CreateDate

String

建立時間(UTC時間)。

PolicyType

String

權限原則類型。

取值:

  • System:系統權限原則。

  • Custom:自訂權限原則。

樣本

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"
        ]
      }
    }
  }
}