interface TargetResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Mixins.CfnResourceSetPropsMixin.TargetResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoveryreadiness/mixins#CfnResourceSetPropsMixin_TargetResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.mixins.CfnResourceSetPropsMixin.TargetResourceProperty |
Python | aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnResourceSetPropsMixin.TargetResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoveryreadiness » mixins » 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 { mixins as route53recoveryreadiness_mixins } from '@aws-cdk/mixins-preview/aws-route53recoveryreadiness';
const targetResourceProperty: route53recoveryreadiness_mixins.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