interface R53ResourceRecordProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Mixins.CfnResourceSetPropsMixin.R53ResourceRecordProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoveryreadiness/mixins#CfnResourceSetPropsMixin_R53ResourceRecordProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.mixins.CfnResourceSetPropsMixin.R53ResourceRecordProperty |
Python | aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnResourceSetPropsMixin.R53ResourceRecordProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoveryreadiness » mixins » CfnResourceSetPropsMixin » R53ResourceRecordProperty |
The Amazon Route 53 resource that a DNS target resource record points to.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53recoveryreadiness_mixins } from '@aws-cdk/mixins-preview/aws-route53recoveryreadiness';
const r53ResourceRecordProperty: route53recoveryreadiness_mixins.CfnResourceSetPropsMixin.R53ResourceRecordProperty = {
domainName: 'domainName',
recordSetId: 'recordSetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DNS target domain name. |
| record | string | The Amazon Route 53 Resource Record Set ID. |
domainName?
Type:
string
(optional)
The DNS target domain name.
recordSetId?
Type:
string
(optional)
The Amazon Route 53 Resource Record Set ID.

.NET
Go
Java
Python
TypeScript