ALIYUN::CEN::CenBandwidthPackageAssociation is used to bind a bandwidth package to the specified Cloud Enterprise Network (CEN) instance.

Syntax

{
  "Type": "ALIYUN::CEN::CenBandwidthPackageAssociation",
  "Properties": {
    "CenId": String,
    "CenBandwidthPackageId": String
  }
}

Properties

Name Type Required Editable Description Validity
CenId String Yes No The ID of the CEN instance. None
CenBandwidthPackageId String Yes No The ID of the bandwidth package. None

Response parameters

Fn::GetAtt

None

Examples

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Resources": {
    "CenBandwidthPackageAssociation": {
      "Type": "ALIYUN::CEN::CenBandwidthPackageAssociation",
      "Properties": {
        "CenId": {
          "Ref": "CenId"
        },
        "CenBandwidthPackageId": {
          "Ref": "CenBandwidthPackageId"
        }
      }
    }
  },
  "Parameters": {
    "CenId": {
      "Type": "String",
      "Description": "The ID of the CEN instance."
    },
    "CenBandwidthPackageId": {
      "Type": "String",
      "Description": "The ID of the bandwidth package."
    }
  },
  "Outputs": {}
}