ALIYUN::SAG::ACLAssociation は、アクセス制御リスト (ACL) を Smart Access Gateway (SAG) インスタンスに関連付けるために使用されます。
構文
{
"Type": "ALIYUN::SAG::ACLAssociation",
"Properties": {
"SmartAGId": String,
"AclId": String
}
}プロパティ
| プロパティ | タイプ | 必須 | 編集可能 | 説明 | 制約 |
| SmartAGId | String | はい | いいえ | ACL に関連付ける SAG インスタンスの ID。 | なし |
| AclId | String | はい | いいえ | ACL の ID。 | なし |
レスポンスパラメーター
Fn::GetAtt
なし
例
JSON 形式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"AclId": {
"Type": "String",
"Description": "アクセス制御 ID。" // Access control ID.
},
"SmartAGId": {
"Type": "String",
"Description": "アクセス制御をバインドする必要があるインテリジェントゲートウェイインスタンス。" // An intelligent gateway instance that needs to bind access control.
}
},
"Resources": {
"ACLAssociation": {
"Type": "ALIYUN::SAG::ACLAssociation",
"Properties": {
"AclId": {
"Ref": "AclId"
},
"SmartAGId": {
"Ref": "SmartAGId"
}
}
}
},
"Outputs": {}
}YAML 形式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
AclId:
Type: String
Description: アクセス制御 ID。 // Access control ID.
SmartAGId:
Type: String
Description: アクセス制御をバインドする必要があるインテリジェントゲートウェイインスタンス。 // An intelligent gateway instance that needs to bind access control.
Resources:
ACLAssociation:
Type: 'ALIYUN::SAG::ACLAssociation'
Properties:
AclId:
Ref: AclId
SmartAGId:
Ref: SmartAGId
Outputs: {}