文档

ALIYUN::CloudSSO::AccessConfigurationProvision

更新时间:

ALIYUN::CloudSSO::AccessConfigurationProvision类型用于将访问配置部署到RD账号上。

语法

{
  "Type": "ALIYUN::CloudSSO::AccessConfigurationProvision",
  "Properties": {
    "DirectoryId": String,
    "TargetType": String,
    "AccessConfigurationId": String,
    "TargetId": String
  }
}

属性

属性名称

类型

必须

允许更新

描述

约束

DirectoryId

String

目录ID。

TargetType

String

任务目标类型。

取值:RD-Account,表示任务目标类型为RD账号。

AccessConfigurationId

String

访问配置ID。

TargetId

String

任务目标ID。

返回值

Fn::GetAtt

示例

  • YAML格式

    ROSTemplateFormatVersion: '2015-09-01'
    Parameters:
      AccessConfigurationId:
        Description:
          en: The ID of the access configuration.
        Required: true
        Type: String
      DirectoryId:
        Description:
          en: The ID of the directory.
        Required: true
        Type: String
      TargetId:
        Description:
          en: The ID of the task object.
        Required: true
        Type: String
      TargetType:
        AllowedValues:
        - RD-Account
        Description:
          en: The type of the task object. Set the value to RD-Account, which specifies
            the accounts in the resource directory.
        Required: true
        Type: String
    Resources:
      AccessConfigurationProvision:
        Properties:
          AccessConfigurationId:
            Ref: AccessConfigurationId
          DirectoryId:
            Ref: DirectoryId
          TargetId:
            Ref: TargetId
          TargetType:
            Ref: TargetType
        Type: ALIYUN::CloudSSO::AccessConfigurationProvision
                            
  • JSON格式

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
        "DirectoryId": {
          "Type": "String",
          "Description": {
            "en": "The ID of the directory."
          },
          "Required": true
        },
        "TargetType": {
          "Type": "String",
          "Description": {
            "en": "The type of the task object. Set the value to RD-Account, which specifies the accounts in the resource directory."
          },
          "AllowedValues": [
            "RD-Account"
          ],
          "Required": true
        },
        "AccessConfigurationId": {
          "Type": "String",
          "Description": {
            "en": "The ID of the access configuration."
          },
          "Required": true
        },
        "TargetId": {
          "Type": "String",
          "Description": {
            "en": "The ID of the task object."
          },
          "Required": true
        }
      },
      "Resources": {
        "AccessConfigurationProvision": {
          "Type": "ALIYUN::CloudSSO::AccessConfigurationProvision",
          "Properties": {
            "DirectoryId": {
              "Ref": "DirectoryId"
            },
            "TargetType": {
              "Ref": "TargetType"
            },
            "AccessConfigurationId": {
              "Ref": "AccessConfigurationId"
            },
            "TargetId": {
              "Ref": "TargetId"
            }
          }
        }
      }
    }
                            
  • 本页导读 (1)
文档反馈