Show / Hide Table of Contents

Class DnsRecordArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DnsRecordArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.DigitalOcean
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class DnsRecordArgs : ResourceArgs

Constructors

View Source

DnsRecordArgs()

Declaration
public DnsRecordArgs()

Properties

View Source

Domain

The domain to add the record to.

Declaration
public Input<string> Domain { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Flags

The flags of the record. Only valid when type is CAA. Must be between 0 and 255.

Declaration
public Input<int> Flags { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

The name of the record. Use @ for records on domain's name itself.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Port

The port of the record. Only valid when type is SRV. Must be between 1 and 65535.

Declaration
public Input<int> Port { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Priority

The priority of the record. Only valid when type is MX or SRV. Must be between 0 and 65535.

Declaration
public Input<int> Priority { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Tag

The tag of the record. Only valid when type is CAA. Must be one of issue, issuewild, or iodef.

Declaration
public Input<string> Tag { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Ttl

The time to live for the record, in seconds. Must be at least 0.

Declaration
public Input<int> Ttl { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Type

The type of record. Must be one of A, AAAA, CAA, CNAME, MX, NS, TXT, or SRV.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Value

The value of the record.

Declaration
public Input<string> Value { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Weight

The weight of the record. Only valid when type is SRV. Must be between 0 and 65535.

Declaration
public Input<int> Weight { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.