全部產品
Search
文件中心

:ALIYUN::PVTZ::ZoneRecord

更新時間:Feb 05, 2024

ALIYUN::PVTZ::ZoneRecord類型用於添加PrivateZone的解析記錄。

文法

{
  "Type": "ALIYUN::PVTZ::ZoneRecord",
  "Properties": {
    "Status": String,
    "Rr": String,
    "Value": String,
    "ZoneId": String,
    "Priority": Integer,
    "Ttl": Integer,
    "Type": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

Status

String

狀態。

取值:

  • ENABLE:啟用解析。

  • DISABLE:暫停解析。

Rr

String

主機記錄。

如果要解析@.example.com,主機記錄要填寫@,而不是空。

Value

String

記錄值。

ZoneId

String

PrivateZone ZoneID。

Priority

Integer

MX記錄的優先順序。

取值範圍:1~99。

預設值:10。

Ttl

Integer

存留時間。

預設值:60。

Type

String

解析記錄類型。

取值:

  • A

  • AAA

  • CNAME

  • TXT

  • MX

  • PTR

  • SRV

傳回值

Fn::GetAtt

  • RecordId:解析記錄ID。

  • Record:解析記錄內容。

  • ZoneId:PrivateZone ZoneID。

樣本

  • YAML格式

    ROSTemplateFormatVersion: '2015-09-01'
    Parameters:
      ZoneId:
        Type: String
        Description: PVTZ ZoneID
      Value:
        Type: String
        Description: Record value
    Resources:
      ZoneRecord:
        Type: ALIYUN::PVTZ::ZoneRecord
        Properties:
          Status: ENABLE
          Rr: '@'
          Value:
            Ref: Value
          ZoneId:
            Ref: ZoneId
          Priority: 1
          Type: A
    Outputs: {}
  • JSON格式

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
        "ZoneId": {
          "Type": "String",
          "Description": "PVTZ ZoneID"
        },
        "Value": {
          "Type": "String",
          "Description": "Record value"
        }
      },
      "Resources": {
        "ZoneRecord": {
          "Type": "ALIYUN::PVTZ::ZoneRecord",
          "Properties": {
            "Status": "ENABLE",
            "Rr": "@",
            "Value": {
              "Ref": "Value"
            },
            "ZoneId": {
              "Ref": "ZoneId"
            },
            "Priority": 1,
            "Type": "A"
          }
        }
      },
      "Outputs": {
      }
    }

更多樣本,請參見建立PrivateZone、添加PrivateZone解析記錄和綁定或解除綁定Zone與專用網路列表的組合樣本:JSON樣本YAML樣本