Interface CfnResourceSet.DNSTargetResourceProperty

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

@Stability(Stable) public static interface CfnResourceSet.DNSTargetResourceProperty extends software.amazon.jsii.JsiiSerializable
A component for DNS/routing control readiness checks and architecture checks.

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.*;
 DNSTargetResourceProperty dNSTargetResourceProperty = DNSTargetResourceProperty.builder()
         .domainName("domainName")
         .hostedZoneArn("hostedZoneArn")
         .recordSetId("recordSetId")
         .recordType("recordType")
         .targetResource(TargetResourceProperty.builder()
                 .nlbResource(NLBResourceProperty.builder()
                         .arn("arn")
                         .build())
                 .r53Resource(R53ResourceRecordProperty.builder()
                         .domainName("domainName")
                         .recordSetId("recordSetId")
                         .build())
                 .build())
         .build();
 

See Also: