ALIYUN::GA::BandwidthPackage类型用于创建带宽包。
语法
{
"Type": "ALIYUN::GA::BandwidthPackage",
"Properties": {
"BandwidthType": String,
"CbnGeographicRegionIdB": String,
"Type": String,
"AutoUseCoupon": String,
"PricingCycle": String,
"ChargeType": String,
"Bandwidth": Integer,
"Ratio": String,
"Duration": String,
"AutoPay": String,
"BillingType": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
---|---|---|---|---|---|
BandwidthType | String | 否 | 是 | 带宽类型。 | 取值:
|
CbnGeographicRegionIdB | String | 否 | 否 | 跨域加速包的互通区域B。 | 无 |
Type | String | 是 | 否 | 带宽包的类型。 | 取值:
|
CbnGeographicRegionIdA | String | 否 | 否 | 跨域加速包的互通区域A。 | 无 |
AutoUseCoupon | String | 否 | 是 | 是否自动使用优惠券。 | 取值:
|
PricingCycle | String | 否 | 否 | 价格周期。 | 取值:
|
ChargeType | String | 否 | 否 | 付费类型。 | 取值: PREPAY:包年包月。 |
Bandwidth | Integer | 是 | 是 | 带宽包的带宽值。 | 取值范围:2~2000。 单位:MB。 |
Ratio | String | 否 | 否 | 保底百分比。 | 无 |
Duration | String | 否 | 否 | 购买时长。 | 取值范围:
|
AutoPay | String | 否 | 是 | 是否自动付费。 | 取值:
|
BillingType | String | 否 | 否 | 计量方式。 | 无 |
返回值
Fn::GetAtt
- BandwidthPackageName:带宽包名称。
- CbnGeographicRegionIdA:跨域加速包的互通区域A。
- CbnGeographicRegionIdB:跨域加速包的互通区域B。
- AutoPay:是否自动付费。
- BandwidthType:带宽类型。
- Type:带宽包类型。
- AutoUseCoupon:是否自动使用优惠券。
- ChargeType:付费类型。
- Bandwidth:带宽包的带宽值。
- BandwidthPackageId:带宽包ID。
- Ratio:带宽的保底百分比。
- BillingType:带宽计量方式。
示例
JSON
格式{ "ROSTemplateFormatVersion": "2015-09-01", "Parameters": { }, "Resources": { "GaBandwidthPackage": { "Type": "ALIYUN::GA::BandwidthPackage", "Properties": { "CbnGeographicRegionIdA": "cn-beijing", "CbnGeographicRegionIdB": "cn-hangzhou", "BandwidthType": "Basic", "Type": "CrossDomain", "AutoUseCoupon": "True", "PricingCycle": "Month", "ChargeType": "PREPAY", "Bandwidth": 200, "Duration": 3, "AutoPay": "False" } } }, "Outputs": { } }