interface TargetResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53RecoveryReadiness.CfnResourceSetPropsMixin.TargetResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53recoveryreadiness#CfnResourceSetPropsMixin_TargetResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53recoveryreadiness.CfnResourceSetPropsMixin.TargetResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_route53recoveryreadiness.CfnResourceSetPropsMixin.TargetResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53recoveryreadiness » CfnResourceSetPropsMixin » TargetResourceProperty |
The target resource that the Route 53 record points to.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53recoveryreadiness as route53recoveryreadiness } from '@aws-cdk/cfn-property-mixins';
const targetResourceProperty: route53recoveryreadiness.CfnResourceSetPropsMixin.TargetResourceProperty = {
nlbResource: {
arn: 'arn',
},
r53Resource: {
domainName: 'domainName',
recordSetId: 'recordSetId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| nlb | IResolvable | NLBResource | The Network Load Balancer resource that a DNS target resource points to. |
| r53 | IResolvable | R53 | The Route 53 resource that a DNS target resource record points to. |
nlbResource?
Type:
IResolvable | NLBResource
(optional)
The Network Load Balancer resource that a DNS target resource points to.
r53Resource?
Type:
IResolvable | R53
(optional)
The Route 53 resource that a DNS target resource record points to.

.NET
Go
Java
Python
TypeScript