ALIYUN::CEN::CenBandwidthLimit is used to configure the cross-region interconnection bandwidth in a bandwidth plan.

Notice After a resource is deleted, the bandwidth will not be restored to the original value before the resource was created.

Syntax

{
  "Type": "ALIYUN::CEN::CenBandwidthLimit",
  "Properties": {
    "OppositeRegionId": String,
    "CenId": String,
    "BandwidthLimit": Integer,
    "LocalRegionId": String
  }
}

Properties

Property Type Required Editable Description Constraint
OppositeRegionId String Yes No The ID of the peer region. None.
CenId String Yes No The ID of the CEN instance. None.
BandwidthLimit Integer Yes Yes The peak interconnection bandwidth between two regions. Minimum value: 1.
LocalRegionId String Yes No The ID of the local region. None.

Response parameters

Fn::GetAtt

None.

Examples

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Resources": {
    "CenBandwidthLimit": {
      "Type": "ALIYUN::CEN::CenBandwidthLimit",
      "Properties": {
        "OppositeRegionId": {
          "Ref": "OppositeRegionId"
        },
        "CenId": {
          "Ref": "CenId"
        },
        "BandwidthLimit": {
          "Ref": "BandwidthLimit"
        },
        "LocalRegionId": {
          "Ref": "LocalRegionId"
        }
      }
    }
  },
  "Parameters": {
    "OppositeRegionId": {
      "Type": "String",
      "Description": "The ID of the other interconnected region."
    },
    "CenId": {
      "Type": "String",
      "Description": "The ID of the CEN instance."
    },
    "BandwidthLimit": {
      "Type": "Number",
      "Description": "The bandwidth configured for the interconnected regions communication. Minimal value: 1",
      "MinValue": 1
    },
    "LocalRegionId": {
      "Type": "String",
      "Description": "The ID of the local region."
    }
  },
  "Outputs": {}
}