ALIYUN::CEN::CenBandwidthPackageAssociation類型用於將頻寬包綁定到指定的雲企業網執行個體。
文法
{
"Type": "ALIYUN::CEN::CenBandwidthPackageAssociation",
"Properties": {
"CenId": String,
"CenBandwidthPackageId": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
CenBandwidthPackageId | String | 是 | 否 | 頻寬包的ID。 | 無。 |
CenId | String | 是 | 否 | 雲企業網執行個體的ID。 | 無。 |
傳回值
Fn::GetAtt
無。
樣本
YAML格式
ROSTemplateFormatVersion: '2015-09-01'
Resources:
CenBandwidthPackageAssociation:
Type: ALIYUN::CEN::CenBandwidthPackageAssociation
Properties:
CenId:
Ref: CenId
CenBandwidthPackageId:
Ref: CenBandwidthPackageId
Parameters:
CenId:
Type: String
Description: The ID of the CEN instance.
CenBandwidthPackageId:
Type: String
Description: The ID of the bandwidth package.
Outputs: {}
JSON格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"CenBandwidthPackageAssociation": {
"Type": "ALIYUN::CEN::CenBandwidthPackageAssociation",
"Properties": {
"CenId": {
"Ref": "CenId"
},
"CenBandwidthPackageId": {
"Ref": "CenBandwidthPackageId"
}
}
}
},
"Parameters": {
"CenId": {
"Type": "String",
"Description": "The ID of the CEN instance."
},
"CenBandwidthPackageId": {
"Type": "String",
"Description": "The ID of the bandwidth package."
}
},
"Outputs": {}
}