全部產品
Search
文件中心

:ALIYUN::VPC::CommonBandwidthPackage

更新時間:Jun 19, 2024

ALIYUN::VPC::CommonBandwidthPackage類型用於建立共用頻寬執行個體。

說明

本資源僅支援建立隨用隨付共用頻寬執行個體。

文法

{
  "Type": "ALIYUN::VPC::CommonBandwidthPackage",
  "Properties": {
    "Description": String,
    "Zone": String,
    "ISP": String,
    "ResourceGroupId": String,
    "Bandwidth": Integer,
    "InternetChargeType": String,
    "Name": String,
    "DeletionProtection": Boolean
    "Tags": List
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

Description

String

共用頻寬的描述資訊。

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

Zone

String

共用頻寬的可用性區域。

不需要指定該參數。

ISP

String

EIP的線路類型。

取值:BGP(多線)。

ResourceGroupId

String

資源群組ID。

Bandwidth

Integer

共用頻寬的頻寬峰值。

取值範圍:2~5000。

單位:Mbps。

InternetChargeType

String

共用頻寬的計費方式。

取值範圍:

  • PayByBandwidth(預設值):按頻寬計費。

  • PayBy95:按增強型95計費。

Name

String

共用頻寬的名稱。

長度為2~128個字元。必須以英文字母或漢字開頭,但不能以http://https://開頭。可包含英文字母、漢字、數字、半形句號(.)、底線(_)和短劃線(-)。

Tags

List

標籤。

最多支援添加20個標籤。

更多資訊,請參見Tags屬性

DeletionProtection

Boolean

是否啟用刪除保護。

取值:

  • true:啟用刪除保護。

  • false(預設值):不啟用刪除保護。

Tags文法

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

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標籤鍵。

長度為1~128個字元,不能以aliyunacs:開頭,不能包含http://或者https://

Value

String

標籤值。

長度為0~128個字元,不能以aliyunacs:開頭,不能包含http://或者https://

傳回值

Fn::GetAtt

BandwidthPackageId:共用頻寬執行個體的ID。

樣本

  • YAML格式

    ROSTemplateFormatVersion: '2015-09-01'
    Parameters: {}
    Resources:
      CommonBandwidthPackage:
        Type: ALIYUN::VPC::CommonBandwidthPackage
        Properties:
          Description: Test
          Name: test-dsa
          Bandwidth: 5
          InternetChargeType: PayByBandwidth
    Outputs:
      BandwidthPackageId:
        Description: The ID of the Internet Shared Bandwidth instance.
        Value:
          Fn::GetAtt:
            - CommonBandwidthPackage
            - BandwidthPackageId
  • JSON格式

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
      },
      "Resources": {
        "CommonBandwidthPackage": {
          "Type": "ALIYUN::VPC::CommonBandwidthPackage",
          "Properties": {
            "Description": "Test",
            "Name": "test-dsa",
            "Bandwidth": 5,
            "InternetChargeType": "PayByBandwidth"
          }
        }
      },
      "Outputs": {
        "BandwidthPackageId": {
          "Description": "The ID of the Internet Shared Bandwidth instance.",
          "Value": {
            "Fn::GetAtt": [
              "CommonBandwidthPackage",
              "BandwidthPackageId"
            ]
          }
        }
      }
    }{
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
      },
      "Resources": {
        "CommonBandwidthPackage": {
          "Type": "ALIYUN::VPC::CommonBandwidthPackage",
          "Properties": {
            "Description": "Test",
            "Name": "test-dsa",
            "Bandwidth": 5,
            "InternetChargeType": "PayByBandwidth"
          }
        }
      },
      "Outputs": {
        "BandwidthPackageId": {
          "Description": "The ID of the Internet Shared Bandwidth instance.",
          "Value": {
            "Fn::GetAtt": [
              "CommonBandwidthPackage",
              "BandwidthPackageId"
            ]
          }
        }
      }
    }