@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-13T01:13:35.415Z")
public interface CfnHostedZoneProps
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.route53.*; CfnHostedZoneProps cfnHostedZoneProps = CfnHostedZoneProps.builder() .hostedZoneConfig(HostedZoneConfigProperty.builder() .comment("comment") .build()) .hostedZoneTags(List.of(HostedZoneTagProperty.builder() .key("key") .value("value") .build())) .name("name") .queryLoggingConfig(QueryLoggingConfigProperty.builder() .cloudWatchLogsLogGroupArn("cloudWatchLogsLogGroupArn") .build()) .vpcs(List.of(VPCProperty.builder() .vpcId("vpcId") .vpcRegion("vpcRegion") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnHostedZoneProps.Builder
A builder for
CfnHostedZoneProps |
static class |
CfnHostedZoneProps.Jsii$Proxy
An implementation for
CfnHostedZoneProps |
Modifier and Type | Method and Description |
---|---|
static CfnHostedZoneProps.Builder |
builder() |
default java.lang.Object |
getHostedZoneConfig()
A complex type that contains an optional comment.
|
default java.util.List<CfnHostedZone.HostedZoneTagProperty> |
getHostedZoneTags()
Adds, edits, or deletes tags for a health check or a hosted zone.
|
default java.lang.String |
getName()
The name of the domain.
|
default java.lang.Object |
getQueryLoggingConfig()
Creates a configuration for DNS query logging.
|
default java.lang.Object |
getVpcs()
*Private hosted zones:* A complex type that contains information about the VPCs that are associated with the specified hosted zone.
|
default java.lang.Object getHostedZoneConfig()
If you don't want to specify a comment, omit the HostedZoneConfig
and Comment
elements.
default java.util.List<CfnHostedZone.HostedZoneTagProperty> getHostedZoneTags()
For information about using tags for cost allocation, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide .
default java.lang.String getName()
Specify a fully qualified domain name, for example, www.example.com . The trailing dot is optional; Amazon Route 53 assumes that the domain name is fully qualified. This means that Route 53 treats www.example.com (without a trailing dot) and www.example.com. (with a trailing dot) as identical.
If you're creating a public hosted zone, this is the name you have registered with your DNS registrar. If your domain name is registered with a registrar other than Route 53, change the name servers for your domain to the set of NameServers
that are returned by the Fn::GetAtt
intrinsic function.
default java.lang.Object getQueryLoggingConfig()
After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group.
DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following:
NoError
or ServFail
If you create a query logging configuration using the Route 53 console, Route 53 performs these operations automatically.
/aws/route53/ *hosted zone name*
In the next step, you'll create a resource policy, which controls access to one or more log groups and the associated AWS resources, such as Route 53 hosted zones. There's a limit on the number of resource policies that you can create, so we recommend that you use a consistent prefix so you can use the same resource policy for all the log groups that you create for query logging.
Resource
, specify the ARN for the log group that you created in the previous step. To use the same resource policy for all the CloudWatch Logs log groups that you created for query logging configurations, replace the hosted zone name with *
, for example:
arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*
To avoid the confused deputy problem, a security issue where an entity without a permission for an action can coerce a more-privileged entity to perform it, you can optionally limit the permissions that a service has to a resource in a resource-based policy by supplying the following values:
aws:SourceArn
, supply the hosted zone ARN used in creating the query logging configuration. For example, aws:SourceArn: arn:aws:route53:::hostedzone/hosted zone ID
.aws:SourceAccount
, supply the account ID for the account that creates the query logging configuration. For example, aws:SourceAccount:111111111111
.For more information, see The confused deputy problem in the AWS IAM User Guide .
You can't use the CloudWatch console to create or edit a resource policy. You must use the CloudWatch API, one of the AWS SDKs, or the AWS CLI .
The name of each log stream is in the following format:
*hosted zone ID* / *edge location code*
The edge location code is a three-letter code and an arbitrarily assigned number, for example, DFW3. The three-letter code typically corresponds with the International Air Transport Association airport code for an airport near the edge location. (These abbreviations might change in the future.) For a list of edge locations, see "The Route 53 Global Network" on the Route 53 Product Details page.
default java.lang.Object getVpcs()
For public hosted zones, omit
VPCs
,VPCId
, andVPCRegion
.
static CfnHostedZoneProps.Builder builder()
CfnHostedZoneProps.Builder
of CfnHostedZoneProps