Skip to content

ZoneRecordProps

Properties for defining a ZoneRecord.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-pvtz-zonerecord

Initializer

using AlibabaCloud.SDK.ROS.CDK.Pvtz;
new ZoneRecordProps {
    object Rr,
    object Status,
    object Type,
    object Value,
    object ZoneId,
    object Priority = null,
    object Ttl = null
};

Properties

Name Type Description
Rr object Property rr: Host record, if you want to resolve @.exmaple.com, the host record should fill in "@" instead of empty.
Status object Property status: Allowed values: [ENABLE, DISABLE].
Type object Property type: Analyze record type, currently only supports A, AAAA, CNAME, TXT, MX, PTR, SRV.
Value object Property value: Record value.
ZoneId object Property zoneId: Zone Id.
Priority object Property priority: MX record priority, value range [1,99].
Ttl object Property ttl: Survival time, default is 60.

RrRequired

public object Rr { get; set; }
  • Type: object

Property rr: Host record, if you want to resolve @.exmaple.com, the host record should fill in "@" instead of empty.


StatusRequired

public object Status { get; set; }
  • Type: object

Property status: Allowed values: [ENABLE, DISABLE].


TypeRequired

public object Type { get; set; }
  • Type: object

Property type: Analyze record type, currently only supports A, AAAA, CNAME, TXT, MX, PTR, SRV.


ValueRequired

public object Value { get; set; }
  • Type: object

Property value: Record value.


ZoneIdRequired

public object ZoneId { get; set; }
  • Type: object

Property zoneId: Zone Id.


PriorityOptional

public object Priority { get; set; }
  • Type: object

Property priority: MX record priority, value range [1,99].

Default to 10.


TtlOptional

public object Ttl { get; set; }
  • Type: object

Property ttl: Survival time, default is 60.