package awsroute53 // 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 "github.com/aws/aws-cdk-go/awscdk" // // mxRecordValue := &MxRecordValue{ // HostName: jsii.String("hostName"), // Priority: jsii.Number(123), // } // type MxRecordValue struct { // The mail server host name. HostName *string `field:"required" json:"hostName" yaml:"hostName"` // The priority. Priority *float64 `field:"required" json:"priority" yaml:"priority"` }