ALIYUN::SAG::SmartAccessGatewayBinding 類型用于將智能接入網關綁定到指定的云連接網中。
語法
{
"Type": "ALIYUN::SAG::SmartAccessGatewayBinding",
"Properties": {
"SmartAGId": String,
"CcnId": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
---|---|---|---|---|---|
SmartAGId | String | 是 | 否 | 智能接入網關ID。 | 無 |
CcnId | String | 是 | 否 | 要綁定的云連接網ID。 | 無 |
返回值
Fn::GetAtt
SmartAGId:智能接入網關ID。
示例
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"SmartAccessGatewayBinding": {
"Type": "ALIYUN::SAG::SmartAccessGatewayBinding",
"Properties": {
"SmartAGId": {
"Ref": "SmartAGId"
},
"CcnId": {
"Ref": "CcnId"
}
}
}
},
"Parameters": {
"SmartAGId": {
"Type": "String",
"Description": "The ID of the Smart Access Gateway instance."
},
"CcnId": {
"Type": "String",
"Description": "The ID of the CCN instance to bind."
}
},
"Outputs": {
"SmartAGId": {
"Description": "The ID of the Smart Access Gateway instance.",
"Value": {
"Fn::GetAtt": [
"SmartAccessGatewayBinding",
"SmartAGId"
]
}
}
}
}