@aws-sdk/client-route-53 3.100.0 → 3.103.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +2 -1
  3. package/dist-cjs/Route53.js +90 -0
  4. package/dist-cjs/commands/ChangeCidrCollectionCommand.js +38 -0
  5. package/dist-cjs/commands/CreateCidrCollectionCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteCidrCollectionCommand.js +38 -0
  7. package/dist-cjs/commands/ListCidrBlocksCommand.js +36 -0
  8. package/dist-cjs/commands/ListCidrCollectionsCommand.js +36 -0
  9. package/dist-cjs/commands/ListCidrLocationsCommand.js +36 -0
  10. package/dist-cjs/commands/index.js +6 -0
  11. package/dist-cjs/models/models_0.js +202 -5
  12. package/dist-cjs/pagination/ListCidrBlocksPaginator.js +36 -0
  13. package/dist-cjs/pagination/ListCidrCollectionsPaginator.js +36 -0
  14. package/dist-cjs/pagination/ListCidrLocationsPaginator.js +36 -0
  15. package/dist-cjs/pagination/index.js +3 -0
  16. package/dist-cjs/protocols/Aws_restXml.js +784 -63
  17. package/dist-es/Route53.js +90 -0
  18. package/dist-es/commands/ChangeCidrCollectionCommand.js +41 -0
  19. package/dist-es/commands/CreateCidrCollectionCommand.js +39 -0
  20. package/dist-es/commands/DeleteCidrCollectionCommand.js +41 -0
  21. package/dist-es/commands/ListCidrBlocksCommand.js +39 -0
  22. package/dist-es/commands/ListCidrCollectionsCommand.js +39 -0
  23. package/dist-es/commands/ListCidrLocationsCommand.js +39 -0
  24. package/dist-es/commands/index.js +6 -0
  25. package/dist-es/models/models_0.js +155 -0
  26. package/dist-es/pagination/ListCidrBlocksPaginator.js +75 -0
  27. package/dist-es/pagination/ListCidrCollectionsPaginator.js +75 -0
  28. package/dist-es/pagination/ListCidrLocationsPaginator.js +75 -0
  29. package/dist-es/pagination/index.js +3 -0
  30. package/dist-es/protocols/Aws_restXml.js +966 -99
  31. package/dist-types/Route53.d.ts +768 -557
  32. package/dist-types/Route53Client.d.ts +10 -3
  33. package/dist-types/commands/ActivateKeySigningKeyCommand.d.ts +2 -2
  34. package/dist-types/commands/AssociateVPCWithHostedZoneCommand.d.ts +19 -18
  35. package/dist-types/commands/ChangeCidrCollectionCommand.d.ts +60 -0
  36. package/dist-types/commands/ChangeResourceRecordSetsCommand.d.ts +63 -53
  37. package/dist-types/commands/ChangeTagsForResourceCommand.d.ts +2 -3
  38. package/dist-types/commands/CreateCidrCollectionCommand.d.ts +37 -0
  39. package/dist-types/commands/CreateHealthCheckCommand.d.ts +20 -19
  40. package/dist-types/commands/CreateHostedZoneCommand.d.ts +40 -31
  41. package/dist-types/commands/CreateKeySigningKeyCommand.d.ts +2 -1
  42. package/dist-types/commands/CreateQueryLoggingConfigCommand.d.ts +103 -74
  43. package/dist-types/commands/CreateReusableDelegationSetCommand.d.ts +42 -35
  44. package/dist-types/commands/CreateTrafficPolicyCommand.d.ts +3 -2
  45. package/dist-types/commands/CreateTrafficPolicyInstanceCommand.d.ts +6 -4
  46. package/dist-types/commands/CreateTrafficPolicyVersionCommand.d.ts +7 -5
  47. package/dist-types/commands/CreateVPCAssociationAuthorizationCommand.d.ts +10 -8
  48. package/dist-types/commands/DeactivateKeySigningKeyCommand.d.ts +2 -2
  49. package/dist-types/commands/DeleteCidrCollectionCommand.d.ts +36 -0
  50. package/dist-types/commands/DeleteHealthCheckCommand.d.ts +12 -11
  51. package/dist-types/commands/DeleteHostedZoneCommand.d.ts +33 -30
  52. package/dist-types/commands/DeleteKeySigningKeyCommand.d.ts +4 -4
  53. package/dist-types/commands/DeleteQueryLoggingConfigCommand.d.ts +4 -5
  54. package/dist-types/commands/DeleteReusableDelegationSetCommand.d.ts +5 -4
  55. package/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +10 -9
  56. package/dist-types/commands/DeleteTrafficPolicyInstanceCommand.d.ts +4 -2
  57. package/dist-types/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +10 -7
  58. package/dist-types/commands/DisableHostedZoneDNSSECCommand.d.ts +2 -2
  59. package/dist-types/commands/DisassociateVPCFromHostedZoneCommand.d.ts +30 -23
  60. package/dist-types/commands/GetAccountLimitCommand.d.ts +7 -8
  61. package/dist-types/commands/GetChangeCommand.d.ts +5 -3
  62. package/dist-types/commands/GetCheckerIpRangesCommand.d.ts +7 -5
  63. package/dist-types/commands/GetDNSSECCommand.d.ts +2 -1
  64. package/dist-types/commands/GetGeoLocationCommand.d.ts +17 -12
  65. package/dist-types/commands/GetHealthCheckStatusCommand.d.ts +4 -2
  66. package/dist-types/commands/GetHostedZoneCommand.d.ts +2 -1
  67. package/dist-types/commands/GetHostedZoneLimitCommand.d.ts +5 -5
  68. package/dist-types/commands/GetQueryLoggingConfigCommand.d.ts +2 -5
  69. package/dist-types/commands/GetReusableDelegationSetCommand.d.ts +2 -2
  70. package/dist-types/commands/GetReusableDelegationSetLimitCommand.d.ts +5 -4
  71. package/dist-types/commands/GetTrafficPolicyCommand.d.ts +2 -3
  72. package/dist-types/commands/GetTrafficPolicyInstanceCommand.d.ts +7 -4
  73. package/dist-types/commands/GetTrafficPolicyInstanceCountCommand.d.ts +2 -1
  74. package/dist-types/commands/ListCidrBlocksCommand.d.ts +35 -0
  75. package/dist-types/commands/ListCidrCollectionsCommand.d.ts +36 -0
  76. package/dist-types/commands/ListCidrLocationsCommand.d.ts +36 -0
  77. package/dist-types/commands/ListGeoLocationsCommand.d.ts +8 -5
  78. package/dist-types/commands/ListHostedZonesByNameCommand.d.ts +38 -27
  79. package/dist-types/commands/ListHostedZonesByVPCCommand.d.ts +22 -18
  80. package/dist-types/commands/ListHostedZonesCommand.d.ts +6 -4
  81. package/dist-types/commands/ListQueryLoggingConfigsCommand.d.ts +6 -8
  82. package/dist-types/commands/ListResourceRecordSetsCommand.d.ts +42 -35
  83. package/dist-types/commands/ListReusableDelegationSetsCommand.d.ts +2 -1
  84. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -3
  85. package/dist-types/commands/ListTagsForResourcesCommand.d.ts +2 -3
  86. package/dist-types/commands/ListTrafficPoliciesCommand.d.ts +5 -7
  87. package/dist-types/commands/ListTrafficPolicyInstancesByHostedZoneCommand.d.ts +10 -6
  88. package/dist-types/commands/ListTrafficPolicyInstancesByPolicyCommand.d.ts +10 -6
  89. package/dist-types/commands/ListTrafficPolicyInstancesCommand.d.ts +9 -5
  90. package/dist-types/commands/ListTrafficPolicyVersionsCommand.d.ts +2 -1
  91. package/dist-types/commands/ListVPCAssociationAuthorizationsCommand.d.ts +5 -4
  92. package/dist-types/commands/TestDNSAnswerCommand.d.ts +3 -2
  93. package/dist-types/commands/UpdateHealthCheckCommand.d.ts +3 -3
  94. package/dist-types/commands/UpdateTrafficPolicyInstanceCommand.d.ts +15 -8
  95. package/dist-types/commands/index.d.ts +6 -0
  96. package/dist-types/models/models_0.d.ts +3053 -1877
  97. package/dist-types/pagination/ListCidrBlocksPaginator.d.ts +4 -0
  98. package/dist-types/pagination/ListCidrCollectionsPaginator.d.ts +4 -0
  99. package/dist-types/pagination/ListCidrLocationsPaginator.d.ts +4 -0
  100. package/dist-types/pagination/index.d.ts +3 -0
  101. package/dist-types/protocols/Aws_restXml.d.ts +18 -0
  102. package/dist-types/ts3.4/Route53.d.ts +14 -0
  103. package/dist-types/ts3.4/Route53Client.d.ts +8 -2
  104. package/dist-types/ts3.4/commands/ChangeCidrCollectionCommand.d.ts +17 -0
  105. package/dist-types/ts3.4/commands/CreateCidrCollectionCommand.d.ts +17 -0
  106. package/dist-types/ts3.4/commands/DeleteCidrCollectionCommand.d.ts +17 -0
  107. package/dist-types/ts3.4/commands/ListCidrBlocksCommand.d.ts +17 -0
  108. package/dist-types/ts3.4/commands/ListCidrCollectionsCommand.d.ts +17 -0
  109. package/dist-types/ts3.4/commands/ListCidrLocationsCommand.d.ts +17 -0
  110. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  111. package/dist-types/ts3.4/models/models_0.d.ts +248 -0
  112. package/dist-types/ts3.4/pagination/ListCidrBlocksPaginator.d.ts +4 -0
  113. package/dist-types/ts3.4/pagination/ListCidrCollectionsPaginator.d.ts +4 -0
  114. package/dist-types/ts3.4/pagination/ListCidrLocationsPaginator.d.ts +4 -0
  115. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  116. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +18 -0
  117. package/package.json +1 -1
@@ -8,8 +8,10 @@ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfig
8
8
  import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { ActivateKeySigningKeyCommandInput, ActivateKeySigningKeyCommandOutput } from "./commands/ActivateKeySigningKeyCommand";
10
10
  import { AssociateVPCWithHostedZoneCommandInput, AssociateVPCWithHostedZoneCommandOutput } from "./commands/AssociateVPCWithHostedZoneCommand";
11
+ import { ChangeCidrCollectionCommandInput, ChangeCidrCollectionCommandOutput } from "./commands/ChangeCidrCollectionCommand";
11
12
  import { ChangeResourceRecordSetsCommandInput, ChangeResourceRecordSetsCommandOutput } from "./commands/ChangeResourceRecordSetsCommand";
12
13
  import { ChangeTagsForResourceCommandInput, ChangeTagsForResourceCommandOutput } from "./commands/ChangeTagsForResourceCommand";
14
+ import { CreateCidrCollectionCommandInput, CreateCidrCollectionCommandOutput } from "./commands/CreateCidrCollectionCommand";
13
15
  import { CreateHealthCheckCommandInput, CreateHealthCheckCommandOutput } from "./commands/CreateHealthCheckCommand";
14
16
  import { CreateHostedZoneCommandInput, CreateHostedZoneCommandOutput } from "./commands/CreateHostedZoneCommand";
15
17
  import { CreateKeySigningKeyCommandInput, CreateKeySigningKeyCommandOutput } from "./commands/CreateKeySigningKeyCommand";
@@ -20,6 +22,7 @@ import { CreateTrafficPolicyInstanceCommandInput, CreateTrafficPolicyInstanceCom
20
22
  import { CreateTrafficPolicyVersionCommandInput, CreateTrafficPolicyVersionCommandOutput } from "./commands/CreateTrafficPolicyVersionCommand";
21
23
  import { CreateVPCAssociationAuthorizationCommandInput, CreateVPCAssociationAuthorizationCommandOutput } from "./commands/CreateVPCAssociationAuthorizationCommand";
22
24
  import { DeactivateKeySigningKeyCommandInput, DeactivateKeySigningKeyCommandOutput } from "./commands/DeactivateKeySigningKeyCommand";
25
+ import { DeleteCidrCollectionCommandInput, DeleteCidrCollectionCommandOutput } from "./commands/DeleteCidrCollectionCommand";
23
26
  import { DeleteHealthCheckCommandInput, DeleteHealthCheckCommandOutput } from "./commands/DeleteHealthCheckCommand";
24
27
  import { DeleteHostedZoneCommandInput, DeleteHostedZoneCommandOutput } from "./commands/DeleteHostedZoneCommand";
25
28
  import { DeleteKeySigningKeyCommandInput, DeleteKeySigningKeyCommandOutput } from "./commands/DeleteKeySigningKeyCommand";
@@ -49,6 +52,9 @@ import { GetReusableDelegationSetLimitCommandInput, GetReusableDelegationSetLimi
49
52
  import { GetTrafficPolicyCommandInput, GetTrafficPolicyCommandOutput } from "./commands/GetTrafficPolicyCommand";
50
53
  import { GetTrafficPolicyInstanceCommandInput, GetTrafficPolicyInstanceCommandOutput } from "./commands/GetTrafficPolicyInstanceCommand";
51
54
  import { GetTrafficPolicyInstanceCountCommandInput, GetTrafficPolicyInstanceCountCommandOutput } from "./commands/GetTrafficPolicyInstanceCountCommand";
55
+ import { ListCidrBlocksCommandInput, ListCidrBlocksCommandOutput } from "./commands/ListCidrBlocksCommand";
56
+ import { ListCidrCollectionsCommandInput, ListCidrCollectionsCommandOutput } from "./commands/ListCidrCollectionsCommand";
57
+ import { ListCidrLocationsCommandInput, ListCidrLocationsCommandOutput } from "./commands/ListCidrLocationsCommand";
52
58
  import { ListGeoLocationsCommandInput, ListGeoLocationsCommandOutput } from "./commands/ListGeoLocationsCommand";
53
59
  import { ListHealthChecksCommandInput, ListHealthChecksCommandOutput } from "./commands/ListHealthChecksCommand";
54
60
  import { ListHostedZonesByNameCommandInput, ListHostedZonesByNameCommandOutput } from "./commands/ListHostedZonesByNameCommand";
@@ -70,8 +76,8 @@ import { UpdateHealthCheckCommandInput, UpdateHealthCheckCommandOutput } from ".
70
76
  import { UpdateHostedZoneCommentCommandInput, UpdateHostedZoneCommentCommandOutput } from "./commands/UpdateHostedZoneCommentCommand";
71
77
  import { UpdateTrafficPolicyCommentCommandInput, UpdateTrafficPolicyCommentCommandOutput } from "./commands/UpdateTrafficPolicyCommentCommand";
72
78
  import { UpdateTrafficPolicyInstanceCommandInput, UpdateTrafficPolicyInstanceCommandOutput } from "./commands/UpdateTrafficPolicyInstanceCommand";
73
- export declare type ServiceInputTypes = ActivateKeySigningKeyCommandInput | AssociateVPCWithHostedZoneCommandInput | ChangeResourceRecordSetsCommandInput | ChangeTagsForResourceCommandInput | CreateHealthCheckCommandInput | CreateHostedZoneCommandInput | CreateKeySigningKeyCommandInput | CreateQueryLoggingConfigCommandInput | CreateReusableDelegationSetCommandInput | CreateTrafficPolicyCommandInput | CreateTrafficPolicyInstanceCommandInput | CreateTrafficPolicyVersionCommandInput | CreateVPCAssociationAuthorizationCommandInput | DeactivateKeySigningKeyCommandInput | DeleteHealthCheckCommandInput | DeleteHostedZoneCommandInput | DeleteKeySigningKeyCommandInput | DeleteQueryLoggingConfigCommandInput | DeleteReusableDelegationSetCommandInput | DeleteTrafficPolicyCommandInput | DeleteTrafficPolicyInstanceCommandInput | DeleteVPCAssociationAuthorizationCommandInput | DisableHostedZoneDNSSECCommandInput | DisassociateVPCFromHostedZoneCommandInput | EnableHostedZoneDNSSECCommandInput | GetAccountLimitCommandInput | GetChangeCommandInput | GetCheckerIpRangesCommandInput | GetDNSSECCommandInput | GetGeoLocationCommandInput | GetHealthCheckCommandInput | GetHealthCheckCountCommandInput | GetHealthCheckLastFailureReasonCommandInput | GetHealthCheckStatusCommandInput | GetHostedZoneCommandInput | GetHostedZoneCountCommandInput | GetHostedZoneLimitCommandInput | GetQueryLoggingConfigCommandInput | GetReusableDelegationSetCommandInput | GetReusableDelegationSetLimitCommandInput | GetTrafficPolicyCommandInput | GetTrafficPolicyInstanceCommandInput | GetTrafficPolicyInstanceCountCommandInput | ListGeoLocationsCommandInput | ListHealthChecksCommandInput | ListHostedZonesByNameCommandInput | ListHostedZonesByVPCCommandInput | ListHostedZonesCommandInput | ListQueryLoggingConfigsCommandInput | ListResourceRecordSetsCommandInput | ListReusableDelegationSetsCommandInput | ListTagsForResourceCommandInput | ListTagsForResourcesCommandInput | ListTrafficPoliciesCommandInput | ListTrafficPolicyInstancesByHostedZoneCommandInput | ListTrafficPolicyInstancesByPolicyCommandInput | ListTrafficPolicyInstancesCommandInput | ListTrafficPolicyVersionsCommandInput | ListVPCAssociationAuthorizationsCommandInput | TestDNSAnswerCommandInput | UpdateHealthCheckCommandInput | UpdateHostedZoneCommentCommandInput | UpdateTrafficPolicyCommentCommandInput | UpdateTrafficPolicyInstanceCommandInput;
74
- export declare type ServiceOutputTypes = ActivateKeySigningKeyCommandOutput | AssociateVPCWithHostedZoneCommandOutput | ChangeResourceRecordSetsCommandOutput | ChangeTagsForResourceCommandOutput | CreateHealthCheckCommandOutput | CreateHostedZoneCommandOutput | CreateKeySigningKeyCommandOutput | CreateQueryLoggingConfigCommandOutput | CreateReusableDelegationSetCommandOutput | CreateTrafficPolicyCommandOutput | CreateTrafficPolicyInstanceCommandOutput | CreateTrafficPolicyVersionCommandOutput | CreateVPCAssociationAuthorizationCommandOutput | DeactivateKeySigningKeyCommandOutput | DeleteHealthCheckCommandOutput | DeleteHostedZoneCommandOutput | DeleteKeySigningKeyCommandOutput | DeleteQueryLoggingConfigCommandOutput | DeleteReusableDelegationSetCommandOutput | DeleteTrafficPolicyCommandOutput | DeleteTrafficPolicyInstanceCommandOutput | DeleteVPCAssociationAuthorizationCommandOutput | DisableHostedZoneDNSSECCommandOutput | DisassociateVPCFromHostedZoneCommandOutput | EnableHostedZoneDNSSECCommandOutput | GetAccountLimitCommandOutput | GetChangeCommandOutput | GetCheckerIpRangesCommandOutput | GetDNSSECCommandOutput | GetGeoLocationCommandOutput | GetHealthCheckCommandOutput | GetHealthCheckCountCommandOutput | GetHealthCheckLastFailureReasonCommandOutput | GetHealthCheckStatusCommandOutput | GetHostedZoneCommandOutput | GetHostedZoneCountCommandOutput | GetHostedZoneLimitCommandOutput | GetQueryLoggingConfigCommandOutput | GetReusableDelegationSetCommandOutput | GetReusableDelegationSetLimitCommandOutput | GetTrafficPolicyCommandOutput | GetTrafficPolicyInstanceCommandOutput | GetTrafficPolicyInstanceCountCommandOutput | ListGeoLocationsCommandOutput | ListHealthChecksCommandOutput | ListHostedZonesByNameCommandOutput | ListHostedZonesByVPCCommandOutput | ListHostedZonesCommandOutput | ListQueryLoggingConfigsCommandOutput | ListResourceRecordSetsCommandOutput | ListReusableDelegationSetsCommandOutput | ListTagsForResourceCommandOutput | ListTagsForResourcesCommandOutput | ListTrafficPoliciesCommandOutput | ListTrafficPolicyInstancesByHostedZoneCommandOutput | ListTrafficPolicyInstancesByPolicyCommandOutput | ListTrafficPolicyInstancesCommandOutput | ListTrafficPolicyVersionsCommandOutput | ListVPCAssociationAuthorizationsCommandOutput | TestDNSAnswerCommandOutput | UpdateHealthCheckCommandOutput | UpdateHostedZoneCommentCommandOutput | UpdateTrafficPolicyCommentCommandOutput | UpdateTrafficPolicyInstanceCommandOutput;
79
+ export declare type ServiceInputTypes = ActivateKeySigningKeyCommandInput | AssociateVPCWithHostedZoneCommandInput | ChangeCidrCollectionCommandInput | ChangeResourceRecordSetsCommandInput | ChangeTagsForResourceCommandInput | CreateCidrCollectionCommandInput | CreateHealthCheckCommandInput | CreateHostedZoneCommandInput | CreateKeySigningKeyCommandInput | CreateQueryLoggingConfigCommandInput | CreateReusableDelegationSetCommandInput | CreateTrafficPolicyCommandInput | CreateTrafficPolicyInstanceCommandInput | CreateTrafficPolicyVersionCommandInput | CreateVPCAssociationAuthorizationCommandInput | DeactivateKeySigningKeyCommandInput | DeleteCidrCollectionCommandInput | DeleteHealthCheckCommandInput | DeleteHostedZoneCommandInput | DeleteKeySigningKeyCommandInput | DeleteQueryLoggingConfigCommandInput | DeleteReusableDelegationSetCommandInput | DeleteTrafficPolicyCommandInput | DeleteTrafficPolicyInstanceCommandInput | DeleteVPCAssociationAuthorizationCommandInput | DisableHostedZoneDNSSECCommandInput | DisassociateVPCFromHostedZoneCommandInput | EnableHostedZoneDNSSECCommandInput | GetAccountLimitCommandInput | GetChangeCommandInput | GetCheckerIpRangesCommandInput | GetDNSSECCommandInput | GetGeoLocationCommandInput | GetHealthCheckCommandInput | GetHealthCheckCountCommandInput | GetHealthCheckLastFailureReasonCommandInput | GetHealthCheckStatusCommandInput | GetHostedZoneCommandInput | GetHostedZoneCountCommandInput | GetHostedZoneLimitCommandInput | GetQueryLoggingConfigCommandInput | GetReusableDelegationSetCommandInput | GetReusableDelegationSetLimitCommandInput | GetTrafficPolicyCommandInput | GetTrafficPolicyInstanceCommandInput | GetTrafficPolicyInstanceCountCommandInput | ListCidrBlocksCommandInput | ListCidrCollectionsCommandInput | ListCidrLocationsCommandInput | ListGeoLocationsCommandInput | ListHealthChecksCommandInput | ListHostedZonesByNameCommandInput | ListHostedZonesByVPCCommandInput | ListHostedZonesCommandInput | ListQueryLoggingConfigsCommandInput | ListResourceRecordSetsCommandInput | ListReusableDelegationSetsCommandInput | ListTagsForResourceCommandInput | ListTagsForResourcesCommandInput | ListTrafficPoliciesCommandInput | ListTrafficPolicyInstancesByHostedZoneCommandInput | ListTrafficPolicyInstancesByPolicyCommandInput | ListTrafficPolicyInstancesCommandInput | ListTrafficPolicyVersionsCommandInput | ListVPCAssociationAuthorizationsCommandInput | TestDNSAnswerCommandInput | UpdateHealthCheckCommandInput | UpdateHostedZoneCommentCommandInput | UpdateTrafficPolicyCommentCommandInput | UpdateTrafficPolicyInstanceCommandInput;
80
+ export declare type ServiceOutputTypes = ActivateKeySigningKeyCommandOutput | AssociateVPCWithHostedZoneCommandOutput | ChangeCidrCollectionCommandOutput | ChangeResourceRecordSetsCommandOutput | ChangeTagsForResourceCommandOutput | CreateCidrCollectionCommandOutput | CreateHealthCheckCommandOutput | CreateHostedZoneCommandOutput | CreateKeySigningKeyCommandOutput | CreateQueryLoggingConfigCommandOutput | CreateReusableDelegationSetCommandOutput | CreateTrafficPolicyCommandOutput | CreateTrafficPolicyInstanceCommandOutput | CreateTrafficPolicyVersionCommandOutput | CreateVPCAssociationAuthorizationCommandOutput | DeactivateKeySigningKeyCommandOutput | DeleteCidrCollectionCommandOutput | DeleteHealthCheckCommandOutput | DeleteHostedZoneCommandOutput | DeleteKeySigningKeyCommandOutput | DeleteQueryLoggingConfigCommandOutput | DeleteReusableDelegationSetCommandOutput | DeleteTrafficPolicyCommandOutput | DeleteTrafficPolicyInstanceCommandOutput | DeleteVPCAssociationAuthorizationCommandOutput | DisableHostedZoneDNSSECCommandOutput | DisassociateVPCFromHostedZoneCommandOutput | EnableHostedZoneDNSSECCommandOutput | GetAccountLimitCommandOutput | GetChangeCommandOutput | GetCheckerIpRangesCommandOutput | GetDNSSECCommandOutput | GetGeoLocationCommandOutput | GetHealthCheckCommandOutput | GetHealthCheckCountCommandOutput | GetHealthCheckLastFailureReasonCommandOutput | GetHealthCheckStatusCommandOutput | GetHostedZoneCommandOutput | GetHostedZoneCountCommandOutput | GetHostedZoneLimitCommandOutput | GetQueryLoggingConfigCommandOutput | GetReusableDelegationSetCommandOutput | GetReusableDelegationSetLimitCommandOutput | GetTrafficPolicyCommandOutput | GetTrafficPolicyInstanceCommandOutput | GetTrafficPolicyInstanceCountCommandOutput | ListCidrBlocksCommandOutput | ListCidrCollectionsCommandOutput | ListCidrLocationsCommandOutput | ListGeoLocationsCommandOutput | ListHealthChecksCommandOutput | ListHostedZonesByNameCommandOutput | ListHostedZonesByVPCCommandOutput | ListHostedZonesCommandOutput | ListQueryLoggingConfigsCommandOutput | ListResourceRecordSetsCommandOutput | ListReusableDelegationSetsCommandOutput | ListTagsForResourceCommandOutput | ListTagsForResourcesCommandOutput | ListTrafficPoliciesCommandOutput | ListTrafficPolicyInstancesByHostedZoneCommandOutput | ListTrafficPolicyInstancesByPolicyCommandOutput | ListTrafficPolicyInstancesCommandOutput | ListTrafficPolicyVersionsCommandOutput | ListVPCAssociationAuthorizationsCommandOutput | TestDNSAnswerCommandOutput | UpdateHealthCheckCommandOutput | UpdateHostedZoneCommentCommandOutput | UpdateTrafficPolicyCommentCommandOutput | UpdateTrafficPolicyInstanceCommandOutput;
75
81
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
76
82
  /**
77
83
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -190,7 +196,8 @@ declare type Route53ClientResolvedConfigType = __SmithyResolvedConfiguration<__H
190
196
  export interface Route53ClientResolvedConfig extends Route53ClientResolvedConfigType {
191
197
  }
192
198
  /**
193
- * <p>Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.</p>
199
+ * <p>Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web
200
+ * service.</p>
194
201
  */
195
202
  export declare class Route53Client extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Route53ClientResolvedConfig> {
196
203
  /**
@@ -7,8 +7,8 @@ export interface ActivateKeySigningKeyCommandInput extends ActivateKeySigningKey
7
7
  export interface ActivateKeySigningKeyCommandOutput extends ActivateKeySigningKeyResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Activates a key-signing key (KSK) so that it can be used for signing by DNSSEC. This operation changes the
11
- * KSK status to <code>ACTIVE</code>.</p>
10
+ * <p>Activates a key-signing key (KSK) so that it can be used for signing by DNSSEC. This
11
+ * operation changes the KSK status to <code>ACTIVE</code>.</p>
12
12
  * @example
13
13
  * Use a bare-bones client and the command you need to make an API call.
14
14
  * ```javascript
@@ -9,37 +9,38 @@ export interface AssociateVPCWithHostedZoneCommandOutput extends AssociateVPCWit
9
9
  /**
10
10
  * <p>Associates an Amazon VPC with a private hosted zone. </p>
11
11
  * <important>
12
- * <p>To perform the association, the VPC and the private hosted zone must already exist.
13
- * You can't convert a public hosted zone into a private hosted zone.</p>
14
- * </important>
12
+ * <p>To perform the association, the VPC and the private hosted zone must already
13
+ * exist. You can't convert a public hosted zone into a private hosted zone.</p>
14
+ * </important>
15
15
  * <note>
16
- * <p>If you want to associate a VPC that was created by using one Amazon Web Services account with a private hosted zone that was created
17
- * by using a different account, the Amazon Web Services account that created the private hosted zone must first submit a
18
- * <code>CreateVPCAssociationAuthorization</code> request. Then the account that created the VPC must submit an
19
- * <code>AssociateVPCWithHostedZone</code> request.</p>
20
- * </note>
16
+ * <p>If you want to associate a VPC that was created by using one Amazon Web Services account with a private hosted zone that was created by using a
17
+ * different account, the Amazon Web Services account that created the private hosted
18
+ * zone must first submit a <code>CreateVPCAssociationAuthorization</code> request.
19
+ * Then the account that created the VPC must submit an
20
+ * <code>AssociateVPCWithHostedZone</code> request.</p>
21
+ * </note>
21
22
  * <note>
22
- * <p>When granting access, the hosted zone and the Amazon VPC must belong to the same partition. A
23
- * partition is a group of Amazon Web Services Regions. Each Amazon Web Services account is scoped to one
24
- * partition.</p>
23
+ * <p>When granting access, the hosted zone and the Amazon VPC must belong to
24
+ * the same partition. A partition is a group of Amazon Web Services Regions. Each
25
+ * Amazon Web Services account is scoped to one partition.</p>
25
26
  * <p>The following are the supported partitions:</p>
26
27
  * <ul>
27
28
  * <li>
28
- * <p>
29
+ * <p>
29
30
  * <code>aws</code> - Amazon Web Services Regions</p>
30
- * </li>
31
+ * </li>
31
32
  * <li>
32
- * <p>
33
+ * <p>
33
34
  * <code>aws-cn</code> - China Regions</p>
34
- * </li>
35
+ * </li>
35
36
  * <li>
36
- * <p>
37
+ * <p>
37
38
  * <code>aws-us-gov</code> - Amazon Web Services GovCloud (US) Region</p>
38
- * </li>
39
+ * </li>
39
40
  * </ul>
40
41
  * <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Access Management</a>
41
42
  * in the <i>Amazon Web Services General Reference</i>.</p>
42
- * </note>
43
+ * </note>
43
44
  * @example
44
45
  * Use a bare-bones client and the command you need to make an API call.
45
46
  * ```javascript
@@ -0,0 +1,60 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChangeCidrCollectionRequest, ChangeCidrCollectionResponse } from "../models/models_0";
4
+ import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client";
5
+ export interface ChangeCidrCollectionCommandInput extends ChangeCidrCollectionRequest {
6
+ }
7
+ export interface ChangeCidrCollectionCommandOutput extends ChangeCidrCollectionResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates, changes, or deletes CIDR blocks within a collection. Contains authoritative
11
+ * IP information mapping blocks to one or multiple locations.</p>
12
+ * <p>A change request can update multiple locations in a collection at a time, which is
13
+ * helpful if you want to move one or more CIDR blocks from one location to another in one
14
+ * transaction, without downtime. </p>
15
+ * <p>
16
+ * <b>Limits</b>
17
+ * </p>
18
+ * <p>The max number of CIDR blocks included in the request is
19
+ * 1000.
20
+ * As a result, big updates require multiple API calls.</p>
21
+ * <p>
22
+ * <b> PUT and DELETE_IF_EXISTS</b>
23
+ * </p>
24
+ * <p>Use <code>ChangeCidrCollection</code> to perform the following actions:</p>
25
+ * <ul>
26
+ * <li>
27
+ * <p>
28
+ * <code>PUT</code>: Create a CIDR block within the specified collection.</p>
29
+ * </li>
30
+ * <li>
31
+ * <p>
32
+ * <code> DELETE_IF_EXISTS</code>: Delete an existing CIDR block from the
33
+ * collection.</p>
34
+ * </li>
35
+ * </ul>
36
+ * @example
37
+ * Use a bare-bones client and the command you need to make an API call.
38
+ * ```javascript
39
+ * import { Route53Client, ChangeCidrCollectionCommand } from "@aws-sdk/client-route-53"; // ES Modules import
40
+ * // const { Route53Client, ChangeCidrCollectionCommand } = require("@aws-sdk/client-route-53"); // CommonJS import
41
+ * const client = new Route53Client(config);
42
+ * const command = new ChangeCidrCollectionCommand(input);
43
+ * const response = await client.send(command);
44
+ * ```
45
+ *
46
+ * @see {@link ChangeCidrCollectionCommandInput} for command's `input` shape.
47
+ * @see {@link ChangeCidrCollectionCommandOutput} for command's `response` shape.
48
+ * @see {@link Route53ClientResolvedConfig | config} for Route53Client's `config` shape.
49
+ *
50
+ */
51
+ export declare class ChangeCidrCollectionCommand extends $Command<ChangeCidrCollectionCommandInput, ChangeCidrCollectionCommandOutput, Route53ClientResolvedConfig> {
52
+ readonly input: ChangeCidrCollectionCommandInput;
53
+ constructor(input: ChangeCidrCollectionCommandInput);
54
+ /**
55
+ * @internal
56
+ */
57
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ChangeCidrCollectionCommandInput, ChangeCidrCollectionCommandOutput>;
58
+ private serialize;
59
+ private deserialize;
60
+ }
@@ -7,88 +7,98 @@ export interface ChangeResourceRecordSetsCommandInput extends ChangeResourceReco
7
7
  export interface ChangeResourceRecordSetsCommandOutput extends ChangeResourceRecordSetsResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates, changes, or deletes a resource record set, which contains authoritative DNS information for a specified
11
- * domain name or subdomain name. For example, you can use <code>ChangeResourceRecordSets</code> to create a resource record set that
12
- * routes traffic for test.example.com to a web server that has an IP address of 192.0.2.44.</p>
13
- *
10
+ * <p>Creates, changes, or deletes a resource record set, which contains authoritative DNS
11
+ * information for a specified domain name or subdomain name. For example, you can use
12
+ * <code>ChangeResourceRecordSets</code> to create a resource record set that routes
13
+ * traffic for test.example.com to a web server that has an IP address of
14
+ * 192.0.2.44.</p>
14
15
  * <p>
15
16
  * <b>Deleting Resource Record Sets</b>
16
17
  * </p>
17
- * <p>To delete a resource record set, you must specify all the same values that you specified when you created it.</p>
18
- *
18
+ * <p>To delete a resource record set, you must specify all the same values that you
19
+ * specified when you created it.</p>
19
20
  * <p>
20
21
  * <b>Change Batches and Transactional Changes</b>
21
22
  * </p>
22
- * <p>The request body must include a document with a <code>ChangeResourceRecordSetsRequest</code> element.
23
- * The request body contains a list of change items, known as a change batch. Change batches are considered transactional changes.
24
- * Route 53 validates the changes in the request and then either makes all or none of the changes in the change batch request.
25
- * This ensures that DNS routing isn't adversely affected by partial changes to the resource record sets in a hosted zone. </p>
26
- * <p>For example, suppose a change batch request contains two changes: it deletes the <code>CNAME</code> resource record set for www.example.com and
27
- * creates an alias resource record set for www.example.com. If validation for both records succeeds, Route 53 deletes the first resource record set and
28
- * creates the second resource record set in a single operation. If validation for either the <code>DELETE</code> or the <code>CREATE</code> action fails,
29
- * then the request is canceled, and the original <code>CNAME</code> record continues to exist.</p>
23
+ * <p>The request body must include a document with a
24
+ * <code>ChangeResourceRecordSetsRequest</code> element. The request body contains a
25
+ * list of change items, known as a change batch. Change batches are considered
26
+ * transactional changes. Route 53 validates the changes in the request and then either
27
+ * makes all or none of the changes in the change batch request. This ensures that DNS
28
+ * routing isn't adversely affected by partial changes to the resource record sets in a
29
+ * hosted zone. </p>
30
+ * <p>For example, suppose a change batch request contains two changes: it deletes the
31
+ * <code>CNAME</code> resource record set for www.example.com and creates an alias
32
+ * resource record set for www.example.com. If validation for both records succeeds, Route
33
+ * 53 deletes the first resource record set and creates the second resource record set in a
34
+ * single operation. If validation for either the <code>DELETE</code> or the
35
+ * <code>CREATE</code> action fails, then the request is canceled, and the original
36
+ * <code>CNAME</code> record continues to exist.</p>
30
37
  * <note>
31
- * <p>If you try to delete the same resource record set more than once in a single change batch, Route 53 returns an <code>InvalidChangeBatch</code> error.</p>
38
+ * <p>If you try to delete the same resource record set more than once in a single
39
+ * change batch, Route 53 returns an <code>InvalidChangeBatch</code> error.</p>
32
40
  * </note>
33
- *
34
41
  * <p>
35
42
  * <b>Traffic Flow</b>
36
43
  * </p>
37
- * <p>To create resource record sets for complex routing configurations, use either the traffic flow visual editor in the
38
- * Route 53 console or the API actions for traffic policies and traffic policy instances. Save the configuration as a traffic policy,
39
- * then associate the traffic policy with one or more domain names (such as example.com) or subdomain names (such as www.example.com),
40
- * in the same hosted zone or in multiple hosted zones. You can roll back the updates if the new configuration isn't performing
41
- * as expected. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html">Using Traffic Flow to Route DNS Traffic</a>
42
- * in the <i>Amazon Route 53 Developer Guide</i>.</p>
43
- *
44
+ * <p>To create resource record sets for complex routing configurations, use either the
45
+ * traffic flow visual editor in the Route 53 console or the API actions for traffic
46
+ * policies and traffic policy instances. Save the configuration as a traffic policy, then
47
+ * associate the traffic policy with one or more domain names (such as example.com) or
48
+ * subdomain names (such as www.example.com), in the same hosted zone or in multiple hosted
49
+ * zones. You can roll back the updates if the new configuration isn't performing as
50
+ * expected. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html">Using Traffic Flow to Route
51
+ * DNS Traffic</a> in the <i>Amazon Route 53 Developer
52
+ * Guide</i>.</p>
44
53
  * <p>
45
54
  * <b>Create, Delete, and Upsert</b>
46
55
  * </p>
47
- * <p>Use <code>ChangeResourceRecordsSetsRequest</code> to perform the following actions:</p>
48
- * <ul>
56
+ * <p>Use <code>ChangeResourceRecordsSetsRequest</code> to perform the following
57
+ * actions:</p>
58
+ * <ul>
49
59
  * <li>
50
- * <p>
51
- * <code>CREATE</code>: Creates a resource record set that has the specified values.</p>
52
- * </li>
60
+ * <p>
61
+ * <code>CREATE</code>: Creates a resource record set that has the specified
62
+ * values.</p>
63
+ * </li>
53
64
  * <li>
54
- * <p>
55
- * <code>DELETE</code>: Deletes an existing resource record set that has the specified values.</p>
56
- * </li>
65
+ * <p>
66
+ * <code>DELETE</code>: Deletes an existing resource record set that has the
67
+ * specified values.</p>
68
+ * </li>
57
69
  * <li>
58
- * <p>
59
- * <code>UPSERT</code>: If a resource set exists Route 53 updates it with the values in the
60
- * request. </p>
61
- * </li>
70
+ * <p>
71
+ * <code>UPSERT</code>: If a resource set exists Route 53 updates it with the
72
+ * values in the request. </p>
73
+ * </li>
62
74
  * </ul>
63
- *
64
75
  * <p>
65
- * <b>Syntaxes for Creating, Updating, and Deleting Resource Record Sets</b>
76
+ * <b>Syntaxes for Creating, Updating, and Deleting Resource Record
77
+ * Sets</b>
66
78
  * </p>
67
- * <p>The syntax for a request depends on the type of resource record set that you want to create, delete, or update, such as
68
- * weighted, alias, or failover. The XML elements in your request must appear in the order listed in the syntax. </p>
69
- *
79
+ * <p>The syntax for a request depends on the type of resource record set that you want to
80
+ * create, delete, or update, such as weighted, alias, or failover. The XML elements in
81
+ * your request must appear in the order listed in the syntax. </p>
70
82
  *
71
83
  * <p>For an example for each type of resource record set, see "Examples."</p>
72
84
  *
73
- *
74
- * <p>Don't refer to the syntax in the "Parameter Syntax" section, which includes all of the elements for every kind of
75
- * resource record set that you can create, delete, or update by using <code>ChangeResourceRecordSets</code>. </p>
76
- *
85
+ * <p>Don't refer to the syntax in the "Parameter Syntax" section, which includes
86
+ * all of the elements for every kind of resource record set that you can create, delete,
87
+ * or update by using <code>ChangeResourceRecordSets</code>. </p>
77
88
  * <p>
78
89
  * <b>Change Propagation to Route 53 DNS Servers</b>
79
90
  * </p>
80
- * <p>When you submit a <code>ChangeResourceRecordSets</code> request, Route 53 propagates your changes to all of the
81
- * Route 53 authoritative DNS servers. While your changes are propagating, <code>GetChange</code> returns a status of
82
- * <code>PENDING</code>. When propagation is complete, <code>GetChange</code> returns a status of <code>INSYNC</code>.
83
- * Changes generally propagate to all Route 53 name servers within 60 seconds. For more information, see
84
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html">GetChange</a>.</p>
85
- *
91
+ * <p>When you submit a <code>ChangeResourceRecordSets</code> request, Route 53 propagates
92
+ * your changes to all of the Route 53 authoritative DNS servers. While your changes are
93
+ * propagating, <code>GetChange</code> returns a status of <code>PENDING</code>. When
94
+ * propagation is complete, <code>GetChange</code> returns a status of <code>INSYNC</code>.
95
+ * Changes generally propagate to all Route 53 name servers within 60 seconds. For more
96
+ * information, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html">GetChange</a>.</p>
86
97
  * <p>
87
98
  * <b>Limits on ChangeResourceRecordSets Requests</b>
88
99
  * </p>
89
- * <p>For information about the limits on a <code>ChangeResourceRecordSets</code> request, see
90
- * <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the
91
- * <i>Amazon Route 53 Developer Guide</i>.</p>
100
+ * <p>For information about the limits on a <code>ChangeResourceRecordSets</code> request,
101
+ * see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DNSLimitations.html">Limits</a> in the <i>Amazon Route 53 Developer Guide</i>.</p>
92
102
  * @example
93
103
  * Use a bare-bones client and the command you need to make an API call.
94
104
  * ```javascript
@@ -8,9 +8,8 @@ export interface ChangeTagsForResourceCommandOutput extends ChangeTagsForResourc
8
8
  }
9
9
  /**
10
10
  * <p>Adds, edits, or deletes tags for a health check or a hosted zone.</p>
11
- * <p>For information about using tags for cost allocation, see
12
- * <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation Tags</a>
13
- * in the <i>Billing and Cost Management User Guide</i>.</p>
11
+ * <p>For information about using tags for cost allocation, see <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html">Using Cost Allocation
12
+ * Tags</a> in the <i>Billing and Cost Management User Guide</i>.</p>
14
13
  * @example
15
14
  * Use a bare-bones client and the command you need to make an API call.
16
15
  * ```javascript
@@ -0,0 +1,37 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { CreateCidrCollectionRequest, CreateCidrCollectionResponse } from "../models/models_0";
4
+ import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client";
5
+ export interface CreateCidrCollectionCommandInput extends CreateCidrCollectionRequest {
6
+ }
7
+ export interface CreateCidrCollectionCommandOutput extends CreateCidrCollectionResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a CIDR collection in the
11
+ * current
12
+ * Amazon Web Services account.</p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { Route53Client, CreateCidrCollectionCommand } from "@aws-sdk/client-route-53"; // ES Modules import
17
+ * // const { Route53Client, CreateCidrCollectionCommand } = require("@aws-sdk/client-route-53"); // CommonJS import
18
+ * const client = new Route53Client(config);
19
+ * const command = new CreateCidrCollectionCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link CreateCidrCollectionCommandInput} for command's `input` shape.
24
+ * @see {@link CreateCidrCollectionCommandOutput} for command's `response` shape.
25
+ * @see {@link Route53ClientResolvedConfig | config} for Route53Client's `config` shape.
26
+ *
27
+ */
28
+ export declare class CreateCidrCollectionCommand extends $Command<CreateCidrCollectionCommandInput, CreateCidrCollectionCommandOutput, Route53ClientResolvedConfig> {
29
+ readonly input: CreateCidrCollectionCommandInput;
30
+ constructor(input: CreateCidrCollectionCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Route53ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCidrCollectionCommandInput, CreateCidrCollectionCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -8,37 +8,38 @@ export interface CreateHealthCheckCommandOutput extends CreateHealthCheckRespons
8
8
  }
9
9
  /**
10
10
  * <p>Creates a new health check.</p>
11
- * <p>For information about adding health checks to resource record sets, see
12
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId">HealthCheckId</a>
13
- * in
14
- * <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html">ChangeResourceRecordSets</a>. </p>
15
- *
11
+ * <p>For information about adding health checks to resource record sets, see <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ResourceRecordSet.html#Route53-Type-ResourceRecordSet-HealthCheckId">HealthCheckId</a> in <a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html">ChangeResourceRecordSets</a>. </p>
16
12
  * <p>
17
13
  * <b>ELB Load Balancers</b>
18
14
  * </p>
19
- * <p>If you're registering EC2 instances with an Elastic Load Balancing (ELB) load balancer, do not create Amazon Route 53 health checks for the
20
- * EC2 instances. When you register an EC2 instance with a load balancer, you configure settings for an ELB health check, which performs a
21
- * similar function to a Route 53 health check.</p>
22
- *
15
+ * <p>If you're registering EC2 instances with an Elastic Load Balancing (ELB) load
16
+ * balancer, do not create Amazon Route 53 health checks for the EC2 instances. When you
17
+ * register an EC2 instance with a load balancer, you configure settings for an ELB health
18
+ * check, which performs a similar function to a Route 53 health check.</p>
23
19
  * <p>
24
20
  * <b>Private Hosted Zones</b>
25
21
  * </p>
26
- * <p>You can associate health checks with failover resource record sets in a private hosted zone. Note the following:</p>
22
+ * <p>You can associate health checks with failover resource record sets in a private hosted
23
+ * zone. Note the following:</p>
27
24
  * <ul>
28
25
  * <li>
29
- * <p>Route 53 health checkers are outside the VPC. To check the health of an endpoint within a VPC by IP address, you must
30
- * assign a public IP address to the instance in the VPC.</p>
26
+ * <p>Route 53 health checkers are outside the VPC. To check the health of an
27
+ * endpoint within a VPC by IP address, you must assign a public IP address to the
28
+ * instance in the VPC.</p>
31
29
  * </li>
32
30
  * <li>
33
- * <p>You can configure a health checker to check the health of an external resource that the instance relies on, such as a
34
- * database server.</p>
31
+ * <p>You can configure a health checker to check the health of an external resource
32
+ * that the instance relies on, such as a database server.</p>
35
33
  * </li>
36
34
  * <li>
37
- * <p>You can create a CloudWatch metric, associate an alarm with the metric, and then create a health check that is based on the
38
- * state of the alarm. For example, you might create a CloudWatch metric that checks the status of the Amazon EC2 <code>StatusCheckFailed</code> metric,
39
- * 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
40
- * CloudWatch metrics and alarms by using the CloudWatch console, see the
41
- * <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html">Amazon CloudWatch User Guide</a>.</p>
35
+ * <p>You can create a CloudWatch metric, associate an alarm with the metric, and
36
+ * then create a health check that is based on the state of the alarm. For example,
37
+ * you might create a CloudWatch metric that checks the status of the Amazon EC2
38
+ * <code>StatusCheckFailed</code> metric, add an alarm to the metric, and then
39
+ * create a health check that is based on the state of the alarm. For information
40
+ * about creating CloudWatch metrics and alarms by using the CloudWatch console,
41
+ * see the <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html">Amazon
42
+ * CloudWatch User Guide</a>.</p>
42
43
  * </li>
43
44
  * </ul>
44
45
  * @example
@@ -7,60 +7,69 @@ export interface CreateHostedZoneCommandInput extends CreateHostedZoneRequest {
7
7
  export interface CreateHostedZoneCommandOutput extends CreateHostedZoneResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates a new public or private hosted zone. You create records in a public hosted zone to define how you want to route traffic
11
- * on the internet for a domain, such as example.com, and its subdomains (apex.example.com, acme.example.com). You create records in a
12
- * private hosted zone to define how you want to route traffic for a domain and its subdomains within one or more
13
- * Amazon Virtual Private Clouds (Amazon VPCs). </p>
10
+ * <p>Creates a new public or private hosted zone. You create records in a public hosted
11
+ * zone to define how you want to route traffic on the internet for a domain, such as
12
+ * example.com, and its subdomains (apex.example.com, acme.example.com). You create records
13
+ * in a private hosted zone to define how you want to route traffic for a domain and its
14
+ * subdomains within one or more Amazon Virtual Private Clouds (Amazon VPCs). </p>
14
15
  * <important>
15
- * <p>You can't convert a public hosted zone to a private hosted zone or vice versa. Instead, you must create a new hosted zone
16
- * with the same name and create new resource record sets.</p>
16
+ * <p>You can't convert a public hosted zone to a private hosted zone or vice versa.
17
+ * Instead, you must create a new hosted zone with the same name and create new
18
+ * resource record sets.</p>
17
19
  * </important>
18
- * <p>For more information about charges for hosted zones, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p>
20
+ * <p>For more information about charges for hosted zones, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p>
19
21
  * <p>Note the following:</p>
20
22
  * <ul>
21
23
  * <li>
22
- * <p>You can't create a hosted zone for a top-level domain (TLD) such as .com.</p>
24
+ * <p>You can't create a hosted zone for a top-level domain (TLD) such as
25
+ * .com.</p>
23
26
  * </li>
24
27
  * <li>
25
- * <p>For public hosted zones, Route 53 automatically creates a default SOA record and four NS records for the zone.
26
- * For more information about SOA and NS records, see
27
- * <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html">NS and SOA Records that Route 53 Creates for a Hosted Zone</a> in the
28
- * <i>Amazon Route 53 Developer Guide</i>.</p>
29
- * <p>If you want to use the same name servers for multiple public hosted zones, you can optionally associate a reusable delegation set
30
- * with the hosted zone. See the <code>DelegationSetId</code> element.</p>
28
+ * <p>For public hosted zones, Route 53 automatically creates a default SOA record
29
+ * and four NS records for the zone. For more information about SOA and NS records,
30
+ * see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html">NS and SOA Records
31
+ * that Route 53 Creates for a Hosted Zone</a> in the
32
+ * <i>Amazon Route 53 Developer Guide</i>.</p>
33
+ * <p>If you want to use the same name servers for multiple public hosted zones, you
34
+ * can optionally associate a reusable delegation set with the hosted zone. See the
35
+ * <code>DelegationSetId</code> element.</p>
31
36
  * </li>
32
37
  * <li>
33
- * <p>If your domain is registered with a registrar other than Route 53, you must update the name servers with your registrar to make
34
- * Route 53 the DNS service for the domain. For more information, see
35
- * <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html">Migrating DNS Service for an Existing Domain to Amazon Route 53</a> in the
36
- * <i>Amazon Route 53 Developer Guide</i>. </p>
38
+ * <p>If your domain is registered with a registrar other than Route 53,
39
+ * you must update the name servers with your registrar to make Route 53 the DNS
40
+ * service for the domain. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html">Migrating DNS Service
41
+ * for an Existing Domain to Amazon Route 53</a> in the
42
+ * <i>Amazon Route 53 Developer Guide</i>. </p>
37
43
  * </li>
38
44
  * </ul>
39
- * <p>When you submit a <code>CreateHostedZone</code> request, the initial status of the hosted zone is <code>PENDING</code>.
40
- * For public hosted zones, this means that the NS and SOA records are not yet available on all Route 53 DNS servers. When the
41
- * NS and SOA records are available, the status of the zone changes to <code>INSYNC</code>.</p>
42
- * <p>The <code>CreateHostedZone</code> request requires the caller to have an <code>ec2:DescribeVpcs</code> permission.</p>
45
+ * <p>When you submit a <code>CreateHostedZone</code> request, the initial status of the
46
+ * hosted zone is <code>PENDING</code>. For public hosted zones, this means that the NS and
47
+ * SOA records are not yet available on all Route 53 DNS servers. When the NS and
48
+ * SOA records are available, the status of the zone changes to <code>INSYNC</code>.</p>
49
+ * <p>The <code>CreateHostedZone</code> request requires the caller to have an
50
+ * <code>ec2:DescribeVpcs</code> permission.</p>
43
51
  * <note>
44
- * <p>When creating private hosted zones, the Amazon VPC must belong to the same partition
45
- * where the hosted zone is created. A partition is a group of Amazon Web Services Regions. Each Amazon Web Services account is scoped to one partition.</p>
52
+ * <p>When creating private hosted zones, the Amazon VPC must belong to the same
53
+ * partition where the hosted zone is created. A partition is a group of Amazon Web Services Regions. Each Amazon Web Services account is scoped to one
54
+ * partition.</p>
46
55
  * <p>The following are the supported partitions:</p>
47
56
  * <ul>
48
57
  * <li>
49
- * <p>
58
+ * <p>
50
59
  * <code>aws</code> - Amazon Web Services Regions</p>
51
- * </li>
60
+ * </li>
52
61
  * <li>
53
- * <p>
62
+ * <p>
54
63
  * <code>aws-cn</code> - China Regions</p>
55
- * </li>
64
+ * </li>
56
65
  * <li>
57
- * <p>
66
+ * <p>
58
67
  * <code>aws-us-gov</code> - Amazon Web Services GovCloud (US) Region</p>
59
- * </li>
68
+ * </li>
60
69
  * </ul>
61
70
  * <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Access Management</a>
62
71
  * in the <i>Amazon Web Services General Reference</i>.</p>
63
- * </note>
72
+ * </note>
64
73
  * @example
65
74
  * Use a bare-bones client and the command you need to make an API call.
66
75
  * ```javascript
@@ -7,7 +7,8 @@ export interface CreateKeySigningKeyCommandInput extends CreateKeySigningKeyRequ
7
7
  export interface CreateKeySigningKeyCommandOutput extends CreateKeySigningKeyResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates a new key-signing key (KSK) associated with a hosted zone. You can only have two KSKs per hosted zone.</p>
10
+ * <p>Creates a new key-signing key (KSK) associated with a hosted zone. You can only have
11
+ * two KSKs per hosted zone.</p>
11
12
  * @example
12
13
  * Use a bare-bones client and the command you need to make an API call.
13
14
  * ```javascript