@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.859Z") @Stability(value=Stable) public interface HostedZoneContextQuery 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.cloudassembly.schema.*;
HostedZoneContextQuery hostedZoneContextQuery = HostedZoneContextQuery.builder()
.account("account")
.domainName("domainName")
.region("region")
// the properties below are optional
.lookupRoleArn("lookupRoleArn")
.privateZone(false)
.vpcId("vpcId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HostedZoneContextQuery.Builder
A builder for
HostedZoneContextQuery |
static class |
HostedZoneContextQuery.Jsii$Proxy
An implementation for
HostedZoneContextQuery |
| Modifier and Type | Method and Description |
|---|---|
static HostedZoneContextQuery.Builder |
builder() |
String |
getAccount()
Query account.
|
String |
getDomainName()
The domain name e.g.
|
default String |
getLookupRoleArn()
The ARN of the role that should be used to look up the missing values.
|
default Boolean |
getPrivateZone()
True if the zone you want to find is a private hosted zone.
|
String |
getRegion()
Query region.
|
default String |
getVpcId()
The VPC ID to that the private zone must be associated with.
|
@Stability(value=Stable) @NotNull String getAccount()
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @NotNull String getRegion()
@Stability(value=Stable) @Nullable default String getLookupRoleArn()
Default: - None
@Stability(value=Stable) @Nullable default Boolean getPrivateZone()
Default: false
@Stability(value=Stable) @Nullable default String getVpcId()
If you provide VPC ID and privateZone is false, this will return no results and raise an error.
Default: - Required if privateZone=true
@Stability(value=Stable) static HostedZoneContextQuery.Builder builder()
HostedZoneContextQuery.Builder of HostedZoneContextQueryCopyright © 2022. All rights reserved.