UNPKG

188 kBTypeScriptView Raw
1import * as cdk from '@aws-cdk/core';
2import * as cfn_parse from '@aws-cdk/core/lib/helpers-internal';
3/**
4 * Properties for defining a `CfnCidrCollection`
5 *
6 * @struct
7 * @stability external
8 *
9 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html
10 */
11export interface CfnCidrCollectionProps {
12 /**
13 * `AWS::Route53::CidrCollection.Name`
14 *
15 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html#cfn-route53-cidrcollection-name
16 */
17 readonly name: string;
18 /**
19 * `AWS::Route53::CidrCollection.Locations`
20 *
21 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html#cfn-route53-cidrcollection-locations
22 */
23 readonly locations?: Array<CfnCidrCollection.LocationProperty | cdk.IResolvable> | cdk.IResolvable;
24}
25/**
26 * A CloudFormation `AWS::Route53::CidrCollection`
27 *
28 *
29 *
30 * @cloudformationResource AWS::Route53::CidrCollection
31 * @stability external
32 *
33 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html
34 */
35export declare class CfnCidrCollection extends cdk.CfnResource implements cdk.IInspectable {
36 /**
37 * The CloudFormation resource type name for this resource class.
38 */
39 static readonly CFN_RESOURCE_TYPE_NAME = "AWS::Route53::CidrCollection";
40 /**
41 * A factory method that creates a new instance of this class from an object
42 * containing the CloudFormation properties of this resource.
43 * Used in the @aws-cdk/cloudformation-include module.
44 *
45 * @internal
46 */
47 static _fromCloudFormation(scope: cdk.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnCidrCollection;
48 /**
49 *
50 * @cloudformationAttribute Arn
51 */
52 readonly attrArn: string;
53 /**
54 *
55 * @cloudformationAttribute Id
56 */
57 readonly attrId: string;
58 /**
59 * `AWS::Route53::CidrCollection.Name`
60 *
61 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html#cfn-route53-cidrcollection-name
62 */
63 name: string;
64 /**
65 * `AWS::Route53::CidrCollection.Locations`
66 *
67 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html#cfn-route53-cidrcollection-locations
68 */
69 locations: Array<CfnCidrCollection.LocationProperty | cdk.IResolvable> | cdk.IResolvable | undefined;
70 /**
71 * Create a new `AWS::Route53::CidrCollection`.
72 *
73 * @param scope - scope in which this resource is defined
74 * @param id - scoped id of the resource
75 * @param props - resource properties
76 */
77 constructor(scope: cdk.Construct, id: string, props: CfnCidrCollectionProps);
78 /**
79 * Examines the CloudFormation resource and discloses attributes.
80 *
81 * @param inspector - tree inspector to collect and process attributes
82 *
83 */
84 inspect(inspector: cdk.TreeInspector): void;
85 protected get cfnProperties(): {
86 [key: string]: any;
87 };
88 protected renderProperties(props: {
89 [key: string]: any;
90 }): {
91 [key: string]: any;
92 };
93}
94export declare namespace CfnCidrCollection {
95 /**
96 *
97 *
98 * @struct
99 * @stability external
100 *
101 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrcollection-location.html
102 */
103 interface LocationProperty {
104 /**
105 * `CfnCidrCollection.LocationProperty.CidrList`
106 *
107 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrcollection-location.html#cfn-route53-cidrcollection-location-cidrlist
108 */
109 readonly cidrList: string[];
110 /**
111 * `CfnCidrCollection.LocationProperty.LocationName`
112 *
113 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrcollection-location.html#cfn-route53-cidrcollection-location-locationname
114 */
115 readonly locationName: string;
116 }
117}
118/**
119 * Properties for defining a `CfnDNSSEC`
120 *
121 * @struct
122 * @stability external
123 *
124 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html
125 */
126export interface CfnDNSSECProps {
127 /**
128 * A unique string (ID) that is used to identify a hosted zone. For example: `Z00001111A1ABCaaABC11` .
129 *
130 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html#cfn-route53-dnssec-hostedzoneid
131 */
132 readonly hostedZoneId: string;
133}
134/**
135 * A CloudFormation `AWS::Route53::DNSSEC`
136 *
137 * The `AWS::Route53::DNSSEC` resource is used to enable DNSSEC signing in a hosted zone.
138 *
139 * @cloudformationResource AWS::Route53::DNSSEC
140 * @stability external
141 *
142 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html
143 */
144export declare class CfnDNSSEC extends cdk.CfnResource implements cdk.IInspectable {
145 /**
146 * The CloudFormation resource type name for this resource class.
147 */
148 static readonly CFN_RESOURCE_TYPE_NAME = "AWS::Route53::DNSSEC";
149 /**
150 * A factory method that creates a new instance of this class from an object
151 * containing the CloudFormation properties of this resource.
152 * Used in the @aws-cdk/cloudformation-include module.
153 *
154 * @internal
155 */
156 static _fromCloudFormation(scope: cdk.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnDNSSEC;
157 /**
158 * A unique string (ID) that is used to identify a hosted zone. For example: `Z00001111A1ABCaaABC11` .
159 *
160 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html#cfn-route53-dnssec-hostedzoneid
161 */
162 hostedZoneId: string;
163 /**
164 * Create a new `AWS::Route53::DNSSEC`.
165 *
166 * @param scope - scope in which this resource is defined
167 * @param id - scoped id of the resource
168 * @param props - resource properties
169 */
170 constructor(scope: cdk.Construct, id: string, props: CfnDNSSECProps);
171 /**
172 * Examines the CloudFormation resource and discloses attributes.
173 *
174 * @param inspector - tree inspector to collect and process attributes
175 *
176 */
177 inspect(inspector: cdk.TreeInspector): void;
178 protected get cfnProperties(): {
179 [key: string]: any;
180 };
181 protected renderProperties(props: {
182 [key: string]: any;
183 }): {
184 [key: string]: any;
185 };
186}
187/**
188 * Properties for defining a `CfnHealthCheck`
189 *
190 * @struct
191 * @stability external
192 *
193 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html
194 */
195export interface CfnHealthCheckProps {
196 /**
197 * A complex type that contains detailed information about one health check.
198 *
199 * For the values to enter for `HealthCheckConfig` , see [HealthCheckConfig](https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html)
200 *
201 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthcheckconfig
202 */
203 readonly healthCheckConfig: CfnHealthCheck.HealthCheckConfigProperty | cdk.IResolvable;
204 /**
205 * The `HealthCheckTags` property describes key-value pairs that are associated with an `AWS::Route53::HealthCheck` resource.
206 *
207 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthchecktags
208 */
209 readonly healthCheckTags?: Array<CfnHealthCheck.HealthCheckTagProperty | cdk.IResolvable> | cdk.IResolvable;
210}
211/**
212 * A CloudFormation `AWS::Route53::HealthCheck`
213 *
214 * The `AWS::Route53::HealthCheck` resource is a Route 53 resource type that contains settings for a Route 53 health check.
215 *
216 * For information about associating health checks with records, see [HealthCheckId](https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId) in [ChangeResourceRecordSets](https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html) .
217 *
218 * > You can't create a health check with simple routing.
219 *
220 * *ELB Load Balancers*
221 *
222 * If you're registering EC2 instances with an Elastic Load Balancing (ELB) load balancer, do not create Amazon Route 53 health checks for the EC2 instances. When you register an EC2 instance with a load balancer, you configure settings for an ELB health check, which performs a similar function to a Route 53 health check.
223 *
224 * *Private Hosted Zones*
225 *
226 * You can associate health checks with failover records in a private hosted zone. Note the following:
227 *
228 * - Route 53 health checkers are outside the VPC. To check the health of an endpoint within a VPC by IP address, you must assign a public IP address to the instance in the VPC.
229 * - You can configure a health checker to check the health of an external resource that the instance relies on, such as a database server.
230 * - You can create a CloudWatch metric, associate an alarm with the metric, and then create a health check that is based on the state of the alarm. For example, you might create a CloudWatch metric that checks the status of the Amazon EC2 `StatusCheckFailed` metric, add an alarm to the metric, and then create a health check that is based on the state of the alarm. For information about creating CloudWatch metrics and alarms by using the CloudWatch console, see the [Amazon CloudWatch User Guide](https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html) .
231 *
232 * @cloudformationResource AWS::Route53::HealthCheck
233 * @stability external
234 *
235 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html
236 */
237export declare class CfnHealthCheck extends cdk.CfnResource implements cdk.IInspectable {
238 /**
239 * The CloudFormation resource type name for this resource class.
240 */
241 static readonly CFN_RESOURCE_TYPE_NAME = "AWS::Route53::HealthCheck";
242 /**
243 * A factory method that creates a new instance of this class from an object
244 * containing the CloudFormation properties of this resource.
245 * Used in the @aws-cdk/cloudformation-include module.
246 *
247 * @internal
248 */
249 static _fromCloudFormation(scope: cdk.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnHealthCheck;
250 /**
251 * The identifier that Amazon Route 53 assigned to the health check when you created it. When you add or update a resource record set, you use this value to specify which health check to use. The value can be up to 64 characters long.
252 * @cloudformationAttribute HealthCheckId
253 */
254 readonly attrHealthCheckId: string;
255 /**
256 * A complex type that contains detailed information about one health check.
257 *
258 * For the values to enter for `HealthCheckConfig` , see [HealthCheckConfig](https://docs.aws.amazon.com/Route53/latest/APIReference/API_HealthCheckConfig.html)
259 *
260 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthcheckconfig
261 */
262 healthCheckConfig: CfnHealthCheck.HealthCheckConfigProperty | cdk.IResolvable;
263 /**
264 * The `HealthCheckTags` property describes key-value pairs that are associated with an `AWS::Route53::HealthCheck` resource.
265 *
266 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthchecktags
267 */
268 healthCheckTags: Array<CfnHealthCheck.HealthCheckTagProperty | cdk.IResolvable> | cdk.IResolvable | undefined;
269 /**
270 * Create a new `AWS::Route53::HealthCheck`.
271 *
272 * @param scope - scope in which this resource is defined
273 * @param id - scoped id of the resource
274 * @param props - resource properties
275 */
276 constructor(scope: cdk.Construct, id: string, props: CfnHealthCheckProps);
277 /**
278 * Examines the CloudFormation resource and discloses attributes.
279 *
280 * @param inspector - tree inspector to collect and process attributes
281 *
282 */
283 inspect(inspector: cdk.TreeInspector): void;
284 protected get cfnProperties(): {
285 [key: string]: any;
286 };
287 protected renderProperties(props: {
288 [key: string]: any;
289 }): {
290 [key: string]: any;
291 };
292}
293export declare namespace CfnHealthCheck {
294 /**
295 *
296 *
297 * @struct
298 * @stability external
299 *
300 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html
301 */
302 interface AlarmIdentifierProperty {
303 /**
304 * `CfnHealthCheck.AlarmIdentifierProperty.Name`
305 *
306 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-name
307 */
308 readonly name: string;
309 /**
310 * `CfnHealthCheck.AlarmIdentifierProperty.Region`
311 *
312 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-alarmidentifier.html#cfn-route53-healthcheck-alarmidentifier-region
313 */
314 readonly region: string;
315 }
316}
317export declare namespace CfnHealthCheck {
318 /**
319 *
320 *
321 * @struct
322 * @stability external
323 *
324 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html
325 */
326 interface HealthCheckConfigProperty {
327 /**
328 * `CfnHealthCheck.HealthCheckConfigProperty.AlarmIdentifier`
329 *
330 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-alarmidentifier
331 */
332 readonly alarmIdentifier?: CfnHealthCheck.AlarmIdentifierProperty | cdk.IResolvable;
333 /**
334 * `CfnHealthCheck.HealthCheckConfigProperty.ChildHealthChecks`
335 *
336 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-childhealthchecks
337 */
338 readonly childHealthChecks?: string[];
339 /**
340 * `CfnHealthCheck.HealthCheckConfigProperty.EnableSNI`
341 *
342 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-enablesni
343 */
344 readonly enableSni?: boolean | cdk.IResolvable;
345 /**
346 * `CfnHealthCheck.HealthCheckConfigProperty.FailureThreshold`
347 *
348 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-failurethreshold
349 */
350 readonly failureThreshold?: number;
351 /**
352 * `CfnHealthCheck.HealthCheckConfigProperty.FullyQualifiedDomainName`
353 *
354 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-fullyqualifieddomainname
355 */
356 readonly fullyQualifiedDomainName?: string;
357 /**
358 * `CfnHealthCheck.HealthCheckConfigProperty.HealthThreshold`
359 *
360 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-healththreshold
361 */
362 readonly healthThreshold?: number;
363 /**
364 * `CfnHealthCheck.HealthCheckConfigProperty.IPAddress`
365 *
366 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-ipaddress
367 */
368 readonly ipAddress?: string;
369 /**
370 * `CfnHealthCheck.HealthCheckConfigProperty.InsufficientDataHealthStatus`
371 *
372 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-insufficientdatahealthstatus
373 */
374 readonly insufficientDataHealthStatus?: string;
375 /**
376 * `CfnHealthCheck.HealthCheckConfigProperty.Inverted`
377 *
378 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-inverted
379 */
380 readonly inverted?: boolean | cdk.IResolvable;
381 /**
382 * `CfnHealthCheck.HealthCheckConfigProperty.MeasureLatency`
383 *
384 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-measurelatency
385 */
386 readonly measureLatency?: boolean | cdk.IResolvable;
387 /**
388 * `CfnHealthCheck.HealthCheckConfigProperty.Port`
389 *
390 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-port
391 */
392 readonly port?: number;
393 /**
394 * `CfnHealthCheck.HealthCheckConfigProperty.Regions`
395 *
396 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-regions
397 */
398 readonly regions?: string[];
399 /**
400 * `CfnHealthCheck.HealthCheckConfigProperty.RequestInterval`
401 *
402 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-requestinterval
403 */
404 readonly requestInterval?: number;
405 /**
406 * `CfnHealthCheck.HealthCheckConfigProperty.ResourcePath`
407 *
408 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-resourcepath
409 */
410 readonly resourcePath?: string;
411 /**
412 * `CfnHealthCheck.HealthCheckConfigProperty.RoutingControlArn`
413 *
414 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-routingcontrolarn
415 */
416 readonly routingControlArn?: string;
417 /**
418 * `CfnHealthCheck.HealthCheckConfigProperty.SearchString`
419 *
420 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring
421 */
422 readonly searchString?: string;
423 /**
424 * `CfnHealthCheck.HealthCheckConfigProperty.Type`
425 *
426 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-type
427 */
428 readonly type: string;
429 }
430}
431export declare namespace CfnHealthCheck {
432 /**
433 * The `HealthCheckTag` property describes one key-value pair that is associated with an `AWS::Route53::HealthCheck` resource.
434 *
435 * @struct
436 * @stability external
437 *
438 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthchecktag.html
439 */
440 interface HealthCheckTagProperty {
441 /**
442 * The value of `Key` depends on the operation that you want to perform:
443 *
444 * - *Add a tag to a health check or hosted zone* : `Key` is the name that you want to give the new tag.
445 * - *Edit a tag* : `Key` is the name of the tag that you want to change the `Value` for.
446 * - *Delete a key* : `Key` is the name of the tag you want to remove.
447 * - *Give a name to a health check* : Edit the default `Name` tag. In the Amazon Route 53 console, the list of your health checks includes a *Name* column that lets you see the name that you've given to each health check.
448 *
449 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthchecktag.html#cfn-route53-healthcheck-healthchecktag-key
450 */
451 readonly key: string;
452 /**
453 * The value of `Value` depends on the operation that you want to perform:
454 *
455 * - *Add a tag to a health check or hosted zone* : `Value` is the value that you want to give the new tag.
456 * - *Edit a tag* : `Value` is the new value that you want to assign the tag.
457 *
458 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthchecktag.html#cfn-route53-healthcheck-healthchecktag-value
459 */
460 readonly value: string;
461 }
462}
463/**
464 * Properties for defining a `CfnHostedZone`
465 *
466 * @struct
467 * @stability external
468 *
469 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html
470 */
471export interface CfnHostedZoneProps {
472 /**
473 * A complex type that contains an optional comment.
474 *
475 * If you don't want to specify a comment, omit the `HostedZoneConfig` and `Comment` elements.
476 *
477 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-hostedzoneconfig
478 */
479 readonly hostedZoneConfig?: CfnHostedZone.HostedZoneConfigProperty | cdk.IResolvable;
480 /**
481 * Adds, edits, or deletes tags for a health check or a hosted zone.
482 *
483 * For information about using tags for cost allocation, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *AWS Billing and Cost Management User Guide* .
484 *
485 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-hostedzonetags
486 */
487 readonly hostedZoneTags?: CfnHostedZone.HostedZoneTagProperty[];
488 /**
489 * The name of the domain. 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.
490 *
491 * 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.
492 *
493 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name
494 */
495 readonly name?: string;
496 /**
497 * Creates a configuration for DNS query logging. After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group.
498 *
499 * DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following:
500 *
501 * - Route 53 edge location that responded to the DNS query
502 * - Domain or subdomain that was requested
503 * - DNS record type, such as A or AAAA
504 * - DNS response code, such as `NoError` or `ServFail`
505 *
506 * - **Log Group and Resource Policy** - Before you create a query logging configuration, perform the following operations.
507 *
508 * > If you create a query logging configuration using the Route 53 console, Route 53 performs these operations automatically.
509 *
510 * - Create a CloudWatch Logs log group, and make note of the ARN, which you specify when you create a query logging configuration. Note the following:
511 *
512 * - You must create the log group in the us-east-1 region.
513 * - You must use the same AWS account to create the log group and the hosted zone that you want to configure query logging for.
514 * - When you create log groups for query logging, we recommend that you use a consistent prefix, for example:
515 *
516 * `/aws/route53/ *hosted zone name*`
517 *
518 * 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.
519 * - Create a CloudWatch Logs resource policy, and give it the permissions that Route 53 needs to create log streams and to send query logs to log streams. For the value of `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:
520 *
521 * `arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*`
522 *
523 * 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:
524 *
525 * - For `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` .
526 * - For `aws:SourceAccount` , supply the account ID for the account that creates the query logging configuration. For example, `aws:SourceAccount:111111111111` .
527 *
528 * For more information, see [The confused deputy problem](https://docs.aws.amazon.com/IAM/latest/UserGuide/confused-deputy.html) in the *AWS IAM User Guide* .
529 *
530 * > 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 .
531 * - **Log Streams and Edge Locations** - When Route 53 finishes creating the configuration for DNS query logging, it does the following:
532 *
533 * - Creates a log stream for an edge location the first time that the edge location responds to DNS queries for the specified hosted zone. That log stream is used to log all queries that Route 53 responds to for that edge location.
534 * - Begins to send query logs to the applicable log stream.
535 *
536 * The name of each log stream is in the following format:
537 *
538 * `*hosted zone ID* / *edge location code*`
539 *
540 * 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](https://docs.aws.amazon.com/route53/details/) page.
541 * - **Queries That Are Logged** - Query logs contain only the queries that DNS resolvers forward to Route 53. If a DNS resolver has already cached the response to a query (such as the IP address for a load balancer for example.com), the resolver will continue to return the cached response. It doesn't forward another query to Route 53 until the TTL for the corresponding resource record set expires. Depending on how many DNS queries are submitted for a resource record set, and depending on the TTL for that resource record set, query logs might contain information about only one query out of every several thousand queries that are submitted to DNS. For more information about how DNS works, see [Routing Internet Traffic to Your Website or Web Application](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html) in the *Amazon Route 53 Developer Guide* .
542 * - **Log File Format** - For a list of the values in each query log and the format of each value, see [Logging DNS Queries](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html) in the *Amazon Route 53 Developer Guide* .
543 * - **Pricing** - For information about charges for query logs, see [Amazon CloudWatch Pricing](https://docs.aws.amazon.com/cloudwatch/pricing/) .
544 * - **How to Stop Logging** - If you want Route 53 to stop sending query logs to CloudWatch Logs, delete the query logging configuration. For more information, see [DeleteQueryLoggingConfig](https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html) .
545 *
546 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-queryloggingconfig
547 */
548 readonly queryLoggingConfig?: CfnHostedZone.QueryLoggingConfigProperty | cdk.IResolvable;
549 /**
550 * *Private hosted zones:* A complex type that contains information about the VPCs that are associated with the specified hosted zone.
551 *
552 * > For public hosted zones, omit `VPCs` , `VPCId` , and `VPCRegion` .
553 *
554 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-vpcs
555 */
556 readonly vpcs?: Array<CfnHostedZone.VPCProperty | cdk.IResolvable> | cdk.IResolvable;
557}
558/**
559 * A CloudFormation `AWS::Route53::HostedZone`
560 *
561 * Creates a new public or private hosted zone. You create records in a public hosted zone to define how you want to route traffic on the internet for a domain, such as example.com, and its subdomains (apex.example.com, acme.example.com). You create records in a private hosted zone to define how you want to route traffic for a domain and its subdomains within one or more Amazon Virtual Private Clouds (Amazon VPCs).
562 *
563 * > You can't convert a public hosted zone to a private hosted zone or vice versa. Instead, you must create a new hosted zone with the same name and create new resource record sets.
564 *
565 * For more information about charges for hosted zones, see [Amazon Route 53 Pricing](https://docs.aws.amazon.com/route53/pricing/) .
566 *
567 * Note the following:
568 *
569 * - You can't create a hosted zone for a top-level domain (TLD) such as .com.
570 * - For public hosted zones, Route 53 automatically creates a default SOA record and four NS records for the zone. For more information about SOA and NS records, see [NS and SOA Records that Route 53 Creates for a Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html) in the *Amazon Route 53 Developer Guide* .
571 *
572 * If you want to use the same name servers for multiple public hosted zones, you can optionally associate a reusable delegation set with the hosted zone. See the `DelegationSetId` element.
573 * - If your domain is registered with a registrar other than Route 53, you must update the name servers with your registrar to make Route 53 the DNS service for the domain. For more information, see [Migrating DNS Service for an Existing Domain to Amazon Route 53](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html) in the *Amazon Route 53 Developer Guide* .
574 *
575 * When you submit a `CreateHostedZone` request, the initial status of the hosted zone is `PENDING` . For public hosted zones, this means that the NS and SOA records are not yet available on all Route 53 DNS servers. When the NS and SOA records are available, the status of the zone changes to `INSYNC` .
576 *
577 * The `CreateHostedZone` request requires the caller to have an `ec2:DescribeVpcs` permission.
578 *
579 * > When creating private hosted zones, the Amazon VPC must belong to the same partition where the hosted zone is created. A partition is a group of AWS Regions . Each AWS account is scoped to one partition.
580 * >
581 * > The following are the supported partitions:
582 * >
583 * > - `aws` - AWS Regions
584 * > - `aws-cn` - China Regions
585 * > - `aws-us-gov` - AWS GovCloud (US) Region
586 * >
587 * > For more information, see [Access Management](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *AWS General Reference* .
588 *
589 * @cloudformationResource AWS::Route53::HostedZone
590 * @stability external
591 *
592 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html
593 */
594export declare class CfnHostedZone extends cdk.CfnResource implements cdk.IInspectable {
595 /**
596 * The CloudFormation resource type name for this resource class.
597 */
598 static readonly CFN_RESOURCE_TYPE_NAME = "AWS::Route53::HostedZone";
599 /**
600 * A factory method that creates a new instance of this class from an object
601 * containing the CloudFormation properties of this resource.
602 * Used in the @aws-cdk/cloudformation-include module.
603 *
604 * @internal
605 */
606 static _fromCloudFormation(scope: cdk.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnHostedZone;
607 /**
608 * The ID that Amazon Route 53 assigned to the hosted zone when you created it.
609 * @cloudformationAttribute Id
610 */
611 readonly attrId: string;
612 /**
613 * Returns the set of name servers for the specific hosted zone. For example: `ns1.example.com` .
614 *
615 * This attribute is not supported for private hosted zones.
616 * @cloudformationAttribute NameServers
617 */
618 readonly attrNameServers: string[];
619 /**
620 * A complex type that contains an optional comment.
621 *
622 * If you don't want to specify a comment, omit the `HostedZoneConfig` and `Comment` elements.
623 *
624 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-hostedzoneconfig
625 */
626 hostedZoneConfig: CfnHostedZone.HostedZoneConfigProperty | cdk.IResolvable | undefined;
627 /**
628 * Adds, edits, or deletes tags for a health check or a hosted zone.
629 *
630 * For information about using tags for cost allocation, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *AWS Billing and Cost Management User Guide* .
631 *
632 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-hostedzonetags
633 */
634 readonly tags: cdk.TagManager;
635 /**
636 * The name of the domain. 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.
637 *
638 * 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.
639 *
640 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-name
641 */
642 name: string | undefined;
643 /**
644 * Creates a configuration for DNS query logging. After you create a query logging configuration, Amazon Route 53 begins to publish log data to an Amazon CloudWatch Logs log group.
645 *
646 * DNS query logs contain information about the queries that Route 53 receives for a specified public hosted zone, such as the following:
647 *
648 * - Route 53 edge location that responded to the DNS query
649 * - Domain or subdomain that was requested
650 * - DNS record type, such as A or AAAA
651 * - DNS response code, such as `NoError` or `ServFail`
652 *
653 * - **Log Group and Resource Policy** - Before you create a query logging configuration, perform the following operations.
654 *
655 * > If you create a query logging configuration using the Route 53 console, Route 53 performs these operations automatically.
656 *
657 * - Create a CloudWatch Logs log group, and make note of the ARN, which you specify when you create a query logging configuration. Note the following:
658 *
659 * - You must create the log group in the us-east-1 region.
660 * - You must use the same AWS account to create the log group and the hosted zone that you want to configure query logging for.
661 * - When you create log groups for query logging, we recommend that you use a consistent prefix, for example:
662 *
663 * `/aws/route53/ *hosted zone name*`
664 *
665 * 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.
666 * - Create a CloudWatch Logs resource policy, and give it the permissions that Route 53 needs to create log streams and to send query logs to log streams. For the value of `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:
667 *
668 * `arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*`
669 *
670 * 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:
671 *
672 * - For `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` .
673 * - For `aws:SourceAccount` , supply the account ID for the account that creates the query logging configuration. For example, `aws:SourceAccount:111111111111` .
674 *
675 * For more information, see [The confused deputy problem](https://docs.aws.amazon.com/IAM/latest/UserGuide/confused-deputy.html) in the *AWS IAM User Guide* .
676 *
677 * > 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 .
678 * - **Log Streams and Edge Locations** - When Route 53 finishes creating the configuration for DNS query logging, it does the following:
679 *
680 * - Creates a log stream for an edge location the first time that the edge location responds to DNS queries for the specified hosted zone. That log stream is used to log all queries that Route 53 responds to for that edge location.
681 * - Begins to send query logs to the applicable log stream.
682 *
683 * The name of each log stream is in the following format:
684 *
685 * `*hosted zone ID* / *edge location code*`
686 *
687 * 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](https://docs.aws.amazon.com/route53/details/) page.
688 * - **Queries That Are Logged** - Query logs contain only the queries that DNS resolvers forward to Route 53. If a DNS resolver has already cached the response to a query (such as the IP address for a load balancer for example.com), the resolver will continue to return the cached response. It doesn't forward another query to Route 53 until the TTL for the corresponding resource record set expires. Depending on how many DNS queries are submitted for a resource record set, and depending on the TTL for that resource record set, query logs might contain information about only one query out of every several thousand queries that are submitted to DNS. For more information about how DNS works, see [Routing Internet Traffic to Your Website or Web Application](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html) in the *Amazon Route 53 Developer Guide* .
689 * - **Log File Format** - For a list of the values in each query log and the format of each value, see [Logging DNS Queries](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html) in the *Amazon Route 53 Developer Guide* .
690 * - **Pricing** - For information about charges for query logs, see [Amazon CloudWatch Pricing](https://docs.aws.amazon.com/cloudwatch/pricing/) .
691 * - **How to Stop Logging** - If you want Route 53 to stop sending query logs to CloudWatch Logs, delete the query logging configuration. For more information, see [DeleteQueryLoggingConfig](https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html) .
692 *
693 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-queryloggingconfig
694 */
695 queryLoggingConfig: CfnHostedZone.QueryLoggingConfigProperty | cdk.IResolvable | undefined;
696 /**
697 * *Private hosted zones:* A complex type that contains information about the VPCs that are associated with the specified hosted zone.
698 *
699 * > For public hosted zones, omit `VPCs` , `VPCId` , and `VPCRegion` .
700 *
701 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-hostedzone.html#cfn-route53-hostedzone-vpcs
702 */
703 vpcs: Array<CfnHostedZone.VPCProperty | cdk.IResolvable> | cdk.IResolvable | undefined;
704 /**
705 * Create a new `AWS::Route53::HostedZone`.
706 *
707 * @param scope - scope in which this resource is defined
708 * @param id - scoped id of the resource
709 * @param props - resource properties
710 */
711 constructor(scope: cdk.Construct, id: string, props?: CfnHostedZoneProps);
712 /**
713 * Examines the CloudFormation resource and discloses attributes.
714 *
715 * @param inspector - tree inspector to collect and process attributes
716 *
717 */
718 inspect(inspector: cdk.TreeInspector): void;
719 protected get cfnProperties(): {
720 [key: string]: any;
721 };
722 protected renderProperties(props: {
723 [key: string]: any;
724 }): {
725 [key: string]: any;
726 };
727}
728export declare namespace CfnHostedZone {
729 /**
730 * A complex type that contains an optional comment about your hosted zone. If you don't want to specify a comment, omit both the `HostedZoneConfig` and `Comment` elements.
731 *
732 * @struct
733 * @stability external
734 *
735 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html
736 */
737 interface HostedZoneConfigProperty {
738 /**
739 * Any comments that you want to include about the hosted zone.
740 *
741 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzoneconfig.html#cfn-route53-hostedzone-hostedzoneconfig-comment
742 */
743 readonly comment?: string;
744 }
745}
746export declare namespace CfnHostedZone {
747 /**
748 * A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
749 *
750 * @struct
751 * @stability external
752 *
753 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonetag.html
754 */
755 interface HostedZoneTagProperty {
756 /**
757 * The value of `Key` depends on the operation that you want to perform:
758 *
759 * - *Add a tag to a health check or hosted zone* : `Key` is the name that you want to give the new tag.
760 * - *Edit a tag* : `Key` is the name of the tag that you want to change the `Value` for.
761 * - *Delete a key* : `Key` is the name of the tag you want to remove.
762 * - *Give a name to a health check* : Edit the default `Name` tag. In the Amazon Route 53 console, the list of your health checks includes a *Name* column that lets you see the name that you've given to each health check.
763 *
764 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonetag.html#cfn-route53-hostedzone-hostedzonetag-key
765 */
766 readonly key: string;
767 /**
768 * The value of `Value` depends on the operation that you want to perform:
769 *
770 * - *Add a tag to a health check or hosted zone* : `Value` is the value that you want to give the new tag.
771 * - *Edit a tag* : `Value` is the new value that you want to assign the tag.
772 *
773 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonetag.html#cfn-route53-hostedzone-hostedzonetag-value
774 */
775 readonly value: string;
776 }
777}
778export declare namespace CfnHostedZone {
779 /**
780 * A complex type that contains information about a configuration for DNS query logging.
781 *
782 * @struct
783 * @stability external
784 *
785 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html
786 */
787 interface QueryLoggingConfigProperty {
788 /**
789 * The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
790 *
791 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-queryloggingconfig.html#cfn-route53-hostedzone-queryloggingconfig-cloudwatchlogsloggrouparn
792 */
793 readonly cloudWatchLogsLogGroupArn: string;
794 }
795}
796export declare namespace CfnHostedZone {
797 /**
798 * *Private hosted zones only:* A complex type that contains information about an Amazon VPC. Route 53 Resolver uses the records in the private hosted zone to route traffic in that VPC.
799 *
800 * > For public hosted zones, omit `VPCs` , `VPCId` , and `VPCRegion` .
801 *
802 * @struct
803 * @stability external
804 *
805 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-vpc.html
806 */
807 interface VPCProperty {
808 /**
809 * *Private hosted zones only:* The ID of an Amazon VPC.
810 *
811 * > For public hosted zones, omit `VPCs` , `VPCId` , and `VPCRegion` .
812 *
813 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-vpc.html#cfn-route53-hostedzone-vpc-vpcid
814 */
815 readonly vpcId: string;
816 /**
817 * *Private hosted zones only:* The region that an Amazon VPC was created in.
818 *
819 * > For public hosted zones, omit `VPCs` , `VPCId` , and `VPCRegion` .
820 *
821 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-vpc.html#cfn-route53-hostedzone-vpc-vpcregion
822 */
823 readonly vpcRegion: string;
824 }
825}
826/**
827 * Properties for defining a `CfnKeySigningKey`
828 *
829 * @struct
830 * @stability external
831 *
832 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html
833 */
834export interface CfnKeySigningKeyProps {
835 /**
836 * The unique string (ID) that is used to identify a hosted zone. For example: `Z00001111A1ABCaaABC11` .
837 *
838 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-hostedzoneid
839 */
840 readonly hostedZoneId: string;
841 /**
842 * The Amazon resource name (ARN) for a customer managed customer master key (CMK) in AWS Key Management Service ( AWS KMS ). The `KeyManagementServiceArn` must be unique for each key-signing key (KSK) in a single hosted zone. For example: `arn:aws:kms:us-east-1:111122223333:key/111a2222-a11b-1ab1-2ab2-1ab21a2b3a111` .
843 *
844 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-keymanagementservicearn
845 */
846 readonly keyManagementServiceArn: string;
847 /**
848 * A string used to identify a key-signing key (KSK). `Name` can include numbers, letters, and underscores (_). `Name` must be unique for each key-signing key in the same hosted zone.
849 *
850 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-name
851 */
852 readonly name: string;
853 /**
854 * A string that represents the current key-signing key (KSK) status.
855 *
856 * Status can have one of the following values:
857 *
858 * - **ACTIVE** - The KSK is being used for signing.
859 * - **INACTIVE** - The KSK is not being used for signing.
860 * - **DELETING** - The KSK is in the process of being deleted.
861 * - **ACTION_NEEDED** - There is a problem with the KSK that requires you to take action to resolve. For example, the customer managed key might have been deleted, or the permissions for the customer managed key might have been changed.
862 * - **INTERNAL_FAILURE** - There was an error during a request. Before you can continue to work with DNSSEC signing, including actions that involve this KSK, you must correct the problem. For example, you may need to activate or deactivate the KSK.
863 *
864 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-status
865 */
866 readonly status: string;
867}
868/**
869 * A CloudFormation `AWS::Route53::KeySigningKey`
870 *
871 * The `AWS::Route53::KeySigningKey` resource creates a new key-signing key (KSK) in a hosted zone. The hosted zone ID is passed as a parameter in the KSK properties. You can specify the properties of this KSK using the `Name` , `Status` , and `KeyManagementServiceArn` properties of the resource.
872 *
873 * @cloudformationResource AWS::Route53::KeySigningKey
874 * @stability external
875 *
876 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html
877 */
878export declare class CfnKeySigningKey extends cdk.CfnResource implements cdk.IInspectable {
879 /**
880 * The CloudFormation resource type name for this resource class.
881 */
882 static readonly CFN_RESOURCE_TYPE_NAME = "AWS::Route53::KeySigningKey";
883 /**
884 * A factory method that creates a new instance of this class from an object
885 * containing the CloudFormation properties of this resource.
886 * Used in the @aws-cdk/cloudformation-include module.
887 *
888 * @internal
889 */
890 static _fromCloudFormation(scope: cdk.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnKeySigningKey;
891 /**
892 * The unique string (ID) that is used to identify a hosted zone. For example: `Z00001111A1ABCaaABC11` .
893 *
894 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-hostedzoneid
895 */
896 hostedZoneId: string;
897 /**
898 * The Amazon resource name (ARN) for a customer managed customer master key (CMK) in AWS Key Management Service ( AWS KMS ). The `KeyManagementServiceArn` must be unique for each key-signing key (KSK) in a single hosted zone. For example: `arn:aws:kms:us-east-1:111122223333:key/111a2222-a11b-1ab1-2ab2-1ab21a2b3a111` .
899 *
900 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-keymanagementservicearn
901 */
902 keyManagementServiceArn: string;
903 /**
904 * A string used to identify a key-signing key (KSK). `Name` can include numbers, letters, and underscores (_). `Name` must be unique for each key-signing key in the same hosted zone.
905 *
906 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-name
907 */
908 name: string;
909 /**
910 * A string that represents the current key-signing key (KSK) status.
911 *
912 * Status can have one of the following values:
913 *
914 * - **ACTIVE** - The KSK is being used for signing.
915 * - **INACTIVE** - The KSK is not being used for signing.
916 * - **DELETING** - The KSK is in the process of being deleted.
917 * - **ACTION_NEEDED** - There is a problem with the KSK that requires you to take action to resolve. For example, the customer managed key might have been deleted, or the permissions for the customer managed key might have been changed.
918 * - **INTERNAL_FAILURE** - There was an error during a request. Before you can continue to work with DNSSEC signing, including actions that involve this KSK, you must correct the problem. For example, you may need to activate or deactivate the KSK.
919 *
920 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-status
921 */
922 status: string;
923 /**
924 * Create a new `AWS::Route53::KeySigningKey`.
925 *
926 * @param scope - scope in which this resource is defined
927 * @param id - scoped id of the resource
928 * @param props - resource properties
929 */
930 constructor(scope: cdk.Construct, id: string, props: CfnKeySigningKeyProps);
931 /**
932 * Examines the CloudFormation resource and discloses attributes.
933 *
934 * @param inspector - tree inspector to collect and process attributes
935 *
936 */
937 inspect(inspector: cdk.TreeInspector): void;
938 protected get cfnProperties(): {
939 [key: string]: any;
940 };
941 protected renderProperties(props: {
942 [key: string]: any;
943 }): {
944 [key: string]: any;
945 };
946}
947/**
948 * Properties for defining a `CfnRecordSet`
949 *
950 * @struct
951 * @stability external
952 *
953 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html
954 */
955export interface CfnRecordSetProps {
956 /**
957 * For `ChangeResourceRecordSets` requests, the name of the record that you want to create, update, or delete. For `ListResourceRecordSets` responses, the name of a record in the specified hosted zone.
958 *
959 * *ChangeResourceRecordSets Only*
960 *
961 * Enter a fully qualified domain name, for example, `www.example.com` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify 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.
962 *
963 * For information about how to specify characters other than `a-z` , `0-9` , and `-` (hyphen) and how to specify internationalized domain names, see [DNS Domain Name Format](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html) in the *Amazon Route 53 Developer Guide* .
964 *
965 * You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, `*.example.com` . Note the following:
966 *
967 * - The * must replace the entire label. For example, you can't specify `*prod.example.com` or `prod*.example.com` .
968 * - The * can't replace any of the middle labels, for example, marketing.*.example.com.
969 * - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard.
970 *
971 * > You can't use the * wildcard for resource records sets that have a type of NS.
972 *
973 * You can use the * wildcard as the leftmost label in a domain name, for example, `*.example.com` . You can't use an * for one of the middle labels, for example, `marketing.*.example.com` . In addition, the * must replace the entire label; for example, you can't specify `prod*.example.com` .
974 *
975 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name
976 */
977 readonly name: string;
978 /**
979 * The DNS record type. For information about different record types and how data is encoded for them, see [Supported DNS Resource Record Types](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html) in the *Amazon Route 53 Developer Guide* .
980 *
981 * Valid values for basic resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `DS` | `MX` | `NAPTR` | `NS` | `PTR` | `SOA` | `SPF` | `SRV` | `TXT`
982 *
983 * Values for weighted, latency, geolocation, and failover resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT` . When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group.
984 *
985 * Valid values for multivalue answer resource record sets: `A` | `AAAA` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT`
986 *
987 * > SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of `Type` is `SPF` . RFC 7208, *Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1* , has been updated to say, "...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it." In RFC 7208, see section 14.1, [The SPF DNS Record Type](https://docs.aws.amazon.com/http://tools.ietf.org/html/rfc7208#section-14.1) .
988 *
989 * Values for alias resource record sets:
990 *
991 * - *Amazon API Gateway custom regional APIs and edge-optimized APIs:* `A`
992 * - *CloudFront distributions:* `A`
993 *
994 * If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of `A` and one with a value of `AAAA` .
995 * - *Amazon API Gateway environment that has a regionalized subdomain* : `A`
996 * - *ELB load balancers:* `A` | `AAAA`
997 * - *Amazon S3 buckets:* `A`
998 * - *Amazon Virtual Private Cloud interface VPC endpoints* `A`
999 * - *Another resource record set in this hosted zone:* Specify the type of the resource record set that you're creating the alias for. All values are supported except `NS` and `SOA` .
1000 *
1001 * > If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of `Type` is `CNAME` . This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
1002 *
1003 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type
1004 */
1005 readonly type: string;
1006 /**
1007 * *Alias resource record sets only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.
1008 *
1009 * If you're creating resource records sets for a private hosted zone, note the following:
1010 *
1011 * - You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution.
1012 * - Creating geolocation alias resource record sets or latency alias resource record sets in a private hosted zone is unsupported.
1013 * - For information about creating failover resource record sets in a private hosted zone, see [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) in the *Amazon Route 53 Developer Guide* .
1014 *
1015 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-aliastarget
1016 */
1017 readonly aliasTarget?: CfnRecordSet.AliasTargetProperty | cdk.IResolvable;
1018 /**
1019 * `AWS::Route53::RecordSet.CidrRoutingConfig`
1020 *
1021 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-cidrroutingconfig
1022 */
1023 readonly cidrRoutingConfig?: CfnRecordSet.CidrRoutingConfigProperty | cdk.IResolvable;
1024 /**
1025 * *Optional:* Any comments you want to include about a change batch request.
1026 *
1027 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment
1028 */
1029 readonly comment?: string;
1030 /**
1031 * *Failover resource record sets only:* To configure failover, you add the `Failover` element to two resource record sets. For one resource record set, you specify `PRIMARY` as the value for `Failover` ; for the other resource record set, you specify `SECONDARY` . In addition, you include the `HealthCheckId` element and specify the health check that you want Amazon Route 53 to perform for each resource record set.
1032 *
1033 * Except where noted, the following failover behaviors assume that you have included the `HealthCheckId` element in both resource record sets:
1034 *
1035 * - When the primary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the secondary resource record set.
1036 * - When the primary resource record set is unhealthy and the secondary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the secondary resource record set.
1037 * - When the secondary resource record set is unhealthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the primary resource record set.
1038 * - If you omit the `HealthCheckId` element for the secondary resource record set, and if the primary resource record set is unhealthy, Route 53 always responds to DNS queries with the applicable value from the secondary resource record set. This is true regardless of the health of the associated endpoint.
1039 *
1040 * You can't create non-failover resource record sets that have the same values for the `Name` and `Type` elements as failover resource record sets.
1041 *
1042 * For failover alias resource record sets, you must also include the `EvaluateTargetHealth` element and set the value to true.
1043 *
1044 * For more information about configuring failover for Route 53, see the following topics in the *Amazon Route 53 Developer Guide* :
1045 *
1046 * - [Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)
1047 * - [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)
1048 *
1049 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover
1050 */
1051 readonly failover?: string;
1052 /**
1053 * *Geolocation resource record sets only:* A complex type that lets you control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query. For example, if you want all queries from Africa to be routed to a web server with an IP address of `192.0.2.111` , create a resource record set with a `Type` of `A` and a `ContinentCode` of `AF` .
1054 *
1055 * > Although creating geolocation and geolocation alias resource record sets in a private hosted zone is allowed, it's not supported.
1056 *
1057 * If you create separate resource record sets for overlapping geographic regions (for example, one resource record set for a continent and one for a country on the same continent), priority goes to the smallest geographic region. This allows you to route most queries for a continent to one resource and to route queries for a country on that continent to a different resource.
1058 *
1059 * You can't create two geolocation resource record sets that specify the same geographic location.
1060 *
1061 * The value `*` in the `CountryCode` element matches all geographic locations that aren't specified in other geolocation resource record sets that have the same values for the `Name` and `Type` elements.
1062 *
1063 * > Geolocation works by mapping IP addresses to locations. However, some IP addresses aren't mapped to geographic locations, so even if you create geolocation resource record sets that cover all seven continents, Route 53 will receive some DNS queries from locations that it can't identify. We recommend that you create a resource record set for which the value of `CountryCode` is `*` . Two groups of queries are routed to the resource that you specify in this record: queries that come from locations for which you haven't created geolocation resource record sets and queries from IP addresses that aren't mapped to a location. If you don't create a `*` resource record set, Route 53 returns a "no answer" response for queries from those locations.
1064 *
1065 * You can't create non-geolocation resource record sets that have the same values for the `Name` and `Type` elements as geolocation resource record sets.
1066 *
1067 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-geolocation
1068 */
1069 readonly geoLocation?: CfnRecordSet.GeoLocationProperty | cdk.IResolvable;
1070 /**
1071 * If you want Amazon Route 53 to return this resource record set in response to a DNS query only when the status of a health check is healthy, include the `HealthCheckId` element and specify the ID of the applicable health check.
1072 *
1073 * Route 53 determines whether a resource record set is healthy based on one of the following:
1074 *
1075 * - By periodically sending a request to the endpoint that is specified in the health check
1076 * - By aggregating the status of a specified group of health checks (calculated health checks)
1077 * - By determining the current state of a CloudWatch alarm (CloudWatch metric health checks)
1078 *
1079 * > Route 53 doesn't check the health of the endpoint that is specified in the resource record set, for example, the endpoint specified by the IP address in the `Value` element. When you add a `HealthCheckId` element to a resource record set, Route 53 checks the health of the endpoint that you specified in the health check.
1080 *
1081 * For more information, see the following topics in the *Amazon Route 53 Developer Guide* :
1082 *
1083 * - [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html)
1084 * - [Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)
1085 * - [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)
1086 *
1087 * *When to Specify HealthCheckId*
1088 *
1089 * Specifying a value for `HealthCheckId` is useful only when Route 53 is choosing between two or more resource record sets to respond to a DNS query, and you want Route 53 to base the choice in part on the status of a health check. Configuring health checks makes sense only in the following configurations:
1090 *
1091 * - *Non-alias resource record sets* : You're checking the health of a group of non-alias resource record sets that have the same routing policy, name, and type (such as multiple weighted records named www.example.com with a type of A) and you specify health check IDs for all the resource record sets.
1092 *
1093 * If the health check status for a resource record set is healthy, Route 53 includes the record among the records that it responds to DNS queries with.
1094 *
1095 * If the health check status for a resource record set is unhealthy, Route 53 stops responding to DNS queries using the value for that resource record set.
1096 *
1097 * If the health check status for all resource record sets in the group is unhealthy, Route 53 considers all resource record sets in the group healthy and responds to DNS queries accordingly.
1098 * - *Alias resource record sets* : You specify the following settings:
1099 *
1100 * - You set `EvaluateTargetHealth` to true for an alias resource record set in a group of resource record sets that have the same routing policy, name, and type (such as multiple weighted records named www.example.com with a type of A).
1101 * - You configure the alias resource record set to route traffic to a non-alias resource record set in the same hosted zone.
1102 * - You specify a health check ID for the non-alias resource record set.
1103 *
1104 * If the health check status is healthy, Route 53 considers the alias resource record set to be healthy and includes the alias record among the records that it responds to DNS queries with.
1105 *
1106 * If the health check status is unhealthy, Route 53 stops responding to DNS queries using the alias resource record set.
1107 *
1108 * > The alias resource record set can also route traffic to a *group* of non-alias resource record sets that have the same routing policy, name, and type. In that configuration, associate health checks with all of the resource record sets in the group of non-alias resource record sets.
1109 *
1110 * *Geolocation Routing*
1111 *
1112 * For geolocation resource record sets, if an endpoint is unhealthy, Route 53 looks for a resource record set for the larger, associated geographic region. For example, suppose you have resource record sets for a state in the United States, for the entire United States, for North America, and a resource record set that has `*` for `CountryCode` is `*` , which applies to all locations. If the endpoint for the state resource record set is unhealthy, Route 53 checks for healthy resource record sets in the following order until it finds a resource record set for which the endpoint is healthy:
1113 *
1114 * - The United States
1115 * - North America
1116 * - The default resource record set
1117 *
1118 * *Specifying the Health Check Endpoint by Domain Name*
1119 *
1120 * If your health checks specify the endpoint only by domain name, we recommend that you create a separate health check for each endpoint. For example, create a health check for each `HTTP` server that is serving content for `www.example.com` . For the value of `FullyQualifiedDomainName` , specify the domain name of the server (such as `us-east-2-www.example.com` ), not the name of the resource record sets ( `www.example.com` ).
1121 *
1122 * > Health check results will be unpredictable if you do the following:
1123 * >
1124 * > - Create a health check that has the same value for `FullyQualifiedDomainName` as the name of a resource record set.
1125 * > - Associate that health check with the resource record set.
1126 *
1127 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid
1128 */
1129 readonly healthCheckId?: string;
1130 /**
1131 * The ID of the hosted zone that you want to create records in.
1132 *
1133 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1134 *
1135 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid
1136 */
1137 readonly hostedZoneId?: string;
1138 /**
1139 * The name of the hosted zone that you want to create records in. You must include a trailing dot (for example, `www.example.com.` ) as part of the `HostedZoneName` .
1140 *
1141 * When you create a stack using an AWS::Route53::RecordSet that specifies `HostedZoneName` , AWS CloudFormation attempts to find a hosted zone whose name matches the HostedZoneName. If AWS CloudFormation cannot find a hosted zone with a matching domain name, or if there is more than one hosted zone with the specified domain name, AWS CloudFormation will not create the stack.
1142 *
1143 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1144 *
1145 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename
1146 */
1147 readonly hostedZoneName?: string;
1148 /**
1149 * *Multivalue answer resource record sets only* : To route traffic approximately randomly to multiple resources, such as web servers, create one multivalue answer record for each resource and specify `true` for `MultiValueAnswer` . Note the following:
1150 *
1151 * - If you associate a health check with a multivalue answer resource record set, Amazon Route 53 responds to DNS queries with the corresponding IP address only when the health check is healthy.
1152 * - If you don't associate a health check with a multivalue answer record, Route 53 always considers the record to be healthy.
1153 * - Route 53 responds to DNS queries with up to eight healthy records; if you have eight or fewer healthy records, Route 53 responds to all DNS queries with all the healthy records.
1154 * - If you have more than eight healthy records, Route 53 responds to different DNS resolvers with different combinations of healthy records.
1155 * - When all records are unhealthy, Route 53 responds to DNS queries with up to eight unhealthy records.
1156 * - If a resource becomes unavailable after a resolver caches a response, client software typically tries another of the IP addresses in the response.
1157 *
1158 * You can't create multivalue answer alias records.
1159 *
1160 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer
1161 */
1162 readonly multiValueAnswer?: boolean | cdk.IResolvable;
1163 /**
1164 * *Latency-based resource record sets only:* The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.
1165 *
1166 * > Although creating latency and latency alias resource record sets in a private hosted zone is allowed, it's not supported.
1167 *
1168 * When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set.
1169 *
1170 * Note the following:
1171 *
1172 * - You can only specify one `ResourceRecord` per latency resource record set.
1173 * - You can only create one latency resource record set for each Amazon EC2 Region.
1174 * - You aren't required to create latency resource record sets for all Amazon EC2 Regions. Route 53 will choose the region with the best latency from among the regions that you create latency resource record sets for.
1175 * - You can't create non-latency resource record sets that have the same values for the `Name` and `Type` elements as latency resource record sets.
1176 *
1177 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region
1178 */
1179 readonly region?: string;
1180 /**
1181 * One or more values that correspond with the value that you specified for the `Type` property. For example, if you specified `A` for `Type` , you specify one or more IP addresses in IPv4 format for `ResourceRecords` . For information about the format of values for each record type, see [Supported DNS Resource Record Types](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html) in the *Amazon Route 53 Developer Guide* .
1182 *
1183 * Note the following:
1184 *
1185 * - You can specify more than one value for all record types except CNAME and SOA.
1186 * - The maximum length of a value is 4000 characters.
1187 * - If you're creating an alias record, omit `ResourceRecords` .
1188 *
1189 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-resourcerecords
1190 */
1191 readonly resourceRecords?: string[];
1192 /**
1193 * *Resource record sets that have a routing policy other than simple:* An identifier that differentiates among multiple resource record sets that have the same combination of name and type, such as multiple weighted resource record sets named acme.example.com that have a type of A. In a group of resource record sets that have the same name and type, the value of `SetIdentifier` must be unique for each resource record set.
1194 *
1195 * For information about routing policies, see [Choosing a Routing Policy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html) in the *Amazon Route 53 Developer Guide* .
1196 *
1197 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier
1198 */
1199 readonly setIdentifier?: string;
1200 /**
1201 * The resource record cache time to live (TTL), in seconds. Note the following:
1202 *
1203 * - If you're creating or updating an alias resource record set, omit `TTL` . Amazon Route 53 uses the value of `TTL` for the alias target.
1204 * - If you're associating this resource record set with a health check (if you're adding a `HealthCheckId` element), we recommend that you specify a `TTL` of 60 seconds or less so clients respond quickly to changes in health status.
1205 * - All of the resource record sets in a group of weighted resource record sets must have the same value for `TTL` .
1206 * - If a group of weighted resource record sets includes one or more weighted alias resource record sets for which the alias target is an ELB load balancer, we recommend that you specify a `TTL` of 60 seconds for all of the non-alias weighted resource record sets that have the same name and type. Values other than 60 seconds (the TTL for load balancers) will change the effect of the values that you specify for `Weight` .
1207 *
1208 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl
1209 */
1210 readonly ttl?: string;
1211 /**
1212 * *Weighted resource record sets only:* Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set. Route 53 calculates the sum of the weights for the resource record sets that have the same combination of DNS name and type. Route 53 then responds to queries based on the ratio of a resource's weight to the total. Note the following:
1213 *
1214 * - You must specify a value for the `Weight` element for every weighted resource record set.
1215 * - You can only specify one `ResourceRecord` per weighted resource record set.
1216 * - You can't create latency, failover, or geolocation resource record sets that have the same values for the `Name` and `Type` elements as weighted resource record sets.
1217 * - You can create a maximum of 100 weighted resource record sets that have the same values for the `Name` and `Type` elements.
1218 * - For weighted (but not weighted alias) resource record sets, if you set `Weight` to `0` for a resource record set, Route 53 never responds to queries with the applicable value for that resource record set. However, if you set `Weight` to `0` for all resource record sets that have the same combination of DNS name and type, traffic is routed to all resources with equal probability.
1219 *
1220 * The effect of setting `Weight` to `0` is different when you associate health checks with weighted resource record sets. For more information, see [Options for Configuring Route 53 Active-Active and Active-Passive Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html) in the *Amazon Route 53 Developer Guide* .
1221 *
1222 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight
1223 */
1224 readonly weight?: number;
1225}
1226/**
1227 * A CloudFormation `AWS::Route53::RecordSet`
1228 *
1229 * Information about the record that you want to create.
1230 *
1231 * The `AWS::Route53::RecordSet` type can be used as a standalone resource or as an embedded property in the `AWS::Route53::RecordSetGroup` type. Note that some `AWS::Route53::RecordSet` properties are valid only when used within `AWS::Route53::RecordSetGroup` .
1232 *
1233 * For more information, see [ChangeResourceRecordSets](https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html) in the *Amazon Route 53 API Reference* .
1234 *
1235 * @cloudformationResource AWS::Route53::RecordSet
1236 * @stability external
1237 *
1238 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html
1239 */
1240export declare class CfnRecordSet extends cdk.CfnResource implements cdk.IInspectable {
1241 /**
1242 * The CloudFormation resource type name for this resource class.
1243 */
1244 static readonly CFN_RESOURCE_TYPE_NAME = "AWS::Route53::RecordSet";
1245 /**
1246 * A factory method that creates a new instance of this class from an object
1247 * containing the CloudFormation properties of this resource.
1248 * Used in the @aws-cdk/cloudformation-include module.
1249 *
1250 * @internal
1251 */
1252 static _fromCloudFormation(scope: cdk.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnRecordSet;
1253 /**
1254 * For `ChangeResourceRecordSets` requests, the name of the record that you want to create, update, or delete. For `ListResourceRecordSets` responses, the name of a record in the specified hosted zone.
1255 *
1256 * *ChangeResourceRecordSets Only*
1257 *
1258 * Enter a fully qualified domain name, for example, `www.example.com` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify 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.
1259 *
1260 * For information about how to specify characters other than `a-z` , `0-9` , and `-` (hyphen) and how to specify internationalized domain names, see [DNS Domain Name Format](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html) in the *Amazon Route 53 Developer Guide* .
1261 *
1262 * You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, `*.example.com` . Note the following:
1263 *
1264 * - The * must replace the entire label. For example, you can't specify `*prod.example.com` or `prod*.example.com` .
1265 * - The * can't replace any of the middle labels, for example, marketing.*.example.com.
1266 * - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard.
1267 *
1268 * > You can't use the * wildcard for resource records sets that have a type of NS.
1269 *
1270 * You can use the * wildcard as the leftmost label in a domain name, for example, `*.example.com` . You can't use an * for one of the middle labels, for example, `marketing.*.example.com` . In addition, the * must replace the entire label; for example, you can't specify `prod*.example.com` .
1271 *
1272 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name
1273 */
1274 name: string;
1275 /**
1276 * The DNS record type. For information about different record types and how data is encoded for them, see [Supported DNS Resource Record Types](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html) in the *Amazon Route 53 Developer Guide* .
1277 *
1278 * Valid values for basic resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `DS` | `MX` | `NAPTR` | `NS` | `PTR` | `SOA` | `SPF` | `SRV` | `TXT`
1279 *
1280 * Values for weighted, latency, geolocation, and failover resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT` . When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group.
1281 *
1282 * Valid values for multivalue answer resource record sets: `A` | `AAAA` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT`
1283 *
1284 * > SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of `Type` is `SPF` . RFC 7208, *Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1* , has been updated to say, "...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it." In RFC 7208, see section 14.1, [The SPF DNS Record Type](https://docs.aws.amazon.com/http://tools.ietf.org/html/rfc7208#section-14.1) .
1285 *
1286 * Values for alias resource record sets:
1287 *
1288 * - *Amazon API Gateway custom regional APIs and edge-optimized APIs:* `A`
1289 * - *CloudFront distributions:* `A`
1290 *
1291 * If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of `A` and one with a value of `AAAA` .
1292 * - *Amazon API Gateway environment that has a regionalized subdomain* : `A`
1293 * - *ELB load balancers:* `A` | `AAAA`
1294 * - *Amazon S3 buckets:* `A`
1295 * - *Amazon Virtual Private Cloud interface VPC endpoints* `A`
1296 * - *Another resource record set in this hosted zone:* Specify the type of the resource record set that you're creating the alias for. All values are supported except `NS` and `SOA` .
1297 *
1298 * > If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of `Type` is `CNAME` . This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
1299 *
1300 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type
1301 */
1302 type: string;
1303 /**
1304 * *Alias resource record sets only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.
1305 *
1306 * If you're creating resource records sets for a private hosted zone, note the following:
1307 *
1308 * - You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution.
1309 * - Creating geolocation alias resource record sets or latency alias resource record sets in a private hosted zone is unsupported.
1310 * - For information about creating failover resource record sets in a private hosted zone, see [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) in the *Amazon Route 53 Developer Guide* .
1311 *
1312 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-aliastarget
1313 */
1314 aliasTarget: CfnRecordSet.AliasTargetProperty | cdk.IResolvable | undefined;
1315 /**
1316 * `AWS::Route53::RecordSet.CidrRoutingConfig`
1317 *
1318 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-cidrroutingconfig
1319 */
1320 cidrRoutingConfig: CfnRecordSet.CidrRoutingConfigProperty | cdk.IResolvable | undefined;
1321 /**
1322 * *Optional:* Any comments you want to include about a change batch request.
1323 *
1324 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-comment
1325 */
1326 comment: string | undefined;
1327 /**
1328 * *Failover resource record sets only:* To configure failover, you add the `Failover` element to two resource record sets. For one resource record set, you specify `PRIMARY` as the value for `Failover` ; for the other resource record set, you specify `SECONDARY` . In addition, you include the `HealthCheckId` element and specify the health check that you want Amazon Route 53 to perform for each resource record set.
1329 *
1330 * Except where noted, the following failover behaviors assume that you have included the `HealthCheckId` element in both resource record sets:
1331 *
1332 * - When the primary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the secondary resource record set.
1333 * - When the primary resource record set is unhealthy and the secondary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the secondary resource record set.
1334 * - When the secondary resource record set is unhealthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the primary resource record set.
1335 * - If you omit the `HealthCheckId` element for the secondary resource record set, and if the primary resource record set is unhealthy, Route 53 always responds to DNS queries with the applicable value from the secondary resource record set. This is true regardless of the health of the associated endpoint.
1336 *
1337 * You can't create non-failover resource record sets that have the same values for the `Name` and `Type` elements as failover resource record sets.
1338 *
1339 * For failover alias resource record sets, you must also include the `EvaluateTargetHealth` element and set the value to true.
1340 *
1341 * For more information about configuring failover for Route 53, see the following topics in the *Amazon Route 53 Developer Guide* :
1342 *
1343 * - [Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)
1344 * - [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)
1345 *
1346 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover
1347 */
1348 failover: string | undefined;
1349 /**
1350 * *Geolocation resource record sets only:* A complex type that lets you control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query. For example, if you want all queries from Africa to be routed to a web server with an IP address of `192.0.2.111` , create a resource record set with a `Type` of `A` and a `ContinentCode` of `AF` .
1351 *
1352 * > Although creating geolocation and geolocation alias resource record sets in a private hosted zone is allowed, it's not supported.
1353 *
1354 * If you create separate resource record sets for overlapping geographic regions (for example, one resource record set for a continent and one for a country on the same continent), priority goes to the smallest geographic region. This allows you to route most queries for a continent to one resource and to route queries for a country on that continent to a different resource.
1355 *
1356 * You can't create two geolocation resource record sets that specify the same geographic location.
1357 *
1358 * The value `*` in the `CountryCode` element matches all geographic locations that aren't specified in other geolocation resource record sets that have the same values for the `Name` and `Type` elements.
1359 *
1360 * > Geolocation works by mapping IP addresses to locations. However, some IP addresses aren't mapped to geographic locations, so even if you create geolocation resource record sets that cover all seven continents, Route 53 will receive some DNS queries from locations that it can't identify. We recommend that you create a resource record set for which the value of `CountryCode` is `*` . Two groups of queries are routed to the resource that you specify in this record: queries that come from locations for which you haven't created geolocation resource record sets and queries from IP addresses that aren't mapped to a location. If you don't create a `*` resource record set, Route 53 returns a "no answer" response for queries from those locations.
1361 *
1362 * You can't create non-geolocation resource record sets that have the same values for the `Name` and `Type` elements as geolocation resource record sets.
1363 *
1364 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-geolocation
1365 */
1366 geoLocation: CfnRecordSet.GeoLocationProperty | cdk.IResolvable | undefined;
1367 /**
1368 * If you want Amazon Route 53 to return this resource record set in response to a DNS query only when the status of a health check is healthy, include the `HealthCheckId` element and specify the ID of the applicable health check.
1369 *
1370 * Route 53 determines whether a resource record set is healthy based on one of the following:
1371 *
1372 * - By periodically sending a request to the endpoint that is specified in the health check
1373 * - By aggregating the status of a specified group of health checks (calculated health checks)
1374 * - By determining the current state of a CloudWatch alarm (CloudWatch metric health checks)
1375 *
1376 * > Route 53 doesn't check the health of the endpoint that is specified in the resource record set, for example, the endpoint specified by the IP address in the `Value` element. When you add a `HealthCheckId` element to a resource record set, Route 53 checks the health of the endpoint that you specified in the health check.
1377 *
1378 * For more information, see the following topics in the *Amazon Route 53 Developer Guide* :
1379 *
1380 * - [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html)
1381 * - [Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)
1382 * - [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)
1383 *
1384 * *When to Specify HealthCheckId*
1385 *
1386 * Specifying a value for `HealthCheckId` is useful only when Route 53 is choosing between two or more resource record sets to respond to a DNS query, and you want Route 53 to base the choice in part on the status of a health check. Configuring health checks makes sense only in the following configurations:
1387 *
1388 * - *Non-alias resource record sets* : You're checking the health of a group of non-alias resource record sets that have the same routing policy, name, and type (such as multiple weighted records named www.example.com with a type of A) and you specify health check IDs for all the resource record sets.
1389 *
1390 * If the health check status for a resource record set is healthy, Route 53 includes the record among the records that it responds to DNS queries with.
1391 *
1392 * If the health check status for a resource record set is unhealthy, Route 53 stops responding to DNS queries using the value for that resource record set.
1393 *
1394 * If the health check status for all resource record sets in the group is unhealthy, Route 53 considers all resource record sets in the group healthy and responds to DNS queries accordingly.
1395 * - *Alias resource record sets* : You specify the following settings:
1396 *
1397 * - You set `EvaluateTargetHealth` to true for an alias resource record set in a group of resource record sets that have the same routing policy, name, and type (such as multiple weighted records named www.example.com with a type of A).
1398 * - You configure the alias resource record set to route traffic to a non-alias resource record set in the same hosted zone.
1399 * - You specify a health check ID for the non-alias resource record set.
1400 *
1401 * If the health check status is healthy, Route 53 considers the alias resource record set to be healthy and includes the alias record among the records that it responds to DNS queries with.
1402 *
1403 * If the health check status is unhealthy, Route 53 stops responding to DNS queries using the alias resource record set.
1404 *
1405 * > The alias resource record set can also route traffic to a *group* of non-alias resource record sets that have the same routing policy, name, and type. In that configuration, associate health checks with all of the resource record sets in the group of non-alias resource record sets.
1406 *
1407 * *Geolocation Routing*
1408 *
1409 * For geolocation resource record sets, if an endpoint is unhealthy, Route 53 looks for a resource record set for the larger, associated geographic region. For example, suppose you have resource record sets for a state in the United States, for the entire United States, for North America, and a resource record set that has `*` for `CountryCode` is `*` , which applies to all locations. If the endpoint for the state resource record set is unhealthy, Route 53 checks for healthy resource record sets in the following order until it finds a resource record set for which the endpoint is healthy:
1410 *
1411 * - The United States
1412 * - North America
1413 * - The default resource record set
1414 *
1415 * *Specifying the Health Check Endpoint by Domain Name*
1416 *
1417 * If your health checks specify the endpoint only by domain name, we recommend that you create a separate health check for each endpoint. For example, create a health check for each `HTTP` server that is serving content for `www.example.com` . For the value of `FullyQualifiedDomainName` , specify the domain name of the server (such as `us-east-2-www.example.com` ), not the name of the resource record sets ( `www.example.com` ).
1418 *
1419 * > Health check results will be unpredictable if you do the following:
1420 * >
1421 * > - Create a health check that has the same value for `FullyQualifiedDomainName` as the name of a resource record set.
1422 * > - Associate that health check with the resource record set.
1423 *
1424 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid
1425 */
1426 healthCheckId: string | undefined;
1427 /**
1428 * The ID of the hosted zone that you want to create records in.
1429 *
1430 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1431 *
1432 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid
1433 */
1434 hostedZoneId: string | undefined;
1435 /**
1436 * The name of the hosted zone that you want to create records in. You must include a trailing dot (for example, `www.example.com.` ) as part of the `HostedZoneName` .
1437 *
1438 * When you create a stack using an AWS::Route53::RecordSet that specifies `HostedZoneName` , AWS CloudFormation attempts to find a hosted zone whose name matches the HostedZoneName. If AWS CloudFormation cannot find a hosted zone with a matching domain name, or if there is more than one hosted zone with the specified domain name, AWS CloudFormation will not create the stack.
1439 *
1440 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1441 *
1442 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename
1443 */
1444 hostedZoneName: string | undefined;
1445 /**
1446 * *Multivalue answer resource record sets only* : To route traffic approximately randomly to multiple resources, such as web servers, create one multivalue answer record for each resource and specify `true` for `MultiValueAnswer` . Note the following:
1447 *
1448 * - If you associate a health check with a multivalue answer resource record set, Amazon Route 53 responds to DNS queries with the corresponding IP address only when the health check is healthy.
1449 * - If you don't associate a health check with a multivalue answer record, Route 53 always considers the record to be healthy.
1450 * - Route 53 responds to DNS queries with up to eight healthy records; if you have eight or fewer healthy records, Route 53 responds to all DNS queries with all the healthy records.
1451 * - If you have more than eight healthy records, Route 53 responds to different DNS resolvers with different combinations of healthy records.
1452 * - When all records are unhealthy, Route 53 responds to DNS queries with up to eight unhealthy records.
1453 * - If a resource becomes unavailable after a resolver caches a response, client software typically tries another of the IP addresses in the response.
1454 *
1455 * You can't create multivalue answer alias records.
1456 *
1457 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer
1458 */
1459 multiValueAnswer: boolean | cdk.IResolvable | undefined;
1460 /**
1461 * *Latency-based resource record sets only:* The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.
1462 *
1463 * > Although creating latency and latency alias resource record sets in a private hosted zone is allowed, it's not supported.
1464 *
1465 * When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set.
1466 *
1467 * Note the following:
1468 *
1469 * - You can only specify one `ResourceRecord` per latency resource record set.
1470 * - You can only create one latency resource record set for each Amazon EC2 Region.
1471 * - You aren't required to create latency resource record sets for all Amazon EC2 Regions. Route 53 will choose the region with the best latency from among the regions that you create latency resource record sets for.
1472 * - You can't create non-latency resource record sets that have the same values for the `Name` and `Type` elements as latency resource record sets.
1473 *
1474 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region
1475 */
1476 region: string | undefined;
1477 /**
1478 * One or more values that correspond with the value that you specified for the `Type` property. For example, if you specified `A` for `Type` , you specify one or more IP addresses in IPv4 format for `ResourceRecords` . For information about the format of values for each record type, see [Supported DNS Resource Record Types](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html) in the *Amazon Route 53 Developer Guide* .
1479 *
1480 * Note the following:
1481 *
1482 * - You can specify more than one value for all record types except CNAME and SOA.
1483 * - The maximum length of a value is 4000 characters.
1484 * - If you're creating an alias record, omit `ResourceRecords` .
1485 *
1486 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-resourcerecords
1487 */
1488 resourceRecords: string[] | undefined;
1489 /**
1490 * *Resource record sets that have a routing policy other than simple:* An identifier that differentiates among multiple resource record sets that have the same combination of name and type, such as multiple weighted resource record sets named acme.example.com that have a type of A. In a group of resource record sets that have the same name and type, the value of `SetIdentifier` must be unique for each resource record set.
1491 *
1492 * For information about routing policies, see [Choosing a Routing Policy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html) in the *Amazon Route 53 Developer Guide* .
1493 *
1494 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier
1495 */
1496 setIdentifier: string | undefined;
1497 /**
1498 * The resource record cache time to live (TTL), in seconds. Note the following:
1499 *
1500 * - If you're creating or updating an alias resource record set, omit `TTL` . Amazon Route 53 uses the value of `TTL` for the alias target.
1501 * - If you're associating this resource record set with a health check (if you're adding a `HealthCheckId` element), we recommend that you specify a `TTL` of 60 seconds or less so clients respond quickly to changes in health status.
1502 * - All of the resource record sets in a group of weighted resource record sets must have the same value for `TTL` .
1503 * - If a group of weighted resource record sets includes one or more weighted alias resource record sets for which the alias target is an ELB load balancer, we recommend that you specify a `TTL` of 60 seconds for all of the non-alias weighted resource record sets that have the same name and type. Values other than 60 seconds (the TTL for load balancers) will change the effect of the values that you specify for `Weight` .
1504 *
1505 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl
1506 */
1507 ttl: string | undefined;
1508 /**
1509 * *Weighted resource record sets only:* Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set. Route 53 calculates the sum of the weights for the resource record sets that have the same combination of DNS name and type. Route 53 then responds to queries based on the ratio of a resource's weight to the total. Note the following:
1510 *
1511 * - You must specify a value for the `Weight` element for every weighted resource record set.
1512 * - You can only specify one `ResourceRecord` per weighted resource record set.
1513 * - You can't create latency, failover, or geolocation resource record sets that have the same values for the `Name` and `Type` elements as weighted resource record sets.
1514 * - You can create a maximum of 100 weighted resource record sets that have the same values for the `Name` and `Type` elements.
1515 * - For weighted (but not weighted alias) resource record sets, if you set `Weight` to `0` for a resource record set, Route 53 never responds to queries with the applicable value for that resource record set. However, if you set `Weight` to `0` for all resource record sets that have the same combination of DNS name and type, traffic is routed to all resources with equal probability.
1516 *
1517 * The effect of setting `Weight` to `0` is different when you associate health checks with weighted resource record sets. For more information, see [Options for Configuring Route 53 Active-Active and Active-Passive Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html) in the *Amazon Route 53 Developer Guide* .
1518 *
1519 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight
1520 */
1521 weight: number | undefined;
1522 /**
1523 * Create a new `AWS::Route53::RecordSet`.
1524 *
1525 * @param scope - scope in which this resource is defined
1526 * @param id - scoped id of the resource
1527 * @param props - resource properties
1528 */
1529 constructor(scope: cdk.Construct, id: string, props: CfnRecordSetProps);
1530 /**
1531 * Examines the CloudFormation resource and discloses attributes.
1532 *
1533 * @param inspector - tree inspector to collect and process attributes
1534 *
1535 */
1536 inspect(inspector: cdk.TreeInspector): void;
1537 protected get cfnProperties(): {
1538 [key: string]: any;
1539 };
1540 protected renderProperties(props: {
1541 [key: string]: any;
1542 }): {
1543 [key: string]: any;
1544 };
1545}
1546export declare namespace CfnRecordSet {
1547 /**
1548 * *Alias records only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.
1549 *
1550 * When creating records for a private hosted zone, note the following:
1551 *
1552 * - Creating geolocation alias and latency alias records in a private hosted zone is allowed but not supported.
1553 * - For information about creating failover records in a private hosted zone, see [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) .
1554 *
1555 * @struct
1556 * @stability external
1557 *
1558 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html
1559 */
1560 interface AliasTargetProperty {
1561 /**
1562 * *Alias records only:* The value that you specify depends on where you want to route queries:
1563 *
1564 * - **Amazon API Gateway custom regional APIs and edge-optimized APIs** - Specify the applicable domain name for your API. You can get the applicable value using the AWS CLI command [get-domain-names](https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html) :
1565 *
1566 * - For regional APIs, specify the value of `regionalDomainName` .
1567 * - For edge-optimized APIs, specify the value of `distributionDomainName` . This is the name of the associated CloudFront distribution, such as `da1b2c3d4e5.cloudfront.net` .
1568 *
1569 * > The name of the record that you're creating must match a custom domain name for your API, such as `api.example.com` .
1570 * - **Amazon Virtual Private Cloud interface VPC endpoint** - Enter the API endpoint for the interface endpoint, such as `vpce-123456789abcdef01-example-us-east-1a.elasticloadbalancing.us-east-1.vpce.amazonaws.com` . For edge-optimized APIs, this is the domain name for the corresponding CloudFront distribution. You can get the value of `DnsName` using the AWS CLI command [describe-vpc-endpoints](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html) .
1571 * - **CloudFront distribution** - Specify the domain name that CloudFront assigned when you created your distribution.
1572 *
1573 * Your CloudFront distribution must include an alternate domain name that matches the name of the record. For example, if the name of the record is *acme.example.com* , your CloudFront distribution must include *acme.example.com* as one of the alternate domain names. For more information, see [Using Alternate Domain Names (CNAMEs)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html) in the *Amazon CloudFront Developer Guide* .
1574 *
1575 * You can't create a record in a private hosted zone to route traffic to a CloudFront distribution.
1576 *
1577 * > For failover alias records, you can't specify a CloudFront distribution for both the primary and secondary records. A distribution must include an alternate domain name that matches the name of the record. However, the primary and secondary records have the same name, and you can't include the same alternate domain name in more than one distribution.
1578 * - **Elastic Beanstalk environment** - If the domain name for your Elastic Beanstalk environment includes the region that you deployed the environment in, you can create an alias record that routes traffic to the environment. For example, the domain name `my-environment. *us-west-2* .elasticbeanstalk.com` is a regionalized domain name.
1579 *
1580 * > For environments that were created before early 2016, the domain name doesn't include the region. To route traffic to these environments, you must create a CNAME record instead of an alias record. Note that you can't create a CNAME record for the root domain name. For example, if your domain name is example.com, you can create a record that routes traffic for acme.example.com to your Elastic Beanstalk environment, but you can't create a record that routes traffic for example.com to your Elastic Beanstalk environment.
1581 *
1582 * For Elastic Beanstalk environments that have regionalized subdomains, specify the `CNAME` attribute for the environment. You can use the following methods to get the value of the CNAME attribute:
1583 *
1584 * - *AWS Management Console* : For information about how to get the value by using the console, see [Using Custom Domains with AWS Elastic Beanstalk](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customdomains.html) in the *AWS Elastic Beanstalk Developer Guide* .
1585 * - *Elastic Beanstalk API* : Use the `DescribeEnvironments` action to get the value of the `CNAME` attribute. For more information, see [DescribeEnvironments](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html) in the *AWS Elastic Beanstalk API Reference* .
1586 * - *AWS CLI* : Use the `describe-environments` command to get the value of the `CNAME` attribute. For more information, see [describe-environments](https://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/describe-environments.html) in the *AWS CLI* .
1587 * - **ELB load balancer** - Specify the DNS name that is associated with the load balancer. Get the DNS name by using the AWS Management Console , the ELB API, or the AWS CLI .
1588 *
1589 * - *AWS Management Console* : Go to the EC2 page, choose *Load Balancers* in the navigation pane, choose the load balancer, choose the *Description* tab, and get the value of the *DNS name* field.
1590 *
1591 * If you're routing traffic to a Classic Load Balancer, get the value that begins with *dualstack* . If you're routing traffic to another type of load balancer, get the value that applies to the record type, A or AAAA.
1592 * - *Elastic Load Balancing API* : Use `DescribeLoadBalancers` to get the value of `DNSName` . For more information, see the applicable guide:
1593 *
1594 * - Classic Load Balancers: [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html)
1595 * - Application and Network Load Balancers: [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html)
1596 * - *CloudFormation Fn::GetAtt intrinsic function* : Use the [Fn::GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-getatt.html) intrinsic function to get the value of `DNSName` :
1597 *
1598 * - [Classic Load Balancers](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#aws-properties-ec2-elb-return-values) .
1599 * - [Application and Network Load Balancers](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#aws-resource-elasticloadbalancingv2-loadbalancer-return-values) .
1600 * - *AWS CLI* : Use `describe-load-balancers` to get the value of `DNSName` . For more information, see the applicable guide:
1601 *
1602 * - Classic Load Balancers: [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html)
1603 * - Application and Network Load Balancers: [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html)
1604 * - **Global Accelerator accelerator** - Specify the DNS name for your accelerator:
1605 *
1606 * - *Global Accelerator API* : To get the DNS name, use [DescribeAccelerator](https://docs.aws.amazon.com/global-accelerator/latest/api/API_DescribeAccelerator.html) .
1607 * - *AWS CLI* : To get the DNS name, use [describe-accelerator](https://docs.aws.amazon.com/cli/latest/reference/globalaccelerator/describe-accelerator.html) .
1608 * - **Amazon S3 bucket that is configured as a static website** - Specify the domain name of the Amazon S3 website endpoint that you created the bucket in, for example, `s3-website.us-east-2.amazonaws.com` . For more information about valid values, see the table [Amazon S3 Website Endpoints](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_website_region_endpoints) in the *Amazon Web Services General Reference* . For more information about using S3 buckets for websites, see [Getting Started with Amazon Route 53](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/getting-started.html) in the *Amazon Route 53 Developer Guide.*
1609 * - **Another Route 53 record** - Specify the value of the `Name` element for a record in the current hosted zone.
1610 *
1611 * > If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't specify the domain name for a record for which the value of `Type` is `CNAME` . This is because the alias record must have the same type as the record that you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
1612 *
1613 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname
1614 */
1615 readonly dnsName: string;
1616 /**
1617 * *Applies only to alias, failover alias, geolocation alias, latency alias, and weighted alias resource record sets:* When `EvaluateTargetHealth` is `true` , an alias resource record set inherits the health of the referenced AWS resource, such as an ELB load balancer or another resource record set in the hosted zone.
1618 *
1619 * Note the following:
1620 *
1621 * - **CloudFront distributions** - You can't set `EvaluateTargetHealth` to `true` when the alias target is a CloudFront distribution.
1622 * - **Elastic Beanstalk environments that have regionalized subdomains** - If you specify an Elastic Beanstalk environment in `DNSName` and the environment contains an ELB load balancer, Elastic Load Balancing routes queries only to the healthy Amazon EC2 instances that are registered with the load balancer. (An environment automatically contains an ELB load balancer if it includes more than one Amazon EC2 instance.) If you set `EvaluateTargetHealth` to `true` and either no Amazon EC2 instances are healthy or the load balancer itself is unhealthy, Route 53 routes queries to other available resources that are healthy, if any.
1623 *
1624 * If the environment contains a single Amazon EC2 instance, there are no special requirements.
1625 * - **ELB load balancers** - Health checking behavior depends on the type of load balancer:
1626 *
1627 * - *Classic Load Balancers* : If you specify an ELB Classic Load Balancer in `DNSName` , Elastic Load Balancing routes queries only to the healthy Amazon EC2 instances that are registered with the load balancer. If you set `EvaluateTargetHealth` to `true` and either no EC2 instances are healthy or the load balancer itself is unhealthy, Route 53 routes queries to other resources.
1628 * - *Application and Network Load Balancers* : If you specify an ELB Application or Network Load Balancer and you set `EvaluateTargetHealth` to `true` , Route 53 routes queries to the load balancer based on the health of the target groups that are associated with the load balancer:
1629 *
1630 * - For an Application or Network Load Balancer to be considered healthy, every target group that contains targets must contain at least one healthy target. If any target group contains only unhealthy targets, the load balancer is considered unhealthy, and Route 53 routes queries to other resources.
1631 * - A target group that has no registered targets is considered unhealthy.
1632 *
1633 * > When you create a load balancer, you configure settings for Elastic Load Balancing health checks; they're not Route 53 health checks, but they perform a similar function. Do not create Route 53 health checks for the EC2 instances that you register with an ELB load balancer.
1634 * - **S3 buckets** - There are no special requirements for setting `EvaluateTargetHealth` to `true` when the alias target is an S3 bucket.
1635 * - **Other records in the same hosted zone** - If the AWS resource that you specify in `DNSName` is a record or a group of records (for example, a group of weighted records) but is not another alias record, we recommend that you associate a health check with all of the records in the alias target. For more information, see [What Happens When You Omit Health Checks?](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html#dns-failover-complex-configs-hc-omitting) in the *Amazon Route 53 Developer Guide* .
1636 *
1637 * For more information and examples, see [Amazon Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) in the *Amazon Route 53 Developer Guide* .
1638 *
1639 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth
1640 */
1641 readonly evaluateTargetHealth?: boolean | cdk.IResolvable;
1642 /**
1643 * *Alias resource records sets only* : The value used depends on where you want to route traffic:
1644 *
1645 * - **Amazon API Gateway custom regional APIs and edge-optimized APIs** - Specify the hosted zone ID for your API. You can get the applicable value using the AWS CLI command [get-domain-names](https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html) :
1646 *
1647 * - For regional APIs, specify the value of `regionalHostedZoneId` .
1648 * - For edge-optimized APIs, specify the value of `distributionHostedZoneId` .
1649 * - **Amazon Virtual Private Cloud interface VPC endpoint** - Specify the hosted zone ID for your interface endpoint. You can get the value of `HostedZoneId` using the AWS CLI command [describe-vpc-endpoints](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html) .
1650 * - **CloudFront distribution** - Specify `Z2FDTNDATAQYW2` . This is always the hosted zone ID when you create an alias record that routes traffic to a CloudFront distribution.
1651 *
1652 * > Alias records for CloudFront can't be created in a private zone.
1653 * - **Elastic Beanstalk environment** - Specify the hosted zone ID for the region that you created the environment in. The environment must have a regionalized subdomain. For a list of regions and the corresponding hosted zone IDs, see [AWS Elastic Beanstalk endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/elasticbeanstalk.html) in the *Amazon Web Services General Reference* .
1654 * - **ELB load balancer** - Specify the value of the hosted zone ID for the load balancer. Use the following methods to get the hosted zone ID:
1655 *
1656 * - [Service Endpoints](https://docs.aws.amazon.com/general/latest/gr/elb.html) table in the "Elastic Load Balancing Endpoints and Quotas" topic in the *Amazon Web Services General Reference* : Use the value that corresponds with the region that you created your load balancer in. Note that there are separate columns for Application and Classic Load Balancers and for Network Load Balancers.
1657 * - *AWS Management Console* : Go to the Amazon EC2 page, choose *Load Balancers* in the navigation pane, select the load balancer, and get the value of the *Hosted zone* field on the *Description* tab.
1658 * - *Elastic Load Balancing API* : Use `DescribeLoadBalancers` to get the applicable value. For more information, see the applicable guide:
1659 *
1660 * - Classic Load Balancers: Use [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html) to get the value of `CanonicalHostedZoneNameID` .
1661 * - Application and Network Load Balancers: Use [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html) to get the value of `CanonicalHostedZoneID` .
1662 * - *CloudFormation Fn::GetAtt intrinsic function* : Use the [Fn::GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-getatt.html) intrinsic function to get the applicable value:
1663 *
1664 * - Classic Load Balancers: Get [CanonicalHostedZoneNameID](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#aws-properties-ec2-elb-return-values) .
1665 * - Application and Network Load Balancers: Get [CanonicalHostedZoneID](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#aws-resource-elasticloadbalancingv2-loadbalancer-return-values) .
1666 * - *AWS CLI* : Use `describe-load-balancers` to get the applicable value. For more information, see the applicable guide:
1667 *
1668 * - Classic Load Balancers: Use [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html) to get the value of `CanonicalHostedZoneNameID` .
1669 * - Application and Network Load Balancers: Use [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html) to get the value of `CanonicalHostedZoneID` .
1670 * - **Global Accelerator accelerator** - Specify `Z2BJ6XQ5FK7U4H` .
1671 * - **An Amazon S3 bucket configured as a static website** - Specify the hosted zone ID for the region that you created the bucket in. For more information about valid values, see the table [Amazon S3 Website Endpoints](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_website_region_endpoints) in the *Amazon Web Services General Reference* .
1672 * - **Another Route 53 record in your hosted zone** - Specify the hosted zone ID of your hosted zone. (An alias record can't reference a record in a different hosted zone.)
1673 *
1674 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid
1675 */
1676 readonly hostedZoneId: string;
1677 }
1678}
1679export declare namespace CfnRecordSet {
1680 /**
1681 *
1682 *
1683 * @struct
1684 * @stability external
1685 *
1686 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrroutingconfig.html
1687 */
1688 interface CidrRoutingConfigProperty {
1689 /**
1690 * `CfnRecordSet.CidrRoutingConfigProperty.CollectionId`
1691 *
1692 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrroutingconfig.html#cfn-route53-cidrroutingconfig-collectionid
1693 */
1694 readonly collectionId: string;
1695 /**
1696 * `CfnRecordSet.CidrRoutingConfigProperty.LocationName`
1697 *
1698 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrroutingconfig.html#cfn-route53-cidrroutingconfig-locationname
1699 */
1700 readonly locationName: string;
1701 }
1702}
1703export declare namespace CfnRecordSet {
1704 /**
1705 * A complex type that contains information about a geographic location.
1706 *
1707 * @struct
1708 * @stability external
1709 *
1710 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html
1711 */
1712 interface GeoLocationProperty {
1713 /**
1714 * For geolocation resource record sets, a two-letter abbreviation that identifies a continent. Route 53 supports the following continent codes:
1715 *
1716 * - *AF* : Africa
1717 * - *AN* : Antarctica
1718 * - *AS* : Asia
1719 * - *EU* : Europe
1720 * - *OC* : Oceania
1721 * - *NA* : North America
1722 * - *SA* : South America
1723 *
1724 * Constraint: Specifying `ContinentCode` with either `CountryCode` or `SubdivisionCode` returns an `InvalidInput` error.
1725 *
1726 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-continentcode
1727 */
1728 readonly continentCode?: string;
1729 /**
1730 * For geolocation resource record sets, the two-letter code for a country.
1731 *
1732 * Route 53 uses the two-letter country codes that are specified in [ISO standard 3166-1 alpha-2](https://docs.aws.amazon.com/https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) .
1733 *
1734 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode
1735 */
1736 readonly countryCode?: string;
1737 /**
1738 * For geolocation resource record sets, the two-letter code for a state of the United States. Route 53 doesn't support any other values for `SubdivisionCode` . For a list of state abbreviations, see [Appendix B: Two–Letter State and Possession Abbreviations](https://docs.aws.amazon.com/https://pe.usps.com/text/pub28/28apb.htm) on the United States Postal Service website.
1739 *
1740 * If you specify `subdivisioncode` , you must also specify `US` for `CountryCode` .
1741 *
1742 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode
1743 */
1744 readonly subdivisionCode?: string;
1745 }
1746}
1747/**
1748 * Properties for defining a `CfnRecordSetGroup`
1749 *
1750 * @struct
1751 * @stability external
1752 *
1753 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html
1754 */
1755export interface CfnRecordSetGroupProps {
1756 /**
1757 * *Optional:* Any comments you want to include about a change batch request.
1758 *
1759 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment
1760 */
1761 readonly comment?: string;
1762 /**
1763 * The ID of the hosted zone that you want to create records in.
1764 *
1765 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1766 *
1767 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid
1768 */
1769 readonly hostedZoneId?: string;
1770 /**
1771 * The name of the hosted zone that you want to create records in. You must include a trailing dot (for example, `www.example.com.` ) as part of the `HostedZoneName` .
1772 *
1773 * When you create a stack using an `AWS::Route53::RecordSet` that specifies `HostedZoneName` , AWS CloudFormation attempts to find a hosted zone whose name matches the `HostedZoneName` . If AWS CloudFormation can't find a hosted zone with a matching domain name, or if there is more than one hosted zone with the specified domain name, AWS CloudFormation will not create the stack.
1774 *
1775 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1776 *
1777 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename
1778 */
1779 readonly hostedZoneName?: string;
1780 /**
1781 * A complex type that contains one `RecordSet` element for each record that you want to create.
1782 *
1783 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-recordsets
1784 */
1785 readonly recordSets?: Array<CfnRecordSetGroup.RecordSetProperty | cdk.IResolvable> | cdk.IResolvable;
1786}
1787/**
1788 * A CloudFormation `AWS::Route53::RecordSetGroup`
1789 *
1790 * A complex type that contains an optional comment, the name and ID of the hosted zone that you want to make changes in, and values for the records that you want to create.
1791 *
1792 * @cloudformationResource AWS::Route53::RecordSetGroup
1793 * @stability external
1794 *
1795 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html
1796 */
1797export declare class CfnRecordSetGroup extends cdk.CfnResource implements cdk.IInspectable {
1798 /**
1799 * The CloudFormation resource type name for this resource class.
1800 */
1801 static readonly CFN_RESOURCE_TYPE_NAME = "AWS::Route53::RecordSetGroup";
1802 /**
1803 * A factory method that creates a new instance of this class from an object
1804 * containing the CloudFormation properties of this resource.
1805 * Used in the @aws-cdk/cloudformation-include module.
1806 *
1807 * @internal
1808 */
1809 static _fromCloudFormation(scope: cdk.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnRecordSetGroup;
1810 /**
1811 * *Optional:* Any comments you want to include about a change batch request.
1812 *
1813 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-comment
1814 */
1815 comment: string | undefined;
1816 /**
1817 * The ID of the hosted zone that you want to create records in.
1818 *
1819 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1820 *
1821 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzoneid
1822 */
1823 hostedZoneId: string | undefined;
1824 /**
1825 * The name of the hosted zone that you want to create records in. You must include a trailing dot (for example, `www.example.com.` ) as part of the `HostedZoneName` .
1826 *
1827 * When you create a stack using an `AWS::Route53::RecordSet` that specifies `HostedZoneName` , AWS CloudFormation attempts to find a hosted zone whose name matches the `HostedZoneName` . If AWS CloudFormation can't find a hosted zone with a matching domain name, or if there is more than one hosted zone with the specified domain name, AWS CloudFormation will not create the stack.
1828 *
1829 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
1830 *
1831 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-hostedzonename
1832 */
1833 hostedZoneName: string | undefined;
1834 /**
1835 * A complex type that contains one `RecordSet` element for each record that you want to create.
1836 *
1837 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-recordsetgroup.html#cfn-route53-recordsetgroup-recordsets
1838 */
1839 recordSets: Array<CfnRecordSetGroup.RecordSetProperty | cdk.IResolvable> | cdk.IResolvable | undefined;
1840 /**
1841 * Create a new `AWS::Route53::RecordSetGroup`.
1842 *
1843 * @param scope - scope in which this resource is defined
1844 * @param id - scoped id of the resource
1845 * @param props - resource properties
1846 */
1847 constructor(scope: cdk.Construct, id: string, props?: CfnRecordSetGroupProps);
1848 /**
1849 * Examines the CloudFormation resource and discloses attributes.
1850 *
1851 * @param inspector - tree inspector to collect and process attributes
1852 *
1853 */
1854 inspect(inspector: cdk.TreeInspector): void;
1855 protected get cfnProperties(): {
1856 [key: string]: any;
1857 };
1858 protected renderProperties(props: {
1859 [key: string]: any;
1860 }): {
1861 [key: string]: any;
1862 };
1863}
1864export declare namespace CfnRecordSetGroup {
1865 /**
1866 * *Alias records only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.
1867 *
1868 * When creating records for a private hosted zone, note the following:
1869 *
1870 * - Creating geolocation alias and latency alias records in a private hosted zone is allowed but not supported.
1871 * - For information about creating failover records in a private hosted zone, see [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) .
1872 *
1873 * @struct
1874 * @stability external
1875 *
1876 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html
1877 */
1878 interface AliasTargetProperty {
1879 /**
1880 * *Alias records only:* The value that you specify depends on where you want to route queries:
1881 *
1882 * - **Amazon API Gateway custom regional APIs and edge-optimized APIs** - Specify the applicable domain name for your API. You can get the applicable value using the AWS CLI command [get-domain-names](https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html) :
1883 *
1884 * - For regional APIs, specify the value of `regionalDomainName` .
1885 * - For edge-optimized APIs, specify the value of `distributionDomainName` . This is the name of the associated CloudFront distribution, such as `da1b2c3d4e5.cloudfront.net` .
1886 *
1887 * > The name of the record that you're creating must match a custom domain name for your API, such as `api.example.com` .
1888 * - **Amazon Virtual Private Cloud interface VPC endpoint** - Enter the API endpoint for the interface endpoint, such as `vpce-123456789abcdef01-example-us-east-1a.elasticloadbalancing.us-east-1.vpce.amazonaws.com` . For edge-optimized APIs, this is the domain name for the corresponding CloudFront distribution. You can get the value of `DnsName` using the AWS CLI command [describe-vpc-endpoints](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html) .
1889 * - **CloudFront distribution** - Specify the domain name that CloudFront assigned when you created your distribution.
1890 *
1891 * Your CloudFront distribution must include an alternate domain name that matches the name of the record. For example, if the name of the record is *acme.example.com* , your CloudFront distribution must include *acme.example.com* as one of the alternate domain names. For more information, see [Using Alternate Domain Names (CNAMEs)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html) in the *Amazon CloudFront Developer Guide* .
1892 *
1893 * You can't create a record in a private hosted zone to route traffic to a CloudFront distribution.
1894 *
1895 * > For failover alias records, you can't specify a CloudFront distribution for both the primary and secondary records. A distribution must include an alternate domain name that matches the name of the record. However, the primary and secondary records have the same name, and you can't include the same alternate domain name in more than one distribution.
1896 * - **Elastic Beanstalk environment** - If the domain name for your Elastic Beanstalk environment includes the region that you deployed the environment in, you can create an alias record that routes traffic to the environment. For example, the domain name `my-environment. *us-west-2* .elasticbeanstalk.com` is a regionalized domain name.
1897 *
1898 * > For environments that were created before early 2016, the domain name doesn't include the region. To route traffic to these environments, you must create a CNAME record instead of an alias record. Note that you can't create a CNAME record for the root domain name. For example, if your domain name is example.com, you can create a record that routes traffic for acme.example.com to your Elastic Beanstalk environment, but you can't create a record that routes traffic for example.com to your Elastic Beanstalk environment.
1899 *
1900 * For Elastic Beanstalk environments that have regionalized subdomains, specify the `CNAME` attribute for the environment. You can use the following methods to get the value of the CNAME attribute:
1901 *
1902 * - *AWS Management Console* : For information about how to get the value by using the console, see [Using Custom Domains with AWS Elastic Beanstalk](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customdomains.html) in the *AWS Elastic Beanstalk Developer Guide* .
1903 * - *Elastic Beanstalk API* : Use the `DescribeEnvironments` action to get the value of the `CNAME` attribute. For more information, see [DescribeEnvironments](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html) in the *AWS Elastic Beanstalk API Reference* .
1904 * - *AWS CLI* : Use the `describe-environments` command to get the value of the `CNAME` attribute. For more information, see [describe-environments](https://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/describe-environments.html) in the *AWS CLI* .
1905 * - **ELB load balancer** - Specify the DNS name that is associated with the load balancer. Get the DNS name by using the AWS Management Console , the ELB API, or the AWS CLI .
1906 *
1907 * - *AWS Management Console* : Go to the EC2 page, choose *Load Balancers* in the navigation pane, choose the load balancer, choose the *Description* tab, and get the value of the *DNS name* field.
1908 *
1909 * If you're routing traffic to a Classic Load Balancer, get the value that begins with *dualstack* . If you're routing traffic to another type of load balancer, get the value that applies to the record type, A or AAAA.
1910 * - *Elastic Load Balancing API* : Use `DescribeLoadBalancers` to get the value of `DNSName` . For more information, see the applicable guide:
1911 *
1912 * - Classic Load Balancers: [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html)
1913 * - Application and Network Load Balancers: [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html)
1914 * - *CloudFormation Fn::GetAtt intrinsic function* : Use the [Fn::GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-getatt.html) intrinsic function to get the value of `DNSName` :
1915 *
1916 * - [Classic Load Balancers](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#aws-properties-ec2-elb-return-values) .
1917 * - [Application and Network Load Balancers](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#aws-resource-elasticloadbalancingv2-loadbalancer-return-values) .
1918 * - *AWS CLI* : Use `describe-load-balancers` to get the value of `DNSName` . For more information, see the applicable guide:
1919 *
1920 * - Classic Load Balancers: [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html)
1921 * - Application and Network Load Balancers: [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html)
1922 * - **Global Accelerator accelerator** - Specify the DNS name for your accelerator:
1923 *
1924 * - *Global Accelerator API* : To get the DNS name, use [DescribeAccelerator](https://docs.aws.amazon.com/global-accelerator/latest/api/API_DescribeAccelerator.html) .
1925 * - *AWS CLI* : To get the DNS name, use [describe-accelerator](https://docs.aws.amazon.com/cli/latest/reference/globalaccelerator/describe-accelerator.html) .
1926 * - **Amazon S3 bucket that is configured as a static website** - Specify the domain name of the Amazon S3 website endpoint that you created the bucket in, for example, `s3-website.us-east-2.amazonaws.com` . For more information about valid values, see the table [Amazon S3 Website Endpoints](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_website_region_endpoints) in the *Amazon Web Services General Reference* . For more information about using S3 buckets for websites, see [Getting Started with Amazon Route 53](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/getting-started.html) in the *Amazon Route 53 Developer Guide.*
1927 * - **Another Route 53 record** - Specify the value of the `Name` element for a record in the current hosted zone.
1928 *
1929 * > If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't specify the domain name for a record for which the value of `Type` is `CNAME` . This is because the alias record must have the same type as the record that you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
1930 *
1931 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-dnshostname
1932 */
1933 readonly dnsName: string;
1934 /**
1935 * *Applies only to alias records with any routing policy:* When `EvaluateTargetHealth` is `true` , an alias record inherits the health of the referenced AWS resource, such as an ELB load balancer or another record in the hosted zone.
1936 *
1937 * Note the following:
1938 *
1939 * - **CloudFront distributions** - You can't set `EvaluateTargetHealth` to `true` when the alias target is a CloudFront distribution.
1940 * - **Elastic Beanstalk environments that have regionalized subdomains** - If you specify an Elastic Beanstalk environment in `DNSName` and the environment contains an ELB load balancer, Elastic Load Balancing routes queries only to the healthy Amazon EC2 instances that are registered with the load balancer. (An environment automatically contains an ELB load balancer if it includes more than one Amazon EC2 instance.) If you set `EvaluateTargetHealth` to `true` and either no Amazon EC2 instances are healthy or the load balancer itself is unhealthy, Route 53 routes queries to other available resources that are healthy, if any.
1941 *
1942 * If the environment contains a single Amazon EC2 instance, there are no special requirements.
1943 * - **ELB load balancers** - Health checking behavior depends on the type of load balancer:
1944 *
1945 * - *Classic Load Balancers* : If you specify an ELB Classic Load Balancer in `DNSName` , Elastic Load Balancing routes queries only to the healthy Amazon EC2 instances that are registered with the load balancer. If you set `EvaluateTargetHealth` to `true` and either no EC2 instances are healthy or the load balancer itself is unhealthy, Route 53 routes queries to other resources.
1946 * - *Application and Network Load Balancers* : If you specify an ELB Application or Network Load Balancer and you set `EvaluateTargetHealth` to `true` , Route 53 routes queries to the load balancer based on the health of the target groups that are associated with the load balancer:
1947 *
1948 * - For an Application or Network Load Balancer to be considered healthy, every target group that contains targets must contain at least one healthy target. If any target group contains only unhealthy targets, the load balancer is considered unhealthy, and Route 53 routes queries to other resources.
1949 * - A target group that has no registered targets is considered unhealthy.
1950 *
1951 * > When you create a load balancer, you configure settings for Elastic Load Balancing health checks; they're not Route 53 health checks, but they perform a similar function. Do not create Route 53 health checks for the EC2 instances that you register with an ELB load balancer.
1952 * - **S3 buckets** - There are no special requirements for setting `EvaluateTargetHealth` to `true` when the alias target is an S3 bucket.
1953 * - **Other records in the same hosted zone** - If the AWS resource that you specify in `DNSName` is a record or a group of records (for example, a group of weighted records) but is not another alias record, we recommend that you associate a health check with all of the records in the alias target. For more information, see [What Happens When You Omit Health Checks?](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html#dns-failover-complex-configs-hc-omitting) in the *Amazon Route 53 Developer Guide* .
1954 *
1955 * For more information and examples, see [Amazon Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) in the *Amazon Route 53 Developer Guide* .
1956 *
1957 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-evaluatetargethealth
1958 */
1959 readonly evaluateTargetHealth?: boolean | cdk.IResolvable;
1960 /**
1961 * *Alias resource records sets only* : The value used depends on where you want to route traffic:
1962 *
1963 * - **Amazon API Gateway custom regional APIs and edge-optimized APIs** - Specify the hosted zone ID for your API. You can get the applicable value using the AWS CLI command [get-domain-names](https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-domain-names.html) :
1964 *
1965 * - For regional APIs, specify the value of `regionalHostedZoneId` .
1966 * - For edge-optimized APIs, specify the value of `distributionHostedZoneId` .
1967 * - **Amazon Virtual Private Cloud interface VPC endpoint** - Specify the hosted zone ID for your interface endpoint. You can get the value of `HostedZoneId` using the AWS CLI command [describe-vpc-endpoints](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpc-endpoints.html) .
1968 * - **CloudFront distribution** - Specify `Z2FDTNDATAQYW2` . This is always the hosted zone ID when you create an alias record that routes traffic to a CloudFront distribution.
1969 *
1970 * > Alias records for CloudFront can't be created in a private zone.
1971 * - **Elastic Beanstalk environment** - Specify the hosted zone ID for the region that you created the environment in. The environment must have a regionalized subdomain. For a list of regions and the corresponding hosted zone IDs, see [AWS Elastic Beanstalk endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/elasticbeanstalk.html) in the *Amazon Web Services General Reference* .
1972 * - **ELB load balancer** - Specify the value of the hosted zone ID for the load balancer. Use the following methods to get the hosted zone ID:
1973 *
1974 * - [Service Endpoints](https://docs.aws.amazon.com/general/latest/gr/elb.html) table in the "Elastic Load Balancing endpoints and quotas" topic in the *Amazon Web Services General Reference* : Use the value that corresponds with the region that you created your load balancer in. Note that there are separate columns for Application and Classic Load Balancers and for Network Load Balancers.
1975 * - *AWS Management Console* : Go to the Amazon EC2 page, choose *Load Balancers* in the navigation pane, select the load balancer, and get the value of the *Hosted zone* field on the *Description* tab.
1976 * - *Elastic Load Balancing API* : Use `DescribeLoadBalancers` to get the applicable value. For more information, see the applicable guide:
1977 *
1978 * - Classic Load Balancers: Use [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html) to get the value of `CanonicalHostedZoneNameID` .
1979 * - Application and Network Load Balancers: Use [DescribeLoadBalancers](https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html) to get the value of `CanonicalHostedZoneID` .
1980 * - *CloudFormation Fn::GetAtt intrinsic function* : Use the [Fn::GetAtt](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-getatt.html) intrinsic function to get the applicable value:
1981 *
1982 * - Classic Load Balancers: Get [CanonicalHostedZoneNameID](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#aws-properties-ec2-elb-return-values) .
1983 * - Application and Network Load Balancers: Get [CanonicalHostedZoneID](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#aws-resource-elasticloadbalancingv2-loadbalancer-return-values) .
1984 * - *AWS CLI* : Use `describe-load-balancers` to get the applicable value. For more information, see the applicable guide:
1985 *
1986 * - Classic Load Balancers: Use [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html) to get the value of `CanonicalHostedZoneNameID` .
1987 * - Application and Network Load Balancers: Use [describe-load-balancers](https://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html) to get the value of `CanonicalHostedZoneID` .
1988 * - **Global Accelerator accelerator** - Specify `Z2BJ6XQ5FK7U4H` .
1989 * - **An Amazon S3 bucket configured as a static website** - Specify the hosted zone ID for the region that you created the bucket in. For more information about valid values, see the table [Amazon S3 Website Endpoints](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_website_region_endpoints) in the *Amazon Web Services General Reference* .
1990 * - **Another Route 53 record in your hosted zone** - Specify the hosted zone ID of your hosted zone. (An alias record can't reference a record in a different hosted zone.)
1991 *
1992 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-aliastarget.html#cfn-route53-aliastarget-hostedzoneid
1993 */
1994 readonly hostedZoneId: string;
1995 }
1996}
1997export declare namespace CfnRecordSetGroup {
1998 /**
1999 *
2000 *
2001 * @struct
2002 * @stability external
2003 *
2004 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrroutingconfig.html
2005 */
2006 interface CidrRoutingConfigProperty {
2007 /**
2008 * `CfnRecordSetGroup.CidrRoutingConfigProperty.CollectionId`
2009 *
2010 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrroutingconfig.html#cfn-route53-cidrroutingconfig-collectionid
2011 */
2012 readonly collectionId: string;
2013 /**
2014 * `CfnRecordSetGroup.CidrRoutingConfigProperty.LocationName`
2015 *
2016 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-cidrroutingconfig.html#cfn-route53-cidrroutingconfig-locationname
2017 */
2018 readonly locationName: string;
2019 }
2020}
2021export declare namespace CfnRecordSetGroup {
2022 /**
2023 * A complex type that contains information about a geographic location.
2024 *
2025 * @struct
2026 * @stability external
2027 *
2028 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html
2029 */
2030 interface GeoLocationProperty {
2031 /**
2032 * For geolocation resource record sets, a two-letter abbreviation that identifies a continent. Route 53 supports the following continent codes:
2033 *
2034 * - *AF* : Africa
2035 * - *AN* : Antarctica
2036 * - *AS* : Asia
2037 * - *EU* : Europe
2038 * - *OC* : Oceania
2039 * - *NA* : North America
2040 * - *SA* : South America
2041 *
2042 * Constraint: Specifying `ContinentCode` with either `CountryCode` or `SubdivisionCode` returns an `InvalidInput` error.
2043 *
2044 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordsetgroup-geolocation-continentcode
2045 */
2046 readonly continentCode?: string;
2047 /**
2048 * For geolocation resource record sets, the two-letter code for a country.
2049 *
2050 * Route 53 uses the two-letter country codes that are specified in [ISO standard 3166-1 alpha-2](https://docs.aws.amazon.com/https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) .
2051 *
2052 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-countrycode
2053 */
2054 readonly countryCode?: string;
2055 /**
2056 * For geolocation resource record sets, the two-letter code for a state of the United States. Route 53 doesn't support any other values for `SubdivisionCode` . For a list of state abbreviations, see [Appendix B: Two–Letter State and Possession Abbreviations](https://docs.aws.amazon.com/https://pe.usps.com/text/pub28/28apb.htm) on the United States Postal Service website.
2057 *
2058 * If you specify `subdivisioncode` , you must also specify `US` for `CountryCode` .
2059 *
2060 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset-geolocation.html#cfn-route53-recordset-geolocation-subdivisioncode
2061 */
2062 readonly subdivisionCode?: string;
2063 }
2064}
2065export declare namespace CfnRecordSetGroup {
2066 /**
2067 * Information about one record that you want to create.
2068 *
2069 * @struct
2070 * @stability external
2071 *
2072 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html
2073 */
2074 interface RecordSetProperty {
2075 /**
2076 * *Alias resource record sets only:* Information about the AWS resource, such as a CloudFront distribution or an Amazon S3 bucket, that you want to route traffic to.
2077 *
2078 * If you're creating resource records sets for a private hosted zone, note the following:
2079 *
2080 * - You can't create an alias resource record set in a private hosted zone to route traffic to a CloudFront distribution.
2081 * - Creating geolocation alias resource record sets or latency alias resource record sets in a private hosted zone is unsupported.
2082 * - For information about creating failover resource record sets in a private hosted zone, see [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) in the *Amazon Route 53 Developer Guide* .
2083 *
2084 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-aliastarget
2085 */
2086 readonly aliasTarget?: CfnRecordSetGroup.AliasTargetProperty | cdk.IResolvable;
2087 /**
2088 * `CfnRecordSetGroup.RecordSetProperty.CidrRoutingConfig`
2089 *
2090 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-cidrroutingconfig
2091 */
2092 readonly cidrRoutingConfig?: CfnRecordSetGroup.CidrRoutingConfigProperty | cdk.IResolvable;
2093 /**
2094 * *Failover resource record sets only:* To configure failover, you add the `Failover` element to two resource record sets. For one resource record set, you specify `PRIMARY` as the value for `Failover` ; for the other resource record set, you specify `SECONDARY` . In addition, you include the `HealthCheckId` element and specify the health check that you want Amazon Route 53 to perform for each resource record set.
2095 *
2096 * Except where noted, the following failover behaviors assume that you have included the `HealthCheckId` element in both resource record sets:
2097 *
2098 * - When the primary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the secondary resource record set.
2099 * - When the primary resource record set is unhealthy and the secondary resource record set is healthy, Route 53 responds to DNS queries with the applicable value from the secondary resource record set.
2100 * - When the secondary resource record set is unhealthy, Route 53 responds to DNS queries with the applicable value from the primary resource record set regardless of the health of the primary resource record set.
2101 * - If you omit the `HealthCheckId` element for the secondary resource record set, and if the primary resource record set is unhealthy, Route 53 always responds to DNS queries with the applicable value from the secondary resource record set. This is true regardless of the health of the associated endpoint.
2102 *
2103 * You can't create non-failover resource record sets that have the same values for the `Name` and `Type` elements as failover resource record sets.
2104 *
2105 * For failover alias resource record sets, you must also include the `EvaluateTargetHealth` element and set the value to true.
2106 *
2107 * For more information about configuring failover for Route 53, see the following topics in the *Amazon Route 53 Developer Guide* :
2108 *
2109 * - [Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)
2110 * - [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)
2111 *
2112 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-failover
2113 */
2114 readonly failover?: string;
2115 /**
2116 * *Geolocation resource record sets only:* A complex type that lets you control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query. For example, if you want all queries from Africa to be routed to a web server with an IP address of `192.0.2.111` , create a resource record set with a `Type` of `A` and a `ContinentCode` of `AF` .
2117 *
2118 * > Although creating geolocation and geolocation alias resource record sets in a private hosted zone is allowed, it's not supported.
2119 *
2120 * If you create separate resource record sets for overlapping geographic regions (for example, one resource record set for a continent and one for a country on the same continent), priority goes to the smallest geographic region. This allows you to route most queries for a continent to one resource and to route queries for a country on that continent to a different resource.
2121 *
2122 * You can't create two geolocation resource record sets that specify the same geographic location.
2123 *
2124 * The value `*` in the `CountryCode` element matches all geographic locations that aren't specified in other geolocation resource record sets that have the same values for the `Name` and `Type` elements.
2125 *
2126 * > Geolocation works by mapping IP addresses to locations. However, some IP addresses aren't mapped to geographic locations, so even if you create geolocation resource record sets that cover all seven continents, Route 53 will receive some DNS queries from locations that it can't identify. We recommend that you create a resource record set for which the value of `CountryCode` is `*` . Two groups of queries are routed to the resource that you specify in this record: queries that come from locations for which you haven't created geolocation resource record sets and queries from IP addresses that aren't mapped to a location. If you don't create a `*` resource record set, Route 53 returns a "no answer" response for queries from those locations.
2127 *
2128 * You can't create non-geolocation resource record sets that have the same values for the `Name` and `Type` elements as geolocation resource record sets.
2129 *
2130 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-geolocation
2131 */
2132 readonly geoLocation?: CfnRecordSetGroup.GeoLocationProperty | cdk.IResolvable;
2133 /**
2134 * If you want Amazon Route 53 to return this resource record set in response to a DNS query only when the status of a health check is healthy, include the `HealthCheckId` element and specify the ID of the applicable health check.
2135 *
2136 * Route 53 determines whether a resource record set is healthy based on one of the following:
2137 *
2138 * - By periodically sending a request to the endpoint that is specified in the health check
2139 * - By aggregating the status of a specified group of health checks (calculated health checks)
2140 * - By determining the current state of a CloudWatch alarm (CloudWatch metric health checks)
2141 *
2142 * > Route 53 doesn't check the health of the endpoint that is specified in the resource record set, for example, the endpoint specified by the IP address in the `Value` element. When you add a `HealthCheckId` element to a resource record set, Route 53 checks the health of the endpoint that you specified in the health check.
2143 *
2144 * For more information, see the following topics in the *Amazon Route 53 Developer Guide* :
2145 *
2146 * - [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html)
2147 * - [Route 53 Health Checks and DNS Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html)
2148 * - [Configuring Failover in a Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html)
2149 *
2150 * *When to Specify HealthCheckId*
2151 *
2152 * Specifying a value for `HealthCheckId` is useful only when Route 53 is choosing between two or more resource record sets to respond to a DNS query, and you want Route 53 to base the choice in part on the status of a health check. Configuring health checks makes sense only in the following configurations:
2153 *
2154 * - *Non-alias resource record sets* : You're checking the health of a group of non-alias resource record sets that have the same routing policy, name, and type (such as multiple weighted records named www.example.com with a type of A) and you specify health check IDs for all the resource record sets.
2155 *
2156 * If the health check status for a resource record set is healthy, Route 53 includes the record among the records that it responds to DNS queries with.
2157 *
2158 * If the health check status for a resource record set is unhealthy, Route 53 stops responding to DNS queries using the value for that resource record set.
2159 *
2160 * If the health check status for all resource record sets in the group is unhealthy, Route 53 considers all resource record sets in the group healthy and responds to DNS queries accordingly.
2161 * - *Alias resource record sets* : You specify the following settings:
2162 *
2163 * - You set `EvaluateTargetHealth` to true for an alias resource record set in a group of resource record sets that have the same routing policy, name, and type (such as multiple weighted records named www.example.com with a type of A).
2164 * - You configure the alias resource record set to route traffic to a non-alias resource record set in the same hosted zone.
2165 * - You specify a health check ID for the non-alias resource record set.
2166 *
2167 * If the health check status is healthy, Route 53 considers the alias resource record set to be healthy and includes the alias record among the records that it responds to DNS queries with.
2168 *
2169 * If the health check status is unhealthy, Route 53 stops responding to DNS queries using the alias resource record set.
2170 *
2171 * > The alias resource record set can also route traffic to a *group* of non-alias resource record sets that have the same routing policy, name, and type. In that configuration, associate health checks with all of the resource record sets in the group of non-alias resource record sets.
2172 *
2173 * *Geolocation Routing*
2174 *
2175 * For geolocation resource record sets, if an endpoint is unhealthy, Route 53 looks for a resource record set for the larger, associated geographic region. For example, suppose you have resource record sets for a state in the United States, for the entire United States, for North America, and a resource record set that has `*` for `CountryCode` is `*` , which applies to all locations. If the endpoint for the state resource record set is unhealthy, Route 53 checks for healthy resource record sets in the following order until it finds a resource record set for which the endpoint is healthy:
2176 *
2177 * - The United States
2178 * - North America
2179 * - The default resource record set
2180 *
2181 * *Specifying the Health Check Endpoint by Domain Name*
2182 *
2183 * If your health checks specify the endpoint only by domain name, we recommend that you create a separate health check for each endpoint. For example, create a health check for each `HTTP` server that is serving content for `www.example.com` . For the value of `FullyQualifiedDomainName` , specify the domain name of the server (such as `us-east-2-www.example.com` ), not the name of the resource record sets ( `www.example.com` ).
2184 *
2185 * > Health check results will be unpredictable if you do the following:
2186 * >
2187 * > - Create a health check that has the same value for `FullyQualifiedDomainName` as the name of a resource record set.
2188 * > - Associate that health check with the resource record set.
2189 *
2190 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-healthcheckid
2191 */
2192 readonly healthCheckId?: string;
2193 /**
2194 * The ID of the hosted zone that you want to create records in.
2195 *
2196 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
2197 *
2198 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzoneid
2199 */
2200 readonly hostedZoneId?: string;
2201 /**
2202 * The name of the hosted zone that you want to create records in. You must include a trailing dot (for example, `www.example.com.` ) as part of the `HostedZoneName` .
2203 *
2204 * When you create a stack using an `AWS::Route53::RecordSet` that specifies `HostedZoneName` , AWS CloudFormation attempts to find a hosted zone whose name matches the `HostedZoneName` . If AWS CloudFormation can't find a hosted zone with a matching domain name, or if there is more than one hosted zone with the specified domain name, AWS CloudFormation will not create the stack.
2205 *
2206 * Specify either `HostedZoneName` or `HostedZoneId` , but not both. If you have multiple hosted zones with the same domain name, you must specify the hosted zone using `HostedZoneId` .
2207 *
2208 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-hostedzonename
2209 */
2210 readonly hostedZoneName?: string;
2211 /**
2212 * *Multivalue answer resource record sets only* : To route traffic approximately randomly to multiple resources, such as web servers, create one multivalue answer record for each resource and specify `true` for `MultiValueAnswer` . Note the following:
2213 *
2214 * - If you associate a health check with a multivalue answer resource record set, Amazon Route 53 responds to DNS queries with the corresponding IP address only when the health check is healthy.
2215 * - If you don't associate a health check with a multivalue answer record, Route 53 always considers the record to be healthy.
2216 * - Route 53 responds to DNS queries with up to eight healthy records; if you have eight or fewer healthy records, Route 53 responds to all DNS queries with all the healthy records.
2217 * - If you have more than eight healthy records, Route 53 responds to different DNS resolvers with different combinations of healthy records.
2218 * - When all records are unhealthy, Route 53 responds to DNS queries with up to eight unhealthy records.
2219 * - If a resource becomes unavailable after a resolver caches a response, client software typically tries another of the IP addresses in the response.
2220 *
2221 * You can't create multivalue answer alias records.
2222 *
2223 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-multivalueanswer
2224 */
2225 readonly multiValueAnswer?: boolean | cdk.IResolvable;
2226 /**
2227 * For `ChangeResourceRecordSets` requests, the name of the record that you want to create, update, or delete. For `ListResourceRecordSets` responses, the name of a record in the specified hosted zone.
2228 *
2229 * *ChangeResourceRecordSets Only*
2230 *
2231 * Enter a fully qualified domain name, for example, `www.example.com` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify 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.
2232 *
2233 * For information about how to specify characters other than `a-z` , `0-9` , and `-` (hyphen) and how to specify internationalized domain names, see [DNS Domain Name Format](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html) in the *Amazon Route 53 Developer Guide* .
2234 *
2235 * You can use the asterisk (*) wildcard to replace the leftmost label in a domain name, for example, `*.example.com` . Note the following:
2236 *
2237 * - The * must replace the entire label. For example, you can't specify `*prod.example.com` or `prod*.example.com` .
2238 * - The * can't replace any of the middle labels, for example, marketing.*.example.com.
2239 * - If you include * in any position other than the leftmost label in a domain name, DNS treats it as an * character (ASCII 42), not as a wildcard.
2240 *
2241 * > You can't use the * wildcard for resource records sets that have a type of NS.
2242 *
2243 * You can use the * wildcard as the leftmost label in a domain name, for example, `*.example.com` . You can't use an * for one of the middle labels, for example, `marketing.*.example.com` . In addition, the * must replace the entire label; for example, you can't specify `prod*.example.com` .
2244 *
2245 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-name
2246 */
2247 readonly name: string;
2248 /**
2249 * *Latency-based resource record sets only:* The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an AWS resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.
2250 *
2251 * > Although creating latency and latency alias resource record sets in a private hosted zone is allowed, it's not supported.
2252 *
2253 * When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set.
2254 *
2255 * Note the following:
2256 *
2257 * - You can only specify one `ResourceRecord` per latency resource record set.
2258 * - You can only create one latency resource record set for each Amazon EC2 Region.
2259 * - You aren't required to create latency resource record sets for all Amazon EC2 Regions. Route 53 will choose the region with the best latency from among the regions that you create latency resource record sets for.
2260 * - You can't create non-latency resource record sets that have the same values for the `Name` and `Type` elements as latency resource record sets.
2261 *
2262 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-region
2263 */
2264 readonly region?: string;
2265 /**
2266 * Information about the records that you want to create. Each record should be in the format appropriate for the record type specified by the `Type` property. For information about different record types and their record formats, see [Values That You Specify When You Create or Edit Amazon Route 53 Records](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resource-record-sets-values.html) in the *Amazon Route 53 Developer Guide* .
2267 *
2268 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-resourcerecords
2269 */
2270 readonly resourceRecords?: string[];
2271 /**
2272 * *Resource record sets that have a routing policy other than simple:* An identifier that differentiates among multiple resource record sets that have the same combination of name and type, such as multiple weighted resource record sets named acme.example.com that have a type of A. In a group of resource record sets that have the same name and type, the value of `SetIdentifier` must be unique for each resource record set.
2273 *
2274 * For information about routing policies, see [Choosing a Routing Policy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html) in the *Amazon Route 53 Developer Guide* .
2275 *
2276 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-setidentifier
2277 */
2278 readonly setIdentifier?: string;
2279 /**
2280 * The resource record cache time to live (TTL), in seconds. Note the following:
2281 *
2282 * - If you're creating or updating an alias resource record set, omit `TTL` . Amazon Route 53 uses the value of `TTL` for the alias target.
2283 * - If you're associating this resource record set with a health check (if you're adding a `HealthCheckId` element), we recommend that you specify a `TTL` of 60 seconds or less so clients respond quickly to changes in health status.
2284 * - All of the resource record sets in a group of weighted resource record sets must have the same value for `TTL` .
2285 * - If a group of weighted resource record sets includes one or more weighted alias resource record sets for which the alias target is an ELB load balancer, we recommend that you specify a `TTL` of 60 seconds for all of the non-alias weighted resource record sets that have the same name and type. Values other than 60 seconds (the TTL for load balancers) will change the effect of the values that you specify for `Weight` .
2286 *
2287 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-ttl
2288 */
2289 readonly ttl?: string;
2290 /**
2291 * The DNS record type. For information about different record types and how data is encoded for them, see [Supported DNS Resource Record Types](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html) in the *Amazon Route 53 Developer Guide* .
2292 *
2293 * Valid values for basic resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `DS` | `MX` | `NAPTR` | `NS` | `PTR` | `SOA` | `SPF` | `SRV` | `TXT`
2294 *
2295 * Values for weighted, latency, geolocation, and failover resource record sets: `A` | `AAAA` | `CAA` | `CNAME` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT` . When creating a group of weighted, latency, geolocation, or failover resource record sets, specify the same value for all of the resource record sets in the group.
2296 *
2297 * Valid values for multivalue answer resource record sets: `A` | `AAAA` | `MX` | `NAPTR` | `PTR` | `SPF` | `SRV` | `TXT`
2298 *
2299 * > SPF records were formerly used to verify the identity of the sender of email messages. However, we no longer recommend that you create resource record sets for which the value of `Type` is `SPF` . RFC 7208, *Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1* , has been updated to say, "...[I]ts existence and mechanism defined in [RFC4408] have led to some interoperability issues. Accordingly, its use is no longer appropriate for SPF version 1; implementations are not to use it." In RFC 7208, see section 14.1, [The SPF DNS Record Type](https://docs.aws.amazon.com/http://tools.ietf.org/html/rfc7208#section-14.1) .
2300 *
2301 * Values for alias resource record sets:
2302 *
2303 * - *Amazon API Gateway custom regional APIs and edge-optimized APIs:* `A`
2304 * - *CloudFront distributions:* `A`
2305 *
2306 * If IPv6 is enabled for the distribution, create two resource record sets to route traffic to your distribution, one with a value of `A` and one with a value of `AAAA` .
2307 * - *Amazon API Gateway environment that has a regionalized subdomain* : `A`
2308 * - *ELB load balancers:* `A` | `AAAA`
2309 * - *Amazon S3 buckets:* `A`
2310 * - *Amazon Virtual Private Cloud interface VPC endpoints* `A`
2311 * - *Another resource record set in this hosted zone:* Specify the type of the resource record set that you're creating the alias for. All values are supported except `NS` and `SOA` .
2312 *
2313 * > If you're creating an alias record that has the same name as the hosted zone (known as the zone apex), you can't route traffic to a record for which the value of `Type` is `CNAME` . This is because the alias record must have the same type as the record you're routing traffic to, and creating a CNAME record for the zone apex isn't supported even for an alias record.
2314 *
2315 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-type
2316 */
2317 readonly type: string;
2318 /**
2319 * *Weighted resource record sets only:* Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set. Route 53 calculates the sum of the weights for the resource record sets that have the same combination of DNS name and type. Route 53 then responds to queries based on the ratio of a resource's weight to the total. Note the following:
2320 *
2321 * - You must specify a value for the `Weight` element for every weighted resource record set.
2322 * - You can only specify one `ResourceRecord` per weighted resource record set.
2323 * - You can't create latency, failover, or geolocation resource record sets that have the same values for the `Name` and `Type` elements as weighted resource record sets.
2324 * - You can create a maximum of 100 weighted resource record sets that have the same values for the `Name` and `Type` elements.
2325 * - For weighted (but not weighted alias) resource record sets, if you set `Weight` to `0` for a resource record set, Route 53 never responds to queries with the applicable value for that resource record set. However, if you set `Weight` to `0` for all resource record sets that have the same combination of DNS name and type, traffic is routed to all resources with equal probability.
2326 *
2327 * The effect of setting `Weight` to `0` is different when you associate health checks with weighted resource record sets. For more information, see [Options for Configuring Route 53 Active-Active and Active-Passive Failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html) in the *Amazon Route 53 Developer Guide* .
2328 *
2329 * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-recordset.html#cfn-route53-recordset-weight
2330 */
2331 readonly weight?: number;
2332 }
2333}