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 带宽类型。 取值:
  • Basic:标准加速带宽。
  • Enhanced:增强加速带宽。
  • Advanced:精品加速带宽。
CbnGeographicRegionIdB String 跨域加速包的互通区域B。
Type String 带宽包的类型。 取值:
  • Basic:基础带宽包。
  • CrossDomain:跨域加速包。
CbnGeographicRegionIdA String 跨域加速包的互通区域A。
AutoUseCoupon String 是否自动使用优惠券。 取值:
  • True
  • False
PricingCycle String 价格周期。 取值:
  • Month:按月付费。
  • Year:按年付费。
ChargeType String 付费类型。 取值:

PREPAY:包年包月。

Bandwidth Integer 带宽包的带宽值。 取值范围:2~2000。

单位:MB。

Ratio String 保底百分比。
Duration String 购买时长。 取值范围:
  • 按月付费:1~9。
  • 按年付费:1~3。
AutoPay String 是否自动付费。 取值:
  • True
  • False
BillingType String 计量方式。

返回值

Fn::GetAtt

  • BandwidthPackageName:带宽包名称。
  • CbnGeographicRegionIdA:跨域加速包的互通区域A。
  • CbnGeographicRegionIdB:跨域加速包的互通区域B。
  • AutoPay:是否自动付费。
  • BandwidthType:带宽类型。
  • Type:带宽包类型。
  • AutoUseCoupon:是否自动使用优惠券。
  • ChargeType:付费类型。
  • Bandwidth:带宽包的带宽值。
  • BandwidthPackageId:带宽包ID。
  • Ratio:带宽的保底百分比。
  • BillingType:带宽计量方式。

示例

  • YAML格式

    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: {}
  • 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": {
      }
    }