Class CfnHostedZoneProps
Properties for defining a CfnHostedZone
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Route53
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnHostedZoneProps : Object, ICfnHostedZoneProps
Syntax (vb)
Public Class CfnHostedZoneProps
Inherits Object
Implements ICfnHostedZoneProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Route53;
var cfnHostedZoneProps = new CfnHostedZoneProps {
HostedZoneConfig = new HostedZoneConfigProperty {
Comment = "comment"
},
HostedZoneTags = new [] { new HostedZoneTagProperty {
Key = "key",
Value = "value"
} },
Name = "name",
QueryLoggingConfig = new QueryLoggingConfigProperty {
CloudWatchLogsLogGroupArn = "cloudWatchLogsLogGroupArn"
},
Vpcs = new [] { new VPCProperty {
VpcId = "vpcId",
VpcRegion = "vpcRegion"
} }
};
Synopsis
Constructors
CfnHostedZoneProps() |
Properties
HostedZoneConfig | A complex type that contains an optional comment. |
HostedZoneTags | Adds, edits, or deletes tags for a health check or a hosted zone. |
Name | The name of the domain. |
QueryLoggingConfig | Creates a configuration for DNS query logging. |
Vpcs | Private hosted zones: A complex type that contains information about the VPCs that are associated with the specified hosted zone. |
Constructors
CfnHostedZoneProps()
public CfnHostedZoneProps()
Properties
HostedZoneConfig
A complex type that contains an optional comment.
public object HostedZoneConfig { get; set; }
Property Value
System.Object
Remarks
If you don't want to specify a comment, omit the HostedZoneConfig
and Comment
elements.
HostedZoneTags
Adds, edits, or deletes tags for a health check or a hosted zone.
public CfnHostedZone.IHostedZoneTagProperty[] HostedZoneTags { get; set; }
Property Value
CfnHostedZone.IHostedZoneTagProperty[]
Remarks
For information about using tags for cost allocation, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide .
Name
The name of the domain.
public string Name { get; set; }
Property Value
System.String
Remarks
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.
QueryLoggingConfig
Creates a configuration for DNS query logging.
public object QueryLoggingConfig { get; set; }
Property Value
System.Object
Remarks
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:
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.
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:
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.
Vpcs
Private hosted zones: A complex type that contains information about the VPCs that are associated with the specified hosted zone.
public object Vpcs { get; set; }
Property Value
System.Object
Remarks
For public hosted zones, omit VPCs
, VPCId
, and VPCRegion
.