ALIYUN::SAG::ACLAssociation digunakan untuk mengaitkan daftar kontrol akses (ACL) dengan instance Smart Access Gateway (SAG).
Sintaksis
{
"Type": "ALIYUN::SAG::ACLAssociation",
"Properties": {
"SmartAGId": String,
"AclId": String
}
}Properti
| Properti | Tipe | Diperlukan | Dapat Diedit | Deskripsi | Kendala |
| SmartAGId | String | Ya | Tidak | ID dari instance SAG yang akan dikaitkan dengan ACL. | Tidak ada |
| AclId | String | Ya | Tidak | ID dari ACL. | Tidak ada |
Parameter respons
Fn::GetAtt
Tidak ada
Contoh
JSON Format
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"AclId": {
"Type": "String",
"Description": "ID kontrol akses."
},
"SmartAGId": {
"Type": "String",
"Description": "Sebuah instance gateway cerdas yang perlu mengikat kontrol akses."
}
},
"Resources": {
"ACLAssociation": {
"Type": "ALIYUN::SAG::ACLAssociation",
"Properties": {
"AclId": {
"Ref": "AclId"
},
"SmartAGId": {
"Ref": "SmartAGId"
}
}
}
},
"Outputs": {}
}YAML Format
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
AclId:
Type: String
Description: ID kontrol akses.
SmartAGId:
Type: String
Description: Sebuah instance gateway cerdas yang perlu mengikat kontrol akses.
Resources:
ACLAssociation:
Type: 'ALIYUN::SAG::ACLAssociation'
Properties:
AclId:
Ref: AclId
SmartAGId:
Ref: SmartAGId
Outputs: {}