日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ALIYUN::ECS::PrefixList

更新時(shí)間:

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è)字符,不能以http://https://開頭。默認(rèn)值:空。

PrefixListName

String

前綴列表的名稱。

長度為2~128個(gè)字符,必須以大小寫字母或中文開頭,不能以http://https://com.aliyuncom.alibabacloud開頭。可以包含中文、英文、數(shù)字、半角冒號(:)、下劃線(_)、半角句號(.)或者短劃線(-)。

Entries

List

前綴列表的條目信息。

最多支持設(shè)置200個(gè)條目。

更多信息,請參見Entries屬性

AddressFamily

String

前綴列表的地址群。

取值:

  • IPv4

  • IPv6

Entries語法

"Entries": [
  {
    "Description": String,
    "Cidr": String
  }
]

Entries屬性

屬性名稱

類型

必須

允許更新

描述

約束

Description

String

前綴列表?xiàng)l目的描述信息。

長度為2~32個(gè)字符,可以是英文或中文字符,不能以http://https://開頭。

Cidr

String

前綴列表?xiàng)l目的CIDR地址塊信息。

CIDR地址塊需滿足如下條件:

  • CIDR地址塊類型根據(jù)地址群決定,一個(gè)前綴列表不能同時(shí)包含IPv4和IPv6的CIDR地址塊。

  • 多個(gè)條目中的CIDR地址塊不能重復(fù)。例如,您不能設(shè)置兩個(gè)192.168.1.0/24。

  • 支持設(shè)置單IP地址,系統(tǒng)會(huì)自動(dòng)轉(zhuǎn)換為CIDR地址塊。例如,您設(shè)置192.168.1.100,系統(tǒng)會(huì)自動(dòng)轉(zhuǎn)換成192.168.1.100/32。

  • 如果使用IPv6 CIDR地址塊,系統(tǒng)會(huì)自動(dòng)轉(zhuǎn)換成零壓縮的形式且字母轉(zhuǎn)換為小寫。例如,您設(shè)置2001:0DB8:0000:0000:0000:0000:0000:0000/32,系統(tǒng)會(huì)自動(dòng)轉(zhuǎn)換成2001:db8::/32。關(guān)于CIDR地址塊的詳細(xì)信息,請參見專有網(wǎng)絡(luò)FAQ

默認(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"
        ]
      }
    }
  }
}