Class MxRecordValue
Properties for a MX record value.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
Priority
The priority.
public double Priority { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated