ALIYUN::CEN::CenBandwidthPackageAssociation は、Cloud Enterprise Network(CEN)インスタンスに帯域幅プランを関連付けるために使用されます。
構文
{
"Type": "ALIYUN::CEN::CenBandwidthPackageAssociation",
"Properties": {
"CenId": String,
"CenBandwidthPackageId": String
}
}プロパティ
プロパティ | タイプ | 必須 | 編集可能 | 説明 | 制約 |
CenBandwidthPackageId | String | はい | いいえ | 帯域幅プランのID。 | なし。 |
CenId | String | はい | いいえ | CENインスタンスの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: CENインスタンスのID。
CenBandwidthPackageId:
Type: String
Description: 帯域幅パッケージのID。
Outputs: {}
JSON 形式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"CenBandwidthPackageAssociation": {
"Type": "ALIYUN::CEN::CenBandwidthPackageAssociation",
"Properties": {
"CenId": {
"Ref": "CenId"
},
"CenBandwidthPackageId": {
"Ref": "CenBandwidthPackageId"
}
}
}
},
"Parameters": {
"CenId": {
"Type": "String",
"Description": "CENインスタンスのID。"
},
"CenBandwidthPackageId": {
"Type": "String",
"Description": "帯域幅パッケージのID。"
}
},
"Outputs": {}
}