语法
{
"Type": "ALIYUN::ECS::VSwitch",
"Properties": {
"VSwitchName": String,
"VpcId": String,
"Description": String,
"Tags": List,
"Ipv6CidrBlock": Integer,
"ZoneId": String,
"CidrBlock": String,
"VpcIpv6CidrBlock": String,
"ZoneType": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
VpcId
| String | 是 | 否 | 要创建交换机的专有网络ID。 | 无 |
ZoneId
| String | 是 | 否 | 可用区ID。 | 无 |
VSwitchName
| String | 否 | 是 | 交换机名称。 | 长度为2~128个字符。必须以英文字母或汉字开头,不能以http:// 或https:// 开头。可包含英文字母、汉字、数字、下划线(_)和短划线(-)。 |
CidrBlock
| String | 是 | 否 | 交换机网段。 | 必须是所属专有网络的子网段,并且没有被其他交换机占用。 |
Description
| String | 否 | 是 | 交换机描述。 | 长度为2~256个字符。不能以http:// 和https:// 开头。 |
Ipv6CidrBlock
| Integer | 否 | 否 | 交换机的IPv6网段。 | 取值范围:0~255(十进制)。 交换机的IPv6网段掩码默认为64位。 支持自定义VPC IPv6网段的最后8位。 |
Tags
| List | 否 | 是 | 标签。 | 最多支持20个标签。 更多信息,请参见Tags属性。 |
VpcIpv6CidrBlock
| String | 否 | 否 | 专有网络的IPv6网段。 | 无 |
ZoneType | String | 否 | 否 | 要查询的分区类型。 | 默认值:AvailabilityZone 。 |
Tags语法
"Tags": [
{
"Value": String,
"Key": String
}
]
Tags属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
Key
| String | 是 | 否 | 标签键。 | 长度为1~128个字符,不能以aliyun 和acs: 开头,不能包含http:// 或https:// 。 |
Value
| String | 否 | 否 | 标签值。 | 长度为0~128个字符,不能以aliyun 和acs: 开头,不能包含http:// 或https:// 。 |
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
VSwitchZoneId:
AssociationProperty: ALIYUN::ECS::Instance:ZoneId
Type: String
Description: 可用区ID
Label:
zh-cn: 交换机可用区
en: VSwitch Availability Zone
Resources:
EcsVSwitch:
Type: ALIYUN::ECS::VSwitch
Properties:
VpcId:
Ref: EcsVpc
ZoneId:
Ref: VSwitchZoneId
CidrBlock: 192.168.0.0/24
EcsVpc:
Type: ALIYUN::ECS::VPC
Properties:
CidrBlock: 192.168.0.0/16
VpcName:
Fn::Join:
- '-'
- - StackId
- Ref: ALIYUN::StackId
Outputs: {}
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"VSwitchZoneId": {
"AssociationProperty": "ALIYUN::ECS::Instance:ZoneId",
"Type": "String",
"Description": "可用区ID",
"Label": {
"zh-cn": "交换机可用区",
"en": "VSwitch Availability Zone"
}
}
},
"Resources": {
"EcsVSwitch": {
"Type": "ALIYUN::ECS::VSwitch",
"Properties": {
"VpcId": {
"Ref": "EcsVpc"
},
"ZoneId": {
"Ref": "VSwitchZoneId"
},
"CidrBlock": "192.168.0.0/24"
}
},
"EcsVpc": {
"Type": "ALIYUN::ECS::VPC",
"Properties": {
"CidrBlock": "192.168.0.0/16",
"VpcName": {
"Fn::Join": [
"-",
[
"StackId",
{
"Ref": "ALIYUN::StackId"
}
]
]
}
}
}
},
"Outputs": {
}
}
更多示例,请参见创建专有网络、创建专有网络中的交换机、在SNAT列表中添加SNAT条目、创建共享带宽实例、添加EIP到共享带宽中、创建IPv6网关和为IPv6地址购买公网带宽的组合示例:YAML示例。