ALIYUN::CloudSSO::AccessConfigurationProvision は、リソースディレクトリのアカウントにアクセス構成をプロビジョニングするために使用されます。
構文
{
"Type": "ALIYUN::CloudSSO::AccessConfigurationProvision",
"Properties": {
"DirectoryId": String,
"TargetType": String,
"AccessConfigurationId": String,
"TargetId": String
}
}プロパティ
プロパティ | タイプ | 必須 | 編集可能 | 説明 | 制約 |
AccessConfigurationId | String | はい | いいえ | アクセス構成の ID。 | なし。 |
DirectoryId | String | はい | いいえ | ディレクトリ ID。 | なし。 |
TargetId | String | はい | いいえ | タスクオブジェクトの ID。 | なし。 |
TargetType | String | はい | いいえ | タスクオブジェクトのタイプ。 | 値を RD-Account に設定します。 RD-Account の値は、リソースディレクトリのアカウントを指定します。 |
戻り値
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"
}
}
}
}
}