@Stability(value=Stable)
public static interface CfnResourceSet.DNSTargetResourceProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResourceSet.DNSTargetResourceProperty.Builder
A builder for
CfnResourceSet.DNSTargetResourceProperty |
static class |
CfnResourceSet.DNSTargetResourceProperty.Jsii$Proxy
An implementation for
CfnResourceSet.DNSTargetResourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnResourceSet.DNSTargetResourceProperty.Builder |
builder() |
default String |
getDomainName()
The domain name that acts as an ingress point to a portion of the customer application.
|
default String |
getHostedZoneArn()
The hosted zone Amazon Resource Name (ARN) that contains the DNS record with the provided name of the target resource.
|
default String |
getRecordSetId()
The Route 53 record set ID that uniquely identifies a DNS record, given a name and a type.
|
default String |
getRecordType()
The type of DNS record of the target resource.
|
default Object |
getTargetResource()
The target resource that the Route 53 record points to.
|
@Stability(value=Stable) @Nullable default String getDomainName()
@Stability(value=Stable) @Nullable default String getHostedZoneArn()
@Stability(value=Stable) @Nullable default String getRecordSetId()
@Stability(value=Stable) @Nullable default String getRecordType()
@Stability(value=Stable) @Nullable default Object getTargetResource()
@Stability(value=Stable) static CfnResourceSet.DNSTargetResourceProperty.Builder builder()
Copyright © 2022. All rights reserved.