ALIYUN::SAG::SmartAccessGatewayBinding は、Smart Access Gateway (SAG) インスタンスを指定された Cloud Connect Network (CCN) インスタンスにバインドするために使用されます。
構文
{
"Type": "ALIYUN::SAG::SmartAccessGatewayBinding",
"Properties": {
"SmartAGId": String,
"CcnId": String
}
}
プロパティ
| 名前 | タイプ | 必須 | 編集可能 | 説明 | 有効性 |
| SmartAGId | String | はい | いいえ | SAG インスタンスの ID。 | なし |
| CcnId | String | はい | いいえ | バインドする CCN インスタンスの ID。 | なし |
レスポンスパラメーター
Fn::GetAtt
SmartAGId: SAG インスタンスの ID。
例
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"SmartAccessGatewayBinding": {
"Type": "ALIYUN::SAG::SmartAccessGatewayBinding",
"Properties": {
"SmartAGId": {
"Ref": "SmartAGId"
},
"CcnId": {
"Ref": "CcnId"
}
}
}
},
"Parameters": {
"SmartAGId": {
"Type": "String",
// Smart Access Gateway インスタンスの ID。
"Description": "The ID of the Smart Access Gateway instance."
},
"CcnId": {
"Type": "String",
// バインドする CCN インスタンスの ID。
"Description": "The ID of the CCN instance to be bound."
}
},
"Outputs": {
"SmartAGId": {
// Smart Access Gateway インスタンスの ID。
"Description": "The ID of the Smart Access Gateway instance.",
"Value": {
"Fn::GetAtt": [
"SmartAccessGatewayBinding",
"SmartAGId"
]
}
}
}
}