ALIYUN::ECS::PrefixList
ALIYUN::ECS::PrefixList類型用于創(chuàng)建前綴列表。
語法
{
"Type": "ALIYUN::ECS::PrefixList",
"Properties": {
"MaxEntries": Integer,
"Description": String,
"PrefixListName": String,
"Entries": List,
"AddressFamily": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
MaxEntries | Integer | 是 | 否 | 前綴列表支持的最大條目容量。 | 取值范圍:1~200。 |
Description | String | 否 | 是 | 前綴列表的描述信息。 | 長度為2~256個(gè)字符,不能以 |
PrefixListName | String | 是 | 是 | 前綴列表的名稱。 | 長度為2~128個(gè)字符,必須以大小寫字母或中文開頭,不能以 |
Entries | List | 否 | 是 | 前綴列表的條目信息。 | 最多支持設(shè)置200個(gè)條目。 更多信息,請參見Entries屬性。 |
AddressFamily | String | 是 | 否 | 前綴列表的地址群。 | 取值:
|
Entries語法
"Entries": [
{
"Description": String,
"Cidr": String
}
]
Entries屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Description | String | 否 | 否 | 前綴列表?xiàng)l目的描述信息。 | 長度為2~32個(gè)字符,可以是英文或中文字符,不能以 |
Cidr | String | 是 | 否 | 前綴列表?xiàng)l目的CIDR地址塊信息。 | CIDR地址塊需滿足如下條件:
默認(rèn)值:空。 說明 前綴列表的條目數(shù)量不能大于最大條目容量(MaxEntries)。 |
返回值
Fn::GetAtt
PrefixListId:前綴列表的ID。
示例
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"MaxEntries": {
"Type": "Number",
"Description": "The maximum number of entries that the prefix list can contain. Valid values: 1 to 200.",
"MinValue": 1,
"MaxValue": 200,
"Default": 1
},
"PrefixListName": {
"Type": "String",
"Description": "The name of the prefix. The name must be 2 to 128 characters in length. It must start with a letter and cannot start with http://, https://, com.aliyun, or com.alibabacloud. It can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).",
"Default": "PrefixListNameSample"
},
"Entries": {
"Type": "Json",
"Default": [{
"Cidr": "192.168.1.0/24"
}],
"MaxLength": 200
},
"AddressFamily": {
"Type": "String",
"Description": "The IP address family. Valid values: IPv4 IPv6",
"AllowedValues": [
"Ipv4",
"Ipv6"
],
"Default": "Ipv4"
}
},
"Resources": {
"PrefixList": {
"Type": "ALIYUN::ECS::PrefixList",
"Properties": {
"MaxEntries": {
"Ref": "MaxEntries"
},
"PrefixListName": {
"Ref": "PrefixListName"
},
"Entries": {
"Ref": "Entries"
},
"AddressFamily": {
"Ref": "AddressFamily"
}
}
}
},
"Outputs": {
"PrefixListId": {
"Description": "The ID of the prefix list.",
"Value": {
"Fn::GetAtt": [
"PrefixList",
"PrefixListId"
]
}
}
}
}