Todos os produtos
Search
Central de documentação

Resource Orchestration Service:ALIYUN::CEN::CenBandwidthPackageAssociation

Última atualização: Jun 27, 2026

Associa um plano de largura de banda a uma instância do Cloud Enterprise Network (CEN).

Sintaxe

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

Propriedades

Propriedade

Tipo

Obrigatória

Editável

Descrição

Restrição

CenBandwidthPackageId

String

Sim

Não

ID do plano de largura de banda.

Nenhuma.

CenId

String

Sim

Não

ID da instância do CEN.

Nenhuma.

Valores de retorno

Fn::GetAtt

Nenhum.

Exemplos

Formato YAML

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

Formato JSON

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