@aws-sdk/client-bcm-data-exports 3.458.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 +308 -0
- package/dist-cjs/BCMDataExports.js +35 -0
- package/dist-cjs/BCMDataExportsClient.js +43 -0
- package/dist-cjs/commands/CreateExportCommand.js +50 -0
- package/dist-cjs/commands/DeleteExportCommand.js +50 -0
- package/dist-cjs/commands/GetExecutionCommand.js +50 -0
- package/dist-cjs/commands/GetExportCommand.js +50 -0
- package/dist-cjs/commands/GetTableCommand.js +50 -0
- package/dist-cjs/commands/ListExecutionsCommand.js +50 -0
- package/dist-cjs/commands/ListExportsCommand.js +50 -0
- package/dist-cjs/commands/ListTablesCommand.js +50 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +50 -0
- package/dist-cjs/commands/TagResourceCommand.js +50 -0
- package/dist-cjs/commands/UntagResourceCommand.js +50 -0
- package/dist-cjs/commands/UpdateExportCommand.js +50 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +11 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/BCMDataExportsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +126 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListExecutionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListExportsPaginator.js +29 -0
- package/dist-cjs/pagination/ListTablesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_1.js +775 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/BCMDataExports.js +31 -0
- package/dist-es/BCMDataExportsClient.js +39 -0
- package/dist-es/commands/CreateExportCommand.js +46 -0
- package/dist-es/commands/DeleteExportCommand.js +46 -0
- package/dist-es/commands/GetExecutionCommand.js +46 -0
- package/dist-es/commands/GetExportCommand.js +46 -0
- package/dist-es/commands/GetTableCommand.js +46 -0
- package/dist-es/commands/ListExecutionsCommand.js +46 -0
- package/dist-es/commands/ListExportsCommand.js +46 -0
- package/dist-es/commands/ListTablesCommand.js +46 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-es/commands/TagResourceCommand.js +46 -0
- package/dist-es/commands/UntagResourceCommand.js +46 -0
- package/dist-es/commands/UpdateExportCommand.js +46 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +7 -0
- package/dist-es/endpoint/endpointResolver.js +8 -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/BCMDataExportsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +118 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListExecutionsPaginator.js +25 -0
- package/dist-es/pagination/ListExportsPaginator.js +25 -0
- package/dist-es/pagination/ListTablesPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +748 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/BCMDataExports.d.ts +101 -0
- package/dist-types/BCMDataExportsClient.d.ts +188 -0
- package/dist-types/commands/CreateExportCommand.d.ts +138 -0
- package/dist-types/commands/DeleteExportCommand.d.ts +87 -0
- package/dist-types/commands/GetExecutionCommand.d.ts +124 -0
- package/dist-types/commands/GetExportCommand.d.ts +122 -0
- package/dist-types/commands/GetTableCommand.d.ts +99 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +101 -0
- package/dist-types/commands/ListExportsCommand.d.ts +98 -0
- package/dist-types/commands/ListTablesCommand.d.ts +101 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
- package/dist-types/commands/TagResourceCommand.d.ts +91 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
- package/dist-types/commands/UpdateExportCommand.d.ts +117 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +20 -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 +8 -0
- package/dist-types/index.d.ts +22 -0
- package/dist-types/models/BCMDataExportsServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +921 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +110 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/BCMDataExports.d.ts +211 -0
- package/dist-types/ts3.4/BCMDataExportsClient.d.ts +191 -0
- package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTableCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +31 -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 +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/BCMDataExportsServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +277 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +102 -0
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
AwsAuthInputConfig,
|
|
7
|
+
AwsAuthResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-signing";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EndpointInputConfig,
|
|
20
|
+
EndpointResolvedConfig,
|
|
21
|
+
} from "@smithy/middleware-endpoint";
|
|
22
|
+
import {
|
|
23
|
+
RetryInputConfig,
|
|
24
|
+
RetryResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-retry";
|
|
26
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
27
|
+
import {
|
|
28
|
+
Client as __Client,
|
|
29
|
+
DefaultsMode as __DefaultsMode,
|
|
30
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
31
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
32
|
+
} from "@smithy/smithy-client";
|
|
33
|
+
import {
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
HashConstructor as __HashConstructor,
|
|
40
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
|
+
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
43
|
+
Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CreateExportCommandInput,
|
|
50
|
+
CreateExportCommandOutput,
|
|
51
|
+
} from "./commands/CreateExportCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteExportCommandInput,
|
|
54
|
+
DeleteExportCommandOutput,
|
|
55
|
+
} from "./commands/DeleteExportCommand";
|
|
56
|
+
import {
|
|
57
|
+
GetExecutionCommandInput,
|
|
58
|
+
GetExecutionCommandOutput,
|
|
59
|
+
} from "./commands/GetExecutionCommand";
|
|
60
|
+
import {
|
|
61
|
+
GetExportCommandInput,
|
|
62
|
+
GetExportCommandOutput,
|
|
63
|
+
} from "./commands/GetExportCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetTableCommandInput,
|
|
66
|
+
GetTableCommandOutput,
|
|
67
|
+
} from "./commands/GetTableCommand";
|
|
68
|
+
import {
|
|
69
|
+
ListExecutionsCommandInput,
|
|
70
|
+
ListExecutionsCommandOutput,
|
|
71
|
+
} from "./commands/ListExecutionsCommand";
|
|
72
|
+
import {
|
|
73
|
+
ListExportsCommandInput,
|
|
74
|
+
ListExportsCommandOutput,
|
|
75
|
+
} from "./commands/ListExportsCommand";
|
|
76
|
+
import {
|
|
77
|
+
ListTablesCommandInput,
|
|
78
|
+
ListTablesCommandOutput,
|
|
79
|
+
} from "./commands/ListTablesCommand";
|
|
80
|
+
import {
|
|
81
|
+
ListTagsForResourceCommandInput,
|
|
82
|
+
ListTagsForResourceCommandOutput,
|
|
83
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
84
|
+
import {
|
|
85
|
+
TagResourceCommandInput,
|
|
86
|
+
TagResourceCommandOutput,
|
|
87
|
+
} from "./commands/TagResourceCommand";
|
|
88
|
+
import {
|
|
89
|
+
UntagResourceCommandInput,
|
|
90
|
+
UntagResourceCommandOutput,
|
|
91
|
+
} from "./commands/UntagResourceCommand";
|
|
92
|
+
import {
|
|
93
|
+
UpdateExportCommandInput,
|
|
94
|
+
UpdateExportCommandOutput,
|
|
95
|
+
} from "./commands/UpdateExportCommand";
|
|
96
|
+
import {
|
|
97
|
+
ClientInputEndpointParameters,
|
|
98
|
+
ClientResolvedEndpointParameters,
|
|
99
|
+
EndpointParameters,
|
|
100
|
+
} from "./endpoint/EndpointParameters";
|
|
101
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
102
|
+
export { __Client };
|
|
103
|
+
export type ServiceInputTypes =
|
|
104
|
+
| CreateExportCommandInput
|
|
105
|
+
| DeleteExportCommandInput
|
|
106
|
+
| GetExecutionCommandInput
|
|
107
|
+
| GetExportCommandInput
|
|
108
|
+
| GetTableCommandInput
|
|
109
|
+
| ListExecutionsCommandInput
|
|
110
|
+
| ListExportsCommandInput
|
|
111
|
+
| ListTablesCommandInput
|
|
112
|
+
| ListTagsForResourceCommandInput
|
|
113
|
+
| TagResourceCommandInput
|
|
114
|
+
| UntagResourceCommandInput
|
|
115
|
+
| UpdateExportCommandInput;
|
|
116
|
+
export type ServiceOutputTypes =
|
|
117
|
+
| CreateExportCommandOutput
|
|
118
|
+
| DeleteExportCommandOutput
|
|
119
|
+
| GetExecutionCommandOutput
|
|
120
|
+
| GetExportCommandOutput
|
|
121
|
+
| GetTableCommandOutput
|
|
122
|
+
| ListExecutionsCommandOutput
|
|
123
|
+
| ListExportsCommandOutput
|
|
124
|
+
| ListTablesCommandOutput
|
|
125
|
+
| ListTagsForResourceCommandOutput
|
|
126
|
+
| TagResourceCommandOutput
|
|
127
|
+
| UntagResourceCommandOutput
|
|
128
|
+
| UpdateExportCommandOutput;
|
|
129
|
+
export interface ClientDefaults
|
|
130
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
131
|
+
requestHandler?: __HttpHandler;
|
|
132
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
133
|
+
urlParser?: __UrlParser;
|
|
134
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
135
|
+
streamCollector?: __StreamCollector;
|
|
136
|
+
base64Decoder?: __Decoder;
|
|
137
|
+
base64Encoder?: __Encoder;
|
|
138
|
+
utf8Decoder?: __Decoder;
|
|
139
|
+
utf8Encoder?: __Encoder;
|
|
140
|
+
runtime?: string;
|
|
141
|
+
disableHostPrefix?: boolean;
|
|
142
|
+
serviceId?: string;
|
|
143
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
144
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
145
|
+
region?: string | __Provider<string>;
|
|
146
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
147
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
148
|
+
maxAttempts?: number | __Provider<number>;
|
|
149
|
+
retryMode?: string | __Provider<string>;
|
|
150
|
+
logger?: __Logger;
|
|
151
|
+
extensions?: RuntimeExtension[];
|
|
152
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
153
|
+
}
|
|
154
|
+
export type BCMDataExportsClientConfigType = Partial<
|
|
155
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
156
|
+
> &
|
|
157
|
+
ClientDefaults &
|
|
158
|
+
RegionInputConfig &
|
|
159
|
+
EndpointInputConfig<EndpointParameters> &
|
|
160
|
+
RetryInputConfig &
|
|
161
|
+
HostHeaderInputConfig &
|
|
162
|
+
AwsAuthInputConfig &
|
|
163
|
+
UserAgentInputConfig &
|
|
164
|
+
ClientInputEndpointParameters;
|
|
165
|
+
export interface BCMDataExportsClientConfig
|
|
166
|
+
extends BCMDataExportsClientConfigType {}
|
|
167
|
+
export type BCMDataExportsClientResolvedConfigType =
|
|
168
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
169
|
+
Required<ClientDefaults> &
|
|
170
|
+
RuntimeExtensionsConfig &
|
|
171
|
+
RegionResolvedConfig &
|
|
172
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
173
|
+
RetryResolvedConfig &
|
|
174
|
+
HostHeaderResolvedConfig &
|
|
175
|
+
AwsAuthResolvedConfig &
|
|
176
|
+
UserAgentResolvedConfig &
|
|
177
|
+
ClientResolvedEndpointParameters;
|
|
178
|
+
export interface BCMDataExportsClientResolvedConfig
|
|
179
|
+
extends BCMDataExportsClientResolvedConfigType {}
|
|
180
|
+
export declare class BCMDataExportsClient extends __Client<
|
|
181
|
+
__HttpHandlerOptions,
|
|
182
|
+
ServiceInputTypes,
|
|
183
|
+
ServiceOutputTypes,
|
|
184
|
+
BCMDataExportsClientResolvedConfig
|
|
185
|
+
> {
|
|
186
|
+
readonly config: BCMDataExportsClientResolvedConfig;
|
|
187
|
+
constructor(
|
|
188
|
+
...[configuration]: __CheckOptionalClientConfig<BCMDataExportsClientConfig>
|
|
189
|
+
);
|
|
190
|
+
destroy(): void;
|
|
191
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { CreateExportRequest, CreateExportResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface CreateExportCommandInput extends CreateExportRequest {}
|
|
17
|
+
export interface CreateExportCommandOutput
|
|
18
|
+
extends CreateExportResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class CreateExportCommand extends $Command<
|
|
21
|
+
CreateExportCommandInput,
|
|
22
|
+
CreateExportCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: CreateExportCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: CreateExportCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateExportCommandInput, CreateExportCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { DeleteExportRequest, DeleteExportResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteExportCommandInput extends DeleteExportRequest {}
|
|
17
|
+
export interface DeleteExportCommandOutput
|
|
18
|
+
extends DeleteExportResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DeleteExportCommand extends $Command<
|
|
21
|
+
DeleteExportCommandInput,
|
|
22
|
+
DeleteExportCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DeleteExportCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DeleteExportCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteExportCommandInput, DeleteExportCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { GetExecutionRequest, GetExecutionResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetExecutionCommandInput extends GetExecutionRequest {}
|
|
17
|
+
export interface GetExecutionCommandOutput
|
|
18
|
+
extends GetExecutionResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetExecutionCommand extends $Command<
|
|
21
|
+
GetExecutionCommandInput,
|
|
22
|
+
GetExecutionCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetExecutionCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetExecutionCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetExecutionCommandInput, GetExecutionCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { GetExportRequest, GetExportResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetExportCommandInput extends GetExportRequest {}
|
|
17
|
+
export interface GetExportCommandOutput
|
|
18
|
+
extends GetExportResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetExportCommand extends $Command<
|
|
21
|
+
GetExportCommandInput,
|
|
22
|
+
GetExportCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetExportCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetExportCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetExportCommandInput, GetExportCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { GetTableRequest, GetTableResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetTableCommandInput extends GetTableRequest {}
|
|
17
|
+
export interface GetTableCommandOutput
|
|
18
|
+
extends GetTableResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetTableCommand extends $Command<
|
|
21
|
+
GetTableCommandInput,
|
|
22
|
+
GetTableCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetTableCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetTableCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetTableCommandInput, GetTableCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import {
|
|
15
|
+
ListExecutionsRequest,
|
|
16
|
+
ListExecutionsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListExecutionsCommandInput extends ListExecutionsRequest {}
|
|
20
|
+
export interface ListExecutionsCommandOutput
|
|
21
|
+
extends ListExecutionsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListExecutionsCommand extends $Command<
|
|
24
|
+
ListExecutionsCommandInput,
|
|
25
|
+
ListExecutionsCommandOutput,
|
|
26
|
+
BCMDataExportsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListExecutionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListExecutionsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { ListExportsRequest, ListExportsResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListExportsCommandInput extends ListExportsRequest {}
|
|
17
|
+
export interface ListExportsCommandOutput
|
|
18
|
+
extends ListExportsResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListExportsCommand extends $Command<
|
|
21
|
+
ListExportsCommandInput,
|
|
22
|
+
ListExportsCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListExportsCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListExportsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListExportsCommandInput, ListExportsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListTablesCommandInput extends ListTablesRequest {}
|
|
17
|
+
export interface ListTablesCommandOutput
|
|
18
|
+
extends ListTablesResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListTablesCommand extends $Command<
|
|
21
|
+
ListTablesCommandInput,
|
|
22
|
+
ListTablesCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListTablesCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListTablesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import {
|
|
15
|
+
ListTagsForResourceRequest,
|
|
16
|
+
ListTagsForResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListTagsForResourceCommandInput
|
|
20
|
+
extends ListTagsForResourceRequest {}
|
|
21
|
+
export interface ListTagsForResourceCommandOutput
|
|
22
|
+
extends ListTagsForResourceResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
25
|
+
ListTagsForResourceCommandInput,
|
|
26
|
+
ListTagsForResourceCommandOutput,
|
|
27
|
+
BCMDataExportsClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
17
|
+
export interface TagResourceCommandOutput
|
|
18
|
+
extends TagResourceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class TagResourceCommand extends $Command<
|
|
21
|
+
TagResourceCommandInput,
|
|
22
|
+
TagResourceCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: TagResourceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: TagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import {
|
|
15
|
+
UntagResourceRequest,
|
|
16
|
+
UntagResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
20
|
+
export interface UntagResourceCommandOutput
|
|
21
|
+
extends UntagResourceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UntagResourceCommand extends $Command<
|
|
24
|
+
UntagResourceCommandInput,
|
|
25
|
+
UntagResourceCommandOutput,
|
|
26
|
+
BCMDataExportsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UntagResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
BCMDataExportsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../BCMDataExportsClient";
|
|
14
|
+
import { UpdateExportRequest, UpdateExportResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UpdateExportCommandInput extends UpdateExportRequest {}
|
|
17
|
+
export interface UpdateExportCommandOutput
|
|
18
|
+
extends UpdateExportResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class UpdateExportCommand extends $Command<
|
|
21
|
+
UpdateExportCommandInput,
|
|
22
|
+
UpdateExportCommandOutput,
|
|
23
|
+
BCMDataExportsClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UpdateExportCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UpdateExportCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BCMDataExportsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateExportCommandInput, UpdateExportCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./CreateExportCommand";
|
|
2
|
+
export * from "./DeleteExportCommand";
|
|
3
|
+
export * from "./GetExecutionCommand";
|
|
4
|
+
export * from "./GetExportCommand";
|
|
5
|
+
export * from "./GetTableCommand";
|
|
6
|
+
export * from "./ListExecutionsCommand";
|
|
7
|
+
export * from "./ListExportsCommand";
|
|
8
|
+
export * from "./ListTablesCommand";
|
|
9
|
+
export * from "./ListTagsForResourceCommand";
|
|
10
|
+
export * from "./TagResourceCommand";
|
|
11
|
+
export * from "./UntagResourceCommand";
|
|
12
|
+
export * from "./UpdateExportCommand";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
endpoint?:
|
|
11
|
+
| string
|
|
12
|
+
| Provider<string>
|
|
13
|
+
| Endpoint
|
|
14
|
+
| Provider<Endpoint>
|
|
15
|
+
| EndpointV2
|
|
16
|
+
| Provider<EndpointV2>;
|
|
17
|
+
}
|
|
18
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
19
|
+
defaultSigningName: string;
|
|
20
|
+
};
|
|
21
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
22
|
+
options: T & ClientInputEndpointParameters
|
|
23
|
+
) => T &
|
|
24
|
+
ClientInputEndpointParameters & {
|
|
25
|
+
defaultSigningName: string;
|
|
26
|
+
};
|
|
27
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
28
|
+
Region?: string;
|
|
29
|
+
UseFIPS?: boolean;
|
|
30
|
+
Endpoint?: string;
|
|
31
|
+
}
|