@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,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { Route53GlobalResolverClient } from "../Route53GlobalResolverClient";
|
|
3
|
+
export interface Route53GlobalResolverPaginationConfiguration
|
|
4
|
+
extends PaginationConfiguration {
|
|
5
|
+
client: Route53GlobalResolverClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAccessSourcesCommandInput,
|
|
4
|
+
ListAccessSourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListAccessSourcesCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAccessSources: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListAccessSourcesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccessSourcesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAccessTokensCommandInput,
|
|
4
|
+
ListAccessTokensCommandOutput,
|
|
5
|
+
} from "../commands/ListAccessTokensCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAccessTokens: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListAccessTokensCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccessTokensCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDNSViewsCommandInput,
|
|
4
|
+
ListDNSViewsCommandOutput,
|
|
5
|
+
} from "../commands/ListDNSViewsCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDNSViews: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListDNSViewsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDNSViewsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFirewallDomainListsCommandInput,
|
|
4
|
+
ListFirewallDomainListsCommandOutput,
|
|
5
|
+
} from "../commands/ListFirewallDomainListsCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFirewallDomainLists: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListFirewallDomainListsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFirewallDomainListsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFirewallDomainsCommandInput,
|
|
4
|
+
ListFirewallDomainsCommandOutput,
|
|
5
|
+
} from "../commands/ListFirewallDomainsCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFirewallDomains: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListFirewallDomainsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFirewallDomainsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFirewallRulesCommandInput,
|
|
4
|
+
ListFirewallRulesCommandOutput,
|
|
5
|
+
} from "../commands/ListFirewallRulesCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFirewallRules: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListFirewallRulesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFirewallRulesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGlobalResolversCommandInput,
|
|
4
|
+
ListGlobalResolversCommandOutput,
|
|
5
|
+
} from "../commands/ListGlobalResolversCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListGlobalResolvers: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListGlobalResolversCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListGlobalResolversCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListHostedZoneAssociationsCommandInput,
|
|
4
|
+
ListHostedZoneAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/ListHostedZoneAssociationsCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListHostedZoneAssociations: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListHostedZoneAssociationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListHostedZoneAssociationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListManagedFirewallDomainListsCommandInput,
|
|
4
|
+
ListManagedFirewallDomainListsCommandOutput,
|
|
5
|
+
} from "../commands/ListManagedFirewallDomainListsCommand";
|
|
6
|
+
import { Route53GlobalResolverPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListManagedFirewallDomainLists: (
|
|
8
|
+
config: Route53GlobalResolverPaginationConfiguration,
|
|
9
|
+
input: ListManagedFirewallDomainListsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListManagedFirewallDomainListsCommandOutput>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAccessSourcesPaginator";
|
|
3
|
+
export * from "./ListAccessTokensPaginator";
|
|
4
|
+
export * from "./ListDNSViewsPaginator";
|
|
5
|
+
export * from "./ListFirewallDomainListsPaginator";
|
|
6
|
+
export * from "./ListFirewallDomainsPaginator";
|
|
7
|
+
export * from "./ListFirewallRulesPaginator";
|
|
8
|
+
export * from "./ListGlobalResolversPaginator";
|
|
9
|
+
export * from "./ListHostedZoneAssociationsPaginator";
|
|
10
|
+
export * from "./ListManagedFirewallDomainListsPaginator";
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: Route53GlobalResolverClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
18
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
23
|
+
| RequestHandler;
|
|
24
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
26
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
29
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
30
|
+
apiVersion: string;
|
|
31
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
33
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
34
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
35
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
profile?: string;
|
|
40
|
+
logger: import("@smithy/types").Logger;
|
|
41
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
46
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
47
|
+
userAgentAppId?:
|
|
48
|
+
| string
|
|
49
|
+
| undefined
|
|
50
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
51
|
+
retryStrategy?:
|
|
52
|
+
| import("@smithy/types").RetryStrategy
|
|
53
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
54
|
+
endpoint?:
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
70
|
+
| undefined;
|
|
71
|
+
endpointProvider: (
|
|
72
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
73
|
+
context?: {
|
|
74
|
+
logger?: import("@smithy/types").Logger;
|
|
75
|
+
}
|
|
76
|
+
) => import("@smithy/types").EndpointV2;
|
|
77
|
+
tls?: boolean;
|
|
78
|
+
serviceConfiguredEndpoint?: never;
|
|
79
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
80
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
81
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53GlobalResolverHttpAuthSchemeProvider;
|
|
82
|
+
credentials?:
|
|
83
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
84
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
85
|
+
signer?:
|
|
86
|
+
| import("@smithy/types").RequestSigner
|
|
87
|
+
| ((
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
89
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
90
|
+
signingEscapePath?: boolean;
|
|
91
|
+
systemClockOffset?: number;
|
|
92
|
+
signingRegion?: string;
|
|
93
|
+
signerConstructor?: new (
|
|
94
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
) => import("@smithy/types").RequestSigner;
|
|
97
|
+
};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: Route53GlobalResolverClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
11
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider:
|
|
13
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
|
+
| ((
|
|
15
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
|
+
defaultUserAgentProvider: (
|
|
18
|
+
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| RequestHandler
|
|
24
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
31
|
+
apiVersion: string;
|
|
32
|
+
cacheMiddleware?: boolean | undefined;
|
|
33
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
34
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
35
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
36
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
37
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
profile?: string;
|
|
41
|
+
logger: import("@smithy/types").Logger;
|
|
42
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
47
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
|
+
retryStrategy?:
|
|
49
|
+
| import("@smithy/types").RetryStrategy
|
|
50
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
51
|
+
endpoint?:
|
|
52
|
+
| ((
|
|
53
|
+
| string
|
|
54
|
+
| import("@smithy/types").Endpoint
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
|
+
| import("@smithy/types").EndpointV2
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
58
|
+
) &
|
|
59
|
+
(
|
|
60
|
+
| string
|
|
61
|
+
| import("@smithy/types").Provider<string>
|
|
62
|
+
| import("@smithy/types").Endpoint
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
|
+
| import("@smithy/types").EndpointV2
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
|
+
))
|
|
67
|
+
| undefined;
|
|
68
|
+
endpointProvider: (
|
|
69
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
70
|
+
context?: {
|
|
71
|
+
logger?: import("@smithy/types").Logger;
|
|
72
|
+
}
|
|
73
|
+
) => import("@smithy/types").EndpointV2;
|
|
74
|
+
tls?: boolean;
|
|
75
|
+
serviceConfiguredEndpoint?: never;
|
|
76
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
77
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53GlobalResolverHttpAuthSchemeProvider;
|
|
78
|
+
credentials?:
|
|
79
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
80
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
81
|
+
signer?:
|
|
82
|
+
| import("@smithy/types").RequestSigner
|
|
83
|
+
| ((
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
85
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
86
|
+
signingEscapePath?: boolean;
|
|
87
|
+
systemClockOffset?: number;
|
|
88
|
+
signingRegion?: string;
|
|
89
|
+
signerConstructor?: new (
|
|
90
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
92
|
+
) => import("@smithy/types").RequestSigner;
|
|
93
|
+
};
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: Route53GlobalResolverClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
10
|
+
| Record<string, unknown>
|
|
11
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
apiVersion: string;
|
|
14
|
+
cacheMiddleware?: boolean;
|
|
15
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
16
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
20
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
21
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
22
|
+
disableHostPrefix: boolean;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
28
|
+
profile?: string;
|
|
29
|
+
defaultUserAgentProvider: (
|
|
30
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
32
|
+
credentialDefaultProvider:
|
|
33
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
34
|
+
| ((
|
|
35
|
+
_: unknown
|
|
36
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
37
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
38
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
39
|
+
logger: import("@smithy/types").Logger;
|
|
40
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
45
|
+
defaultsMode:
|
|
46
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
47
|
+
| import("@smithy/types").Provider<
|
|
48
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
49
|
+
>;
|
|
50
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
51
|
+
userAgentAppId?:
|
|
52
|
+
| string
|
|
53
|
+
| undefined
|
|
54
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
55
|
+
retryStrategy?:
|
|
56
|
+
| import("@smithy/types").RetryStrategy
|
|
57
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
58
|
+
endpoint?:
|
|
59
|
+
| ((
|
|
60
|
+
| string
|
|
61
|
+
| import("@smithy/types").Endpoint
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
63
|
+
| import("@smithy/types").EndpointV2
|
|
64
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
65
|
+
) &
|
|
66
|
+
(
|
|
67
|
+
| string
|
|
68
|
+
| import("@smithy/types").Provider<string>
|
|
69
|
+
| import("@smithy/types").Endpoint
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
71
|
+
| import("@smithy/types").EndpointV2
|
|
72
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
73
|
+
))
|
|
74
|
+
| undefined;
|
|
75
|
+
endpointProvider: (
|
|
76
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
77
|
+
context?: {
|
|
78
|
+
logger?: import("@smithy/types").Logger;
|
|
79
|
+
}
|
|
80
|
+
) => import("@smithy/types").EndpointV2;
|
|
81
|
+
tls?: boolean;
|
|
82
|
+
serviceConfiguredEndpoint?: never;
|
|
83
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
84
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
85
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53GlobalResolverHttpAuthSchemeProvider;
|
|
86
|
+
credentials?:
|
|
87
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
88
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
89
|
+
signer?:
|
|
90
|
+
| import("@smithy/types").RequestSigner
|
|
91
|
+
| ((
|
|
92
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
93
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
|
+
signingEscapePath?: boolean;
|
|
95
|
+
systemClockOffset?: number;
|
|
96
|
+
signingRegion?: string;
|
|
97
|
+
signerConstructor?: new (
|
|
98
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
100
|
+
) => import("@smithy/types").RequestSigner;
|
|
101
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: Route53GlobalResolverClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (
|
|
10
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
11
|
+
context?: {
|
|
12
|
+
logger?: import("@smithy/types").Logger;
|
|
13
|
+
}
|
|
14
|
+
) => import("@smithy/types").EndpointV2;
|
|
15
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
16
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").Route53GlobalResolverHttpAuthSchemeProvider;
|
|
17
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
|
+
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
27
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Route53GlobalResolverExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: Route53GlobalResolverExtensionConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|