@aws-sdk/client-route53globalresolver 3.942.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.
- package/LICENSE +201 -0
- package/README.md +581 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +2674 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +36 -0
- package/dist-es/Route53GlobalResolver.js +101 -0
- package/dist-es/Route53GlobalResolverClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AssociateHostedZoneCommand.js +16 -0
- package/dist-es/commands/BatchCreateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/BatchDeleteFirewallRuleCommand.js +16 -0
- package/dist-es/commands/BatchUpdateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/CreateAccessSourceCommand.js +16 -0
- package/dist-es/commands/CreateAccessTokenCommand.js +16 -0
- package/dist-es/commands/CreateDNSViewCommand.js +16 -0
- package/dist-es/commands/CreateFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/CreateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/CreateGlobalResolverCommand.js +16 -0
- package/dist-es/commands/DeleteAccessSourceCommand.js +16 -0
- package/dist-es/commands/DeleteAccessTokenCommand.js +16 -0
- package/dist-es/commands/DeleteDNSViewCommand.js +16 -0
- package/dist-es/commands/DeleteFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/DeleteFirewallRuleCommand.js +16 -0
- package/dist-es/commands/DeleteGlobalResolverCommand.js +16 -0
- package/dist-es/commands/DisableDNSViewCommand.js +16 -0
- package/dist-es/commands/DisassociateHostedZoneCommand.js +16 -0
- package/dist-es/commands/EnableDNSViewCommand.js +16 -0
- package/dist-es/commands/GetAccessSourceCommand.js +16 -0
- package/dist-es/commands/GetAccessTokenCommand.js +16 -0
- package/dist-es/commands/GetDNSViewCommand.js +16 -0
- package/dist-es/commands/GetFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/GetFirewallRuleCommand.js +16 -0
- package/dist-es/commands/GetGlobalResolverCommand.js +16 -0
- package/dist-es/commands/GetHostedZoneAssociationCommand.js +16 -0
- package/dist-es/commands/GetManagedFirewallDomainListCommand.js +16 -0
- package/dist-es/commands/ImportFirewallDomainsCommand.js +16 -0
- package/dist-es/commands/ListAccessSourcesCommand.js +16 -0
- package/dist-es/commands/ListAccessTokensCommand.js +16 -0
- package/dist-es/commands/ListDNSViewsCommand.js +16 -0
- package/dist-es/commands/ListFirewallDomainListsCommand.js +16 -0
- package/dist-es/commands/ListFirewallDomainsCommand.js +16 -0
- package/dist-es/commands/ListFirewallRulesCommand.js +16 -0
- package/dist-es/commands/ListGlobalResolversCommand.js +16 -0
- package/dist-es/commands/ListHostedZoneAssociationsCommand.js +16 -0
- package/dist-es/commands/ListManagedFirewallDomainListsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateAccessSourceCommand.js +16 -0
- package/dist-es/commands/UpdateAccessTokenCommand.js +16 -0
- package/dist-es/commands/UpdateDNSViewCommand.js +16 -0
- package/dist-es/commands/UpdateFirewallDomainsCommand.js +16 -0
- package/dist-es/commands/UpdateFirewallRuleCommand.js +16 -0
- package/dist-es/commands/UpdateGlobalResolverCommand.js +16 -0
- package/dist-es/commands/UpdateHostedZoneAssociationCommand.js +16 -0
- package/dist-es/commands/index.js +47 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/Route53GlobalResolverServiceException.js +8 -0
- package/dist-es/models/enums.js +74 -0
- package/dist-es/models/errors.js +117 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAccessSourcesPaginator.js +4 -0
- package/dist-es/pagination/ListAccessTokensPaginator.js +4 -0
- package/dist-es/pagination/ListDNSViewsPaginator.js +4 -0
- package/dist-es/pagination/ListFirewallDomainListsPaginator.js +4 -0
- package/dist-es/pagination/ListFirewallDomainsPaginator.js +4 -0
- package/dist-es/pagination/ListFirewallRulesPaginator.js +4 -0
- package/dist-es/pagination/ListGlobalResolversPaginator.js +4 -0
- package/dist-es/pagination/ListHostedZoneAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListManagedFirewallDomainListsPaginator.js +4 -0
- package/dist-es/pagination/index.js +10 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +32 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1651 -0
- package/dist-types/Route53GlobalResolver.d.ts +342 -0
- package/dist-types/Route53GlobalResolverClient.d.ts +243 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AssociateHostedZoneCommand.d.ts +104 -0
- package/dist-types/commands/BatchCreateFirewallRuleCommand.d.ts +156 -0
- package/dist-types/commands/BatchDeleteFirewallRuleCommand.d.ts +113 -0
- package/dist-types/commands/BatchUpdateFirewallRuleCommand.d.ts +151 -0
- package/dist-types/commands/CreateAccessSourceCommand.d.ts +144 -0
- package/dist-types/commands/CreateAccessTokenCommand.d.ts +109 -0
- package/dist-types/commands/CreateDNSViewCommand.d.ts +115 -0
- package/dist-types/commands/CreateFirewallDomainListCommand.d.ts +109 -0
- package/dist-types/commands/CreateFirewallRuleCommand.d.ts +124 -0
- package/dist-types/commands/CreateGlobalResolverCommand.d.ts +116 -0
- package/dist-types/commands/DeleteAccessSourceCommand.d.ts +101 -0
- package/dist-types/commands/DeleteAccessTokenCommand.d.ts +91 -0
- package/dist-types/commands/DeleteDNSViewCommand.d.ts +103 -0
- package/dist-types/commands/DeleteFirewallDomainListCommand.d.ts +95 -0
- package/dist-types/commands/DeleteFirewallRuleCommand.d.ts +108 -0
- package/dist-types/commands/DeleteGlobalResolverCommand.d.ts +107 -0
- package/dist-types/commands/DisableDNSViewCommand.d.ts +103 -0
- package/dist-types/commands/DisassociateHostedZoneCommand.d.ts +100 -0
- package/dist-types/commands/EnableDNSViewCommand.d.ts +103 -0
- package/dist-types/commands/GetAccessSourceCommand.d.ts +98 -0
- package/dist-types/commands/GetAccessTokenCommand.d.ts +99 -0
- package/dist-types/commands/GetDNSViewCommand.d.ts +100 -0
- package/dist-types/commands/GetFirewallDomainListCommand.d.ts +99 -0
- package/dist-types/commands/GetFirewallRuleCommand.d.ts +105 -0
- package/dist-types/commands/GetGlobalResolverCommand.d.ts +104 -0
- package/dist-types/commands/GetHostedZoneAssociationCommand.d.ts +96 -0
- package/dist-types/commands/GetManagedFirewallDomainListCommand.d.ts +92 -0
- package/dist-types/commands/ImportFirewallDomainsCommand.d.ts +96 -0
- package/dist-types/commands/ListAccessSourcesCommand.d.ts +106 -0
- package/dist-types/commands/ListAccessTokensCommand.d.ts +109 -0
- package/dist-types/commands/ListDNSViewsCommand.d.ts +107 -0
- package/dist-types/commands/ListFirewallDomainListsCommand.d.ts +103 -0
- package/dist-types/commands/ListFirewallDomainsCommand.d.ts +94 -0
- package/dist-types/commands/ListFirewallRulesCommand.d.ts +117 -0
- package/dist-types/commands/ListGlobalResolversCommand.d.ts +107 -0
- package/dist-types/commands/ListHostedZoneAssociationsCommand.d.ts +103 -0
- package/dist-types/commands/ListManagedFirewallDomainListsCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +79 -0
- package/dist-types/commands/TagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +81 -0
- package/dist-types/commands/UpdateAccessSourceCommand.d.ts +108 -0
- package/dist-types/commands/UpdateAccessTokenCommand.d.ts +94 -0
- package/dist-types/commands/UpdateDNSViewCommand.d.ts +108 -0
- package/dist-types/commands/UpdateFirewallDomainsCommand.d.ts +98 -0
- package/dist-types/commands/UpdateFirewallRuleCommand.d.ts +119 -0
- package/dist-types/commands/UpdateGlobalResolverCommand.d.ts +110 -0
- package/dist-types/commands/UpdateHostedZoneAssociationCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +47 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/Route53GlobalResolverServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +194 -0
- package/dist-types/models/errors.d.ts +162 -0
- package/dist-types/models/models_0.d.ts +3784 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAccessSourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAccessTokensPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDNSViewsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFirewallDomainListsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFirewallDomainsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFirewallRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGlobalResolversPaginator.d.ts +7 -0
- package/dist-types/pagination/ListHostedZoneAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListManagedFirewallDomainListsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +10 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +192 -0
- package/dist-types/ts3.4/Route53GlobalResolver.d.ts +809 -0
- package/dist-types/ts3.4/Route53GlobalResolverClient.d.ts +408 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AssociateHostedZoneCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchCreateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchDeleteFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchUpdateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAccessSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAccessTokenCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateGlobalResolverCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAccessSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAccessTokenCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGlobalResolverCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisassociateHostedZoneCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAccessSourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetFirewallRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetGlobalResolverCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetHostedZoneAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetManagedFirewallDomainListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ImportFirewallDomainsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAccessSourcesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAccessTokensCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDNSViewsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListFirewallDomainListsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFirewallDomainsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFirewallRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListGlobalResolversCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListHostedZoneAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListManagedFirewallDomainListsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAccessSourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAccessTokenCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateDNSViewCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateFirewallDomainsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFirewallRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGlobalResolverCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateHostedZoneAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +47 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/Route53GlobalResolverServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +101 -0
- package/dist-types/ts3.4/models/errors.d.ts +69 -0
- package/dist-types/ts3.4/models/models_0.d.ts +879 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAccessSourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAccessTokensPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDNSViewsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFirewallDomainListsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFirewallDomainsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFirewallRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGlobalResolversPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListHostedZoneAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListManagedFirewallDomainListsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +10 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +199 -0
- package/package.json +99 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateHostedZoneAssociationInput, UpdateHostedZoneAssociationOutput } from "../models/models_0";
|
|
4
|
+
import { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53GlobalResolverClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateHostedZoneAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateHostedZoneAssociationCommandInput extends UpdateHostedZoneAssociationInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateHostedZoneAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateHostedZoneAssociationCommandOutput extends UpdateHostedZoneAssociationOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateHostedZoneAssociationCommand_base: {
|
|
25
|
+
new (input: UpdateHostedZoneAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateHostedZoneAssociationCommandInput, UpdateHostedZoneAssociationCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateHostedZoneAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateHostedZoneAssociationCommandInput, UpdateHostedZoneAssociationCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates the configuration of a hosted zone association.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { Route53GlobalResolverClient, UpdateHostedZoneAssociationCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import
|
|
35
|
+
* // const { Route53GlobalResolverClient, UpdateHostedZoneAssociationCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import
|
|
36
|
+
* // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver";
|
|
37
|
+
* const config = {}; // type is Route53GlobalResolverClientConfig
|
|
38
|
+
* const client = new Route53GlobalResolverClient(config);
|
|
39
|
+
* const input = { // UpdateHostedZoneAssociationInput
|
|
40
|
+
* hostedZoneAssociationId: "STRING_VALUE", // required
|
|
41
|
+
* name: "STRING_VALUE",
|
|
42
|
+
* };
|
|
43
|
+
* const command = new UpdateHostedZoneAssociationCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // UpdateHostedZoneAssociationOutput
|
|
46
|
+
* // id: "STRING_VALUE", // required
|
|
47
|
+
* // resourceArn: "STRING_VALUE", // required
|
|
48
|
+
* // hostedZoneId: "STRING_VALUE", // required
|
|
49
|
+
* // hostedZoneName: "STRING_VALUE", // required
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // status: "CREATING" || "OPERATIONAL" || "DELETING", // required
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param UpdateHostedZoneAssociationCommandInput - {@link UpdateHostedZoneAssociationCommandInput}
|
|
59
|
+
* @returns {@link UpdateHostedZoneAssociationCommandOutput}
|
|
60
|
+
* @see {@link UpdateHostedZoneAssociationCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link UpdateHostedZoneAssociationCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
65
|
+
* <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ConflictException} (client fault)
|
|
68
|
+
* <p>The request conflicts with the current state of the resource. This can occur when trying to modify a resource that is not in a valid state for the requested operation.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalServerException} (server fault)
|
|
71
|
+
* <p>An internal server error occurred. Try again later.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
74
|
+
* <p>The specified resource was not found. Verify the resource ID and try again.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
77
|
+
* <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ValidationException} (client fault)
|
|
80
|
+
* <p>The input parameters are invalid. Check the parameter values and try again.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link Route53GlobalResolverServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Route53GlobalResolver service.</p>
|
|
84
|
+
*
|
|
85
|
+
*
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class UpdateHostedZoneAssociationCommand extends UpdateHostedZoneAssociationCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: UpdateHostedZoneAssociationInput;
|
|
93
|
+
output: UpdateHostedZoneAssociationOutput;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: UpdateHostedZoneAssociationCommandInput;
|
|
97
|
+
output: UpdateHostedZoneAssociationCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export * from "./AssociateHostedZoneCommand";
|
|
2
|
+
export * from "./BatchCreateFirewallRuleCommand";
|
|
3
|
+
export * from "./BatchDeleteFirewallRuleCommand";
|
|
4
|
+
export * from "./BatchUpdateFirewallRuleCommand";
|
|
5
|
+
export * from "./CreateAccessSourceCommand";
|
|
6
|
+
export * from "./CreateAccessTokenCommand";
|
|
7
|
+
export * from "./CreateDNSViewCommand";
|
|
8
|
+
export * from "./CreateFirewallDomainListCommand";
|
|
9
|
+
export * from "./CreateFirewallRuleCommand";
|
|
10
|
+
export * from "./CreateGlobalResolverCommand";
|
|
11
|
+
export * from "./DeleteAccessSourceCommand";
|
|
12
|
+
export * from "./DeleteAccessTokenCommand";
|
|
13
|
+
export * from "./DeleteDNSViewCommand";
|
|
14
|
+
export * from "./DeleteFirewallDomainListCommand";
|
|
15
|
+
export * from "./DeleteFirewallRuleCommand";
|
|
16
|
+
export * from "./DeleteGlobalResolverCommand";
|
|
17
|
+
export * from "./DisableDNSViewCommand";
|
|
18
|
+
export * from "./DisassociateHostedZoneCommand";
|
|
19
|
+
export * from "./EnableDNSViewCommand";
|
|
20
|
+
export * from "./GetAccessSourceCommand";
|
|
21
|
+
export * from "./GetAccessTokenCommand";
|
|
22
|
+
export * from "./GetDNSViewCommand";
|
|
23
|
+
export * from "./GetFirewallDomainListCommand";
|
|
24
|
+
export * from "./GetFirewallRuleCommand";
|
|
25
|
+
export * from "./GetGlobalResolverCommand";
|
|
26
|
+
export * from "./GetHostedZoneAssociationCommand";
|
|
27
|
+
export * from "./GetManagedFirewallDomainListCommand";
|
|
28
|
+
export * from "./ImportFirewallDomainsCommand";
|
|
29
|
+
export * from "./ListAccessSourcesCommand";
|
|
30
|
+
export * from "./ListAccessTokensCommand";
|
|
31
|
+
export * from "./ListDNSViewsCommand";
|
|
32
|
+
export * from "./ListFirewallDomainListsCommand";
|
|
33
|
+
export * from "./ListFirewallDomainsCommand";
|
|
34
|
+
export * from "./ListFirewallRulesCommand";
|
|
35
|
+
export * from "./ListGlobalResolversCommand";
|
|
36
|
+
export * from "./ListHostedZoneAssociationsCommand";
|
|
37
|
+
export * from "./ListManagedFirewallDomainListsCommand";
|
|
38
|
+
export * from "./ListTagsForResourceCommand";
|
|
39
|
+
export * from "./TagResourceCommand";
|
|
40
|
+
export * from "./UntagResourceCommand";
|
|
41
|
+
export * from "./UpdateAccessSourceCommand";
|
|
42
|
+
export * from "./UpdateAccessTokenCommand";
|
|
43
|
+
export * from "./UpdateDNSViewCommand";
|
|
44
|
+
export * from "./UpdateFirewallDomainsCommand";
|
|
45
|
+
export * from "./UpdateFirewallRuleCommand";
|
|
46
|
+
export * from "./UpdateGlobalResolverCommand";
|
|
47
|
+
export * from "./UpdateHostedZoneAssociationCommand";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
7
|
+
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
8
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
9
|
+
}
|
|
10
|
+
export type ClientResolvedEndpointParameters = Omit<ClientInputEndpointParameters, "endpoint"> & {
|
|
11
|
+
defaultSigningName: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
|
|
14
|
+
export declare const commonParams: {
|
|
15
|
+
readonly UseFIPS: {
|
|
16
|
+
readonly type: "builtInParams";
|
|
17
|
+
readonly name: "useFipsEndpoint";
|
|
18
|
+
};
|
|
19
|
+
readonly Endpoint: {
|
|
20
|
+
readonly type: "builtInParams";
|
|
21
|
+
readonly name: "endpoint";
|
|
22
|
+
};
|
|
23
|
+
readonly Region: {
|
|
24
|
+
readonly type: "builtInParams";
|
|
25
|
+
readonly name: "region";
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
+
UseFIPS?: boolean | undefined;
|
|
30
|
+
Endpoint?: string | undefined;
|
|
31
|
+
Region?: string | undefined;
|
|
32
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
/**
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export interface Route53GlobalResolverExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
|
|
9
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* <p> Amazon Route 53 Global Resolver is a global, internet-accessible DNS resolver that enables customers to resolve and forward traffic for both public and private domains while ensuring security and authenticity of queries over the internet. Route 53 Global Resolver supports DNS-over-port 53 (Do53), DNS-over-TLS (DoT), and DNS-over-HTTPS (DoH) protocols through global anycast IP addresses. </p>
|
|
3
|
+
*
|
|
4
|
+
* @packageDocumentation
|
|
5
|
+
*/
|
|
6
|
+
export * from "./Route53GlobalResolverClient";
|
|
7
|
+
export * from "./Route53GlobalResolver";
|
|
8
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
|
+
export type { Route53GlobalResolverExtensionConfiguration } from "./extensionConfiguration";
|
|
11
|
+
export * from "./commands";
|
|
12
|
+
export * from "./pagination";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
16
|
+
export { Route53GlobalResolverServiceException } from "./models/Route53GlobalResolverServiceException";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*
|
|
7
|
+
* Base exception class for all service exceptions from Route53GlobalResolver service.
|
|
8
|
+
*/
|
|
9
|
+
export declare class Route53GlobalResolverServiceException extends __ServiceException {
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(options: __ServiceExceptionOptions);
|
|
14
|
+
}
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const IpAddressType: {
|
|
6
|
+
readonly IPV4: "IPV4";
|
|
7
|
+
readonly IPV6: "IPV6";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const DnsProtocol: {
|
|
18
|
+
readonly DO53: "DO53";
|
|
19
|
+
readonly DOH: "DOH";
|
|
20
|
+
readonly DOT: "DOT";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type DnsProtocol = (typeof DnsProtocol)[keyof typeof DnsProtocol];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const CRResourceStatus: {
|
|
31
|
+
readonly CREATING: "CREATING";
|
|
32
|
+
readonly DELETING: "DELETING";
|
|
33
|
+
readonly OPERATIONAL: "OPERATIONAL";
|
|
34
|
+
readonly UPDATING: "UPDATING";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type CRResourceStatus = (typeof CRResourceStatus)[keyof typeof CRResourceStatus];
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
* @enum
|
|
43
|
+
*/
|
|
44
|
+
export declare const ValidationExceptionReason: {
|
|
45
|
+
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
46
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
47
|
+
readonly OTHER: "OTHER";
|
|
48
|
+
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* @enum
|
|
57
|
+
*/
|
|
58
|
+
export declare const TokenStatus: {
|
|
59
|
+
readonly CREATING: "CREATING";
|
|
60
|
+
readonly DELETING: "DELETING";
|
|
61
|
+
readonly OPERATIONAL: "OPERATIONAL";
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export type TokenStatus = (typeof TokenStatus)[keyof typeof TokenStatus];
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
* @enum
|
|
70
|
+
*/
|
|
71
|
+
export declare const HostedZoneAssociationStatus: {
|
|
72
|
+
readonly CREATING: "CREATING";
|
|
73
|
+
readonly DELETING: "DELETING";
|
|
74
|
+
readonly OPERATIONAL: "OPERATIONAL";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type HostedZoneAssociationStatus = (typeof HostedZoneAssociationStatus)[keyof typeof HostedZoneAssociationStatus];
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* @enum
|
|
83
|
+
*/
|
|
84
|
+
export declare const FirewallRuleAction: {
|
|
85
|
+
readonly ALERT: "ALERT";
|
|
86
|
+
readonly ALLOW: "ALLOW";
|
|
87
|
+
readonly BLOCK: "BLOCK";
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export type FirewallRuleAction = (typeof FirewallRuleAction)[keyof typeof FirewallRuleAction];
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
* @enum
|
|
96
|
+
*/
|
|
97
|
+
export declare const BlockOverrideDnsQueryType: {
|
|
98
|
+
readonly CNAME: "CNAME";
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export type BlockOverrideDnsQueryType = (typeof BlockOverrideDnsQueryType)[keyof typeof BlockOverrideDnsQueryType];
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
* @enum
|
|
107
|
+
*/
|
|
108
|
+
export declare const FirewallBlockResponse: {
|
|
109
|
+
readonly NODATA: "NODATA";
|
|
110
|
+
readonly NXDOMAIN: "NXDOMAIN";
|
|
111
|
+
readonly OVERRIDE: "OVERRIDE";
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export type FirewallBlockResponse = (typeof FirewallBlockResponse)[keyof typeof FirewallBlockResponse];
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
* @enum
|
|
120
|
+
*/
|
|
121
|
+
export declare const ConfidenceThreshold: {
|
|
122
|
+
readonly HIGH: "HIGH";
|
|
123
|
+
readonly LOW: "LOW";
|
|
124
|
+
readonly MEDIUM: "MEDIUM";
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export type ConfidenceThreshold = (typeof ConfidenceThreshold)[keyof typeof ConfidenceThreshold];
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
* @enum
|
|
133
|
+
*/
|
|
134
|
+
export declare const DnsAdvancedProtection: {
|
|
135
|
+
readonly DGA: "DGA";
|
|
136
|
+
readonly DNS_TUNNELING: "DNS_TUNNELING";
|
|
137
|
+
};
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
export type DnsAdvancedProtection = (typeof DnsAdvancedProtection)[keyof typeof DnsAdvancedProtection];
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
* @enum
|
|
145
|
+
*/
|
|
146
|
+
export declare const DnsSecValidationType: {
|
|
147
|
+
readonly DISABLED: "DISABLED";
|
|
148
|
+
readonly ENABLED: "ENABLED";
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
export type DnsSecValidationType = (typeof DnsSecValidationType)[keyof typeof DnsSecValidationType];
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* @enum
|
|
157
|
+
*/
|
|
158
|
+
export declare const EdnsClientSubnetType: {
|
|
159
|
+
readonly DISABLED: "DISABLED";
|
|
160
|
+
readonly ENABLED: "ENABLED";
|
|
161
|
+
};
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
export type EdnsClientSubnetType = (typeof EdnsClientSubnetType)[keyof typeof EdnsClientSubnetType];
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
* @enum
|
|
169
|
+
*/
|
|
170
|
+
export declare const FirewallRulesFailOpenType: {
|
|
171
|
+
readonly DISABLED: "DISABLED";
|
|
172
|
+
readonly ENABLED: "ENABLED";
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
export type FirewallRulesFailOpenType = (typeof FirewallRulesFailOpenType)[keyof typeof FirewallRulesFailOpenType];
|
|
178
|
+
/**
|
|
179
|
+
* @public
|
|
180
|
+
* @enum
|
|
181
|
+
*/
|
|
182
|
+
export declare const ProfileResourceStatus: {
|
|
183
|
+
readonly CREATING: "CREATING";
|
|
184
|
+
readonly DELETING: "DELETING";
|
|
185
|
+
readonly DISABLED: "DISABLED";
|
|
186
|
+
readonly DISABLING: "DISABLING";
|
|
187
|
+
readonly ENABLING: "ENABLING";
|
|
188
|
+
readonly OPERATIONAL: "OPERATIONAL";
|
|
189
|
+
readonly UPDATING: "UPDATING";
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export type ProfileResourceStatus = (typeof ProfileResourceStatus)[keyof typeof ProfileResourceStatus];
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
4
|
+
import { Route53GlobalResolverServiceException as __BaseException } from "./Route53GlobalResolverServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p>The request conflicts with the current state of the resource. This can occur when trying to modify a resource that is not in a valid state for the requested operation.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class ConflictException extends __BaseException {
|
|
22
|
+
readonly name: "ConflictException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
/**
|
|
25
|
+
* <p>The ID of the conflicting resource.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
resourceId?: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The type of the conflicting resource.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
resourceType: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>An internal server error occurred. Try again later.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class InternalServerException extends __BaseException {
|
|
44
|
+
readonly name: "InternalServerException";
|
|
45
|
+
readonly $fault: "server";
|
|
46
|
+
$retryable: {};
|
|
47
|
+
/**
|
|
48
|
+
* <p>Number of seconds in which the caller can retry the request.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
retryAfterSeconds?: number | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p>The specified resource was not found. Verify the resource ID and try again.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
62
|
+
readonly name: "ResourceNotFoundException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
/**
|
|
65
|
+
* <p>The unique ID of the resource referenced in the failed request.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
resourceId?: string | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The resource type of the resource referenced in the failed request.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
resourceType: string | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* <p>The request would exceed one or more service quotas. Check your current usage and quotas, then try again.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
84
|
+
readonly name: "ServiceQuotaExceededException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
/**
|
|
87
|
+
* <p>The unique ID of the resource referenced in the failed request.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
resourceId?: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>The resource type of the resource referenced in the failed request.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
resourceType: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* <p>The code for the AWS service that owns the quota.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
serviceCode?: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The quota code recognized by the AWS Service Quotas service.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
quotaCode?: string | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
109
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export declare class ThrottlingException extends __BaseException {
|
|
116
|
+
readonly name: "ThrottlingException";
|
|
117
|
+
readonly $fault: "client";
|
|
118
|
+
$retryable: {
|
|
119
|
+
throttling: boolean;
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* <p>The code for the AWS service that owns the quota.</p>
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
serviceCode?: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* <p>The quota code recognized by the AWS Service Quotas service.</p>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
quotaCode?: string | undefined;
|
|
131
|
+
/**
|
|
132
|
+
* <p>Number of seconds in which the caller can retry the request.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
retryAfterSeconds?: number | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
139
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* <p>The input parameters are invalid. Check the parameter values and try again.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export declare class ValidationException extends __BaseException {
|
|
146
|
+
readonly name: "ValidationException";
|
|
147
|
+
readonly $fault: "client";
|
|
148
|
+
/**
|
|
149
|
+
* <p>Reason the request failed validation.</p>
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
reason: ValidationExceptionReason | undefined;
|
|
153
|
+
/**
|
|
154
|
+
* <p>The list of fields that aren't valid.</p>
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* @internal
|
|
160
|
+
*/
|
|
161
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
162
|
+
}
|