Interface CfnResourceSet.TargetResourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResourceSet.TargetResourceProperty.Jsii$Proxy
Enclosing class:
CfnResourceSet

@Stability(Stable) public static interface CfnResourceSet.TargetResourceProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.route53recoveryreadiness.*;
 TargetResourceProperty targetResourceProperty = TargetResourceProperty.builder()
         .nlbResource(NLBResourceProperty.builder()
                 .arn("arn")
                 .build())
         .r53Resource(R53ResourceRecordProperty.builder()
                 .domainName("domainName")
                 .recordSetId("recordSetId")
                 .build())
         .build();
 

See Also: