Show / Hide Table of Contents

Class MxRecordValue

Properties for a MX record value.

Inheritance
object
MxRecordValue
Implements
IMxRecordValue
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MxRecordValue : IMxRecordValue
Syntax (vb)
Public Class MxRecordValue Implements IMxRecordValue
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.Route53;

            var mxRecordValue = new MxRecordValue {
                HostName = "hostName",
                Priority = 123
            };

Synopsis

Constructors

MxRecordValue()

Properties for a MX record value.

Properties

HostName

The mail server host name.

Priority

The priority.

Constructors

MxRecordValue()

Properties for a MX record value.

public MxRecordValue()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.Route53;

            var mxRecordValue = new MxRecordValue {
                HostName = "hostName",
                Priority = 123
            };

Properties

HostName

The mail server host name.

public string HostName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Priority

The priority.

public double Priority { get; set; }
Property Value

double

Remarks

ExampleMetadata: fixture=_generated

Implements

IMxRecordValue
Back to top Generated by DocFX