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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResourceSet.TargetResourceProperty
static final class
An implementation forCfnResourceSet.TargetResourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNlbResource
The Network Load Balancer resource that a DNS target resource points to. -
getR53Resource
The Route 53 resource that a DNS target resource record points to. -
builder
-