interface MxRecordValue
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53.MxRecordValue |
Java | software.amazon.awscdk.services.route53.MxRecordValue |
Python | aws_cdk.aws_route53.MxRecordValue |
TypeScript (source) | @aws-cdk/aws-route53 » MxRecordValue |
Properties for a MX record value.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as route53 from '@aws-cdk/aws-route53';
const mxRecordValue: route53.MxRecordValue = {
hostName: 'hostName',
priority: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| host | string | The mail server host name. |
| priority | number | The priority. |
hostName
Type:
string
The mail server host name.
priority
Type:
number
The priority.

.NET
Java
Python
TypeScript (