ALIYUN::PVTZ::ZoneVpcBinder 用于关联或解关联Zone与VPC列表两者之间的关系。

语法

{
  "Type": "ALIYUN::PVTZ::ZoneVpcBinder",
  "Properties": {
    "Vpcs": List,
    "ZoneId": String
  }
}

属性

属性名称 类型 必须 允许更新 描述 约束
Vpcs List vpc列表。 范围0-10个。
ZoneId String ZoneId,zone的唯一识别码。 无。

Vpcs语法

"Vpcs": [
  {
    "VpcId": String,
    "RegionId": String
  }
]

Vpcs属性

属性名称 类型 必须 允许更新 描述 约束
VpcId String vpc id。 无。
RegionId String region Id。 无。

返回值

Fn::GetAtt

无。

示例

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Resources": {
    "ZoneVpcBinder": {
      "Type": "ALIYUN::PVTZ::ZoneVpcBinder",
      "Properties": {
        "Vpcs": {
          "Fn::Split": [",", {
            "Ref": "Vpcs"
          }, {
            "Ref": "Vpcs"
          }]
        },
        "ZoneId": {
          "Ref": "ZoneId"
        }
      }
    }
  },
  "Parameters": {
    "Vpcs": {
      "MinLength": 0,
      "Type": "CommaDelimitedList",
      "Description": "",
      "MaxLength": 10
    },
    "ZoneId": {
      "Type": "String",
      "Description": "Zone Id"
    }
  },
  "Outputs": {}
}