ALIYUN::PVTZ::Zone用於建立PrivateZone。
關於PrivateZone的更多資訊,請參見什麼是PrivateZone。
文法
{
"Type": "ALIYUN::PVTZ::Zone",
"Properties": {
"ProxyPattern": String,
"Remark": String,
"ZoneName": String,
"ZoneTag": String,
"ZoneType": String,
"ResourceGroupId": String,
"Tags": List,
"IgnoredStackTagKeys": List
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ProxyPattern | String | 否 | 是 | 代理模式。 | 取值:
|
Remark | String | 否 | 是 | 備忘資訊。 | 無 |
ResourceGroupId | String | 否 | 是 | PrivateZone所屬的資源群組ID。 | 無 |
ZoneName | String | 是 | 否 | 可用性區域名稱。 | 無 |
ZoneTag | String | 否 | 否 | 可用性區域標籤。 | 若ZoneType取值為AUTH_ZONE時,則忽略此屬性。 |
ZoneType | String | 否 | 否 | 可用性區域類型。 | 取值:
|
Tags | List | 否 | 是 | 自訂標籤。 | 更多資訊,請參見Tags屬性。 |
IgnoredStackTagKeys | List | 否 | 否 | 忽略資源棧引入的自訂標籤。 | 無 |
Tags文法
"Tags": [
{
"Key": String,
"Value": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Key | String | 是 | 否 | 標籤鍵。 | 長度為1~128個字元,不能以 |
Value | String | 否 | 否 | 標籤值。 | 長度為0~128個字元,不能以 |
傳回值
Fn::GetAtt
ZoneName:可用性區域名稱。
ZoneId:可用性區域ID。
ZoneType:可用性區域類型。
ZoneTag:可用性區域標籤。
樣本
YAML
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
Zone:
Type: ALIYUN::PVTZ::Zone
Properties:
ZoneName: example.com
ProxyPattern: ZONE
ZoneType: AUTH_ZONE
Outputs: {}
更多樣本,請參見建立PrivateZone、添加PrivateZone解析記錄和綁定或解除綁定Zone與專用網路列表的組合樣本:YAML樣本。
JSON
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"Zone": {
"Type": "ALIYUN::PVTZ::Zone",
"Properties": {
"ZoneName": "example.com",
"ProxyPattern": "ZONE",
"ZoneType": "AUTH_ZONE"
}
}
},
"Outputs": {
}
}