全部產品
Search
文件中心

:ALIYUN::CEN::CenBandwidthPackage

更新時間:Sep 19, 2024

ALIYUN::CEN::CenBandwidthPackage類型用於在使用雲企業網串連不同地區的網路執行個體前,根據網路執行個體所屬地區購買頻寬包。

文法

{
  "Type": "ALIYUN::CEN::CenBandwidthPackage",
  "Properties": {
    "Description": String,
    "BandwidthPackageChargeType": String,
    "GeographicRegionBId": String,
    "GeographicRegionAId": String,
    "PricingCycle": String,
    "AutoRenew": "Boolean",
    "Bandwidth": Integer,
    "Period": Integer,
    "AutoPay": "Boolean",
    "AutoRenewDuration": Integer,
    "Name": String,
    "ResourceGroupId": String,
    "Tags": List
  }
} 

屬性

屬性名稱

類型

必須

允許更新

描述

約束

Bandwidth

Integer

頻寬包的頻寬峰值

單位:Mbps。

最小值:2。

GeographicRegionAId

String

網路執行個體所屬地區

取值:

  • China

  • North-America

  • Asia-Pacific

  • Europe

GeographicRegionBId

String

網路執行個體所屬的地區

取值:

  • China

  • North-America

  • Asia-Pacific

  • Europe

AutoPay

Boolean

是否自動支付賬單

取值:

  • true(預設值)

  • false

AutoRenew

Boolean

是否開啟自動續約

取值:

  • true

  • false(預設值)

AutoRenewDuration

Integer

自動續約時間長度

當AutoRenew取值為true時生效。

取值:

  • 1

  • 2

  • 3

單位:月。

BandwidthPackageChargeType

String

頻寬包的付費類型

取值:

  • POSTPAY

  • PREPAY

Description

String

頻寬包的描述

長度為2~256個字元,必須以中文字元或英文字元開頭,不能以http://https://開頭。

可包含中文字元、英文字元、數字、短劃線(-)、英文句點(.)和底線(_)。

Name

String

頻寬包的名稱

長度為2~128個字元,必須以英文字元或中文字元開頭,不能以http://https://開頭。

可包含英文字元、中文字元、數字、英文句點(.)、底線(_)和短劃線(-)。

Period

Integer

頻寬包的購買時間長度

預設值:1。

PricingCycle

String

頻寬包的計費周期

取值:

  • Month(預設值)

  • Year

ResourceGroupId

String

資源群組ID。

Tags

List

標籤列表。

更多資訊,請參見Tags屬性

Tags文法

"Tags": [
  {
    "Key": String,
    "Value": String
  }
]

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標籤鍵。

Value

String

標籤值。

傳回值

Fn::GetAtt

CenBandwidthPackageId:建立頻寬包的ID。

樣本

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
  CenBandwidthPackage:
    Type: ALIYUN::CEN::CenBandwidthPackage
    Properties:
      GeographicRegionBId: China
      GeographicRegionAId: China
      Bandwidth: 3
      BandwidthPackageChargeType: POSTPAY
Outputs:
  CenBandwidthPackageId:
    Description: The ID of the bandwidth package.
    Value:
      Fn::GetAtt:
        - CenBandwidthPackage
        - CenBandwidthPackageId

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
  },
  "Resources": {
    "CenBandwidthPackage": {
      "Type": "ALIYUN::CEN::CenBandwidthPackage",
      "Properties": {
        "GeographicRegionBId": "China",
        "GeographicRegionAId": "China",
        "Bandwidth": 3,
        "BandwidthPackageChargeType": "POSTPAY"
      }
    }
  },
  "Outputs": {
    "CenBandwidthPackageId": {
      "Description": "The ID of the bandwidth package.",
      "Value": {
        "Fn::GetAtt": [
          "CenBandwidthPackage",
          "CenBandwidthPackageId"
        ]
      }
    }
  }
}