全部产品
Search
文档中心

资源编排:ALIYUN::PVTZ::ZoneRecord

更新时间:Sep 08, 2023

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示例