@aws-sdk/client-amplifybackend 3.169.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AmplifyBackend.d.ts +562 -160
  3. package/dist-types/ts3.4/AmplifyBackendClient.d.ts +316 -104
  4. package/dist-types/ts3.4/commands/CloneBackendCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateBackendAPICommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateBackendAuthCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateBackendCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateBackendConfigCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DeleteBackendAPICommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteBackendAuthCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/DeleteBackendCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GenerateBackendAPIModelsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/GetBackendAPICommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetBackendAPIModelsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/GetBackendAuthCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/GetBackendCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/GetBackendJobCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/GetTokenCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ImportBackendAuthCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/ListBackendJobsCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/RemoveAllBackendsCommand.d.ts +38 -17
  29. package/dist-types/ts3.4/commands/RemoveBackendConfigCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/UpdateBackendAPICommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateBackendAuthCommand.d.ts +38 -17
  32. package/dist-types/ts3.4/commands/UpdateBackendConfigCommand.d.ts +38 -17
  33. package/dist-types/ts3.4/commands/UpdateBackendJobCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +41 -17
  35. package/dist-types/ts3.4/commands/index.d.ts +31 -31
  36. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  37. package/dist-types/ts3.4/index.d.ts +5 -5
  38. package/dist-types/ts3.4/models/AmplifyBackendServiceException.d.ts +8 -6
  39. package/dist-types/ts3.4/models/index.d.ts +1 -1
  40. package/dist-types/ts3.4/models/models_0.d.ts +1398 -1300
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  46. package/package.json +34 -34
@@ -1,104 +1,316 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CloneBackendCommandInput, CloneBackendCommandOutput } from "./commands/CloneBackendCommand";
10
- import { CreateBackendAPICommandInput, CreateBackendAPICommandOutput } from "./commands/CreateBackendAPICommand";
11
- import { CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput } from "./commands/CreateBackendAuthCommand";
12
- import { CreateBackendCommandInput, CreateBackendCommandOutput } from "./commands/CreateBackendCommand";
13
- import { CreateBackendConfigCommandInput, CreateBackendConfigCommandOutput } from "./commands/CreateBackendConfigCommand";
14
- import { CreateBackendStorageCommandInput, CreateBackendStorageCommandOutput } from "./commands/CreateBackendStorageCommand";
15
- import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
16
- import { DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput } from "./commands/DeleteBackendAPICommand";
17
- import { DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput } from "./commands/DeleteBackendAuthCommand";
18
- import { DeleteBackendCommandInput, DeleteBackendCommandOutput } from "./commands/DeleteBackendCommand";
19
- import { DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput } from "./commands/DeleteBackendStorageCommand";
20
- import { DeleteTokenCommandInput, DeleteTokenCommandOutput } from "./commands/DeleteTokenCommand";
21
- import { GenerateBackendAPIModelsCommandInput, GenerateBackendAPIModelsCommandOutput } from "./commands/GenerateBackendAPIModelsCommand";
22
- import { GetBackendAPICommandInput, GetBackendAPICommandOutput } from "./commands/GetBackendAPICommand";
23
- import { GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput } from "./commands/GetBackendAPIModelsCommand";
24
- import { GetBackendAuthCommandInput, GetBackendAuthCommandOutput } from "./commands/GetBackendAuthCommand";
25
- import { GetBackendCommandInput, GetBackendCommandOutput } from "./commands/GetBackendCommand";
26
- import { GetBackendJobCommandInput, GetBackendJobCommandOutput } from "./commands/GetBackendJobCommand";
27
- import { GetBackendStorageCommandInput, GetBackendStorageCommandOutput } from "./commands/GetBackendStorageCommand";
28
- import { GetTokenCommandInput, GetTokenCommandOutput } from "./commands/GetTokenCommand";
29
- import { ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput } from "./commands/ImportBackendAuthCommand";
30
- import { ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput } from "./commands/ImportBackendStorageCommand";
31
- import { ListBackendJobsCommandInput, ListBackendJobsCommandOutput } from "./commands/ListBackendJobsCommand";
32
- import { ListS3BucketsCommandInput, ListS3BucketsCommandOutput } from "./commands/ListS3BucketsCommand";
33
- import { RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput } from "./commands/RemoveAllBackendsCommand";
34
- import { RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput } from "./commands/RemoveBackendConfigCommand";
35
- import { UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput } from "./commands/UpdateBackendAPICommand";
36
- import { UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput } from "./commands/UpdateBackendAuthCommand";
37
- import { UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput } from "./commands/UpdateBackendConfigCommand";
38
- import { UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput } from "./commands/UpdateBackendJobCommand";
39
- import { UpdateBackendStorageCommandInput, UpdateBackendStorageCommandOutput } from "./commands/UpdateBackendStorageCommand";
40
- export declare type ServiceInputTypes = CloneBackendCommandInput | CreateBackendAPICommandInput | CreateBackendAuthCommandInput | CreateBackendCommandInput | CreateBackendConfigCommandInput | CreateBackendStorageCommandInput | CreateTokenCommandInput | DeleteBackendAPICommandInput | DeleteBackendAuthCommandInput | DeleteBackendCommandInput | DeleteBackendStorageCommandInput | DeleteTokenCommandInput | GenerateBackendAPIModelsCommandInput | GetBackendAPICommandInput | GetBackendAPIModelsCommandInput | GetBackendAuthCommandInput | GetBackendCommandInput | GetBackendJobCommandInput | GetBackendStorageCommandInput | GetTokenCommandInput | ImportBackendAuthCommandInput | ImportBackendStorageCommandInput | ListBackendJobsCommandInput | ListS3BucketsCommandInput | RemoveAllBackendsCommandInput | RemoveBackendConfigCommandInput | UpdateBackendAPICommandInput | UpdateBackendAuthCommandInput | UpdateBackendConfigCommandInput | UpdateBackendJobCommandInput | UpdateBackendStorageCommandInput;
41
- export declare type ServiceOutputTypes = CloneBackendCommandOutput | CreateBackendAPICommandOutput | CreateBackendAuthCommandOutput | CreateBackendCommandOutput | CreateBackendConfigCommandOutput | CreateBackendStorageCommandOutput | CreateTokenCommandOutput | DeleteBackendAPICommandOutput | DeleteBackendAuthCommandOutput | DeleteBackendCommandOutput | DeleteBackendStorageCommandOutput | DeleteTokenCommandOutput | GenerateBackendAPIModelsCommandOutput | GetBackendAPICommandOutput | GetBackendAPIModelsCommandOutput | GetBackendAuthCommandOutput | GetBackendCommandOutput | GetBackendJobCommandOutput | GetBackendStorageCommandOutput | GetTokenCommandOutput | ImportBackendAuthCommandOutput | ImportBackendStorageCommandOutput | ListBackendJobsCommandOutput | ListS3BucketsCommandOutput | RemoveAllBackendsCommandOutput | RemoveBackendConfigCommandOutput | UpdateBackendAPICommandOutput | UpdateBackendAuthCommandOutput | UpdateBackendConfigCommandOutput | UpdateBackendJobCommandOutput | UpdateBackendStorageCommandOutput;
42
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
43
-
44
- requestHandler?: __HttpHandler;
45
-
46
- sha256?: __HashConstructor;
47
-
48
- urlParser?: __UrlParser;
49
-
50
- bodyLengthChecker?: __BodyLengthCalculator;
51
-
52
- streamCollector?: __StreamCollector;
53
-
54
- base64Decoder?: __Decoder;
55
-
56
- base64Encoder?: __Encoder;
57
-
58
- utf8Decoder?: __Decoder;
59
-
60
- utf8Encoder?: __Encoder;
61
-
62
- runtime?: string;
63
-
64
- disableHostPrefix?: boolean;
65
-
66
- maxAttempts?: number | __Provider<number>;
67
-
68
- retryMode?: string | __Provider<string>;
69
-
70
- logger?: __Logger;
71
-
72
- useDualstackEndpoint?: boolean | __Provider<boolean>;
73
-
74
- useFipsEndpoint?: boolean | __Provider<boolean>;
75
-
76
- serviceId?: string;
77
-
78
- region?: string | __Provider<string>;
79
-
80
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
81
-
82
- regionInfoProvider?: RegionInfoProvider;
83
-
84
- defaultUserAgentProvider?: Provider<__UserAgent>;
85
-
86
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
87
- }
88
- declare type AmplifyBackendClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
89
-
90
- export interface AmplifyBackendClientConfig extends AmplifyBackendClientConfigType {
91
- }
92
- declare type AmplifyBackendClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
93
-
94
- export interface AmplifyBackendClientResolvedConfig extends AmplifyBackendClientResolvedConfigType {
95
- }
96
-
97
- export declare class AmplifyBackendClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AmplifyBackendClientResolvedConfig> {
98
-
99
- readonly config: AmplifyBackendClientResolvedConfig;
100
- constructor(configuration: AmplifyBackendClientConfig);
101
-
102
- destroy(): void;
103
- }
104
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CloneBackendCommandInput,
47
+ CloneBackendCommandOutput,
48
+ } from "./commands/CloneBackendCommand";
49
+ import {
50
+ CreateBackendAPICommandInput,
51
+ CreateBackendAPICommandOutput,
52
+ } from "./commands/CreateBackendAPICommand";
53
+ import {
54
+ CreateBackendAuthCommandInput,
55
+ CreateBackendAuthCommandOutput,
56
+ } from "./commands/CreateBackendAuthCommand";
57
+ import {
58
+ CreateBackendCommandInput,
59
+ CreateBackendCommandOutput,
60
+ } from "./commands/CreateBackendCommand";
61
+ import {
62
+ CreateBackendConfigCommandInput,
63
+ CreateBackendConfigCommandOutput,
64
+ } from "./commands/CreateBackendConfigCommand";
65
+ import {
66
+ CreateBackendStorageCommandInput,
67
+ CreateBackendStorageCommandOutput,
68
+ } from "./commands/CreateBackendStorageCommand";
69
+ import {
70
+ CreateTokenCommandInput,
71
+ CreateTokenCommandOutput,
72
+ } from "./commands/CreateTokenCommand";
73
+ import {
74
+ DeleteBackendAPICommandInput,
75
+ DeleteBackendAPICommandOutput,
76
+ } from "./commands/DeleteBackendAPICommand";
77
+ import {
78
+ DeleteBackendAuthCommandInput,
79
+ DeleteBackendAuthCommandOutput,
80
+ } from "./commands/DeleteBackendAuthCommand";
81
+ import {
82
+ DeleteBackendCommandInput,
83
+ DeleteBackendCommandOutput,
84
+ } from "./commands/DeleteBackendCommand";
85
+ import {
86
+ DeleteBackendStorageCommandInput,
87
+ DeleteBackendStorageCommandOutput,
88
+ } from "./commands/DeleteBackendStorageCommand";
89
+ import {
90
+ DeleteTokenCommandInput,
91
+ DeleteTokenCommandOutput,
92
+ } from "./commands/DeleteTokenCommand";
93
+ import {
94
+ GenerateBackendAPIModelsCommandInput,
95
+ GenerateBackendAPIModelsCommandOutput,
96
+ } from "./commands/GenerateBackendAPIModelsCommand";
97
+ import {
98
+ GetBackendAPICommandInput,
99
+ GetBackendAPICommandOutput,
100
+ } from "./commands/GetBackendAPICommand";
101
+ import {
102
+ GetBackendAPIModelsCommandInput,
103
+ GetBackendAPIModelsCommandOutput,
104
+ } from "./commands/GetBackendAPIModelsCommand";
105
+ import {
106
+ GetBackendAuthCommandInput,
107
+ GetBackendAuthCommandOutput,
108
+ } from "./commands/GetBackendAuthCommand";
109
+ import {
110
+ GetBackendCommandInput,
111
+ GetBackendCommandOutput,
112
+ } from "./commands/GetBackendCommand";
113
+ import {
114
+ GetBackendJobCommandInput,
115
+ GetBackendJobCommandOutput,
116
+ } from "./commands/GetBackendJobCommand";
117
+ import {
118
+ GetBackendStorageCommandInput,
119
+ GetBackendStorageCommandOutput,
120
+ } from "./commands/GetBackendStorageCommand";
121
+ import {
122
+ GetTokenCommandInput,
123
+ GetTokenCommandOutput,
124
+ } from "./commands/GetTokenCommand";
125
+ import {
126
+ ImportBackendAuthCommandInput,
127
+ ImportBackendAuthCommandOutput,
128
+ } from "./commands/ImportBackendAuthCommand";
129
+ import {
130
+ ImportBackendStorageCommandInput,
131
+ ImportBackendStorageCommandOutput,
132
+ } from "./commands/ImportBackendStorageCommand";
133
+ import {
134
+ ListBackendJobsCommandInput,
135
+ ListBackendJobsCommandOutput,
136
+ } from "./commands/ListBackendJobsCommand";
137
+ import {
138
+ ListS3BucketsCommandInput,
139
+ ListS3BucketsCommandOutput,
140
+ } from "./commands/ListS3BucketsCommand";
141
+ import {
142
+ RemoveAllBackendsCommandInput,
143
+ RemoveAllBackendsCommandOutput,
144
+ } from "./commands/RemoveAllBackendsCommand";
145
+ import {
146
+ RemoveBackendConfigCommandInput,
147
+ RemoveBackendConfigCommandOutput,
148
+ } from "./commands/RemoveBackendConfigCommand";
149
+ import {
150
+ UpdateBackendAPICommandInput,
151
+ UpdateBackendAPICommandOutput,
152
+ } from "./commands/UpdateBackendAPICommand";
153
+ import {
154
+ UpdateBackendAuthCommandInput,
155
+ UpdateBackendAuthCommandOutput,
156
+ } from "./commands/UpdateBackendAuthCommand";
157
+ import {
158
+ UpdateBackendConfigCommandInput,
159
+ UpdateBackendConfigCommandOutput,
160
+ } from "./commands/UpdateBackendConfigCommand";
161
+ import {
162
+ UpdateBackendJobCommandInput,
163
+ UpdateBackendJobCommandOutput,
164
+ } from "./commands/UpdateBackendJobCommand";
165
+ import {
166
+ UpdateBackendStorageCommandInput,
167
+ UpdateBackendStorageCommandOutput,
168
+ } from "./commands/UpdateBackendStorageCommand";
169
+ export declare type ServiceInputTypes =
170
+ | CloneBackendCommandInput
171
+ | CreateBackendAPICommandInput
172
+ | CreateBackendAuthCommandInput
173
+ | CreateBackendCommandInput
174
+ | CreateBackendConfigCommandInput
175
+ | CreateBackendStorageCommandInput
176
+ | CreateTokenCommandInput
177
+ | DeleteBackendAPICommandInput
178
+ | DeleteBackendAuthCommandInput
179
+ | DeleteBackendCommandInput
180
+ | DeleteBackendStorageCommandInput
181
+ | DeleteTokenCommandInput
182
+ | GenerateBackendAPIModelsCommandInput
183
+ | GetBackendAPICommandInput
184
+ | GetBackendAPIModelsCommandInput
185
+ | GetBackendAuthCommandInput
186
+ | GetBackendCommandInput
187
+ | GetBackendJobCommandInput
188
+ | GetBackendStorageCommandInput
189
+ | GetTokenCommandInput
190
+ | ImportBackendAuthCommandInput
191
+ | ImportBackendStorageCommandInput
192
+ | ListBackendJobsCommandInput
193
+ | ListS3BucketsCommandInput
194
+ | RemoveAllBackendsCommandInput
195
+ | RemoveBackendConfigCommandInput
196
+ | UpdateBackendAPICommandInput
197
+ | UpdateBackendAuthCommandInput
198
+ | UpdateBackendConfigCommandInput
199
+ | UpdateBackendJobCommandInput
200
+ | UpdateBackendStorageCommandInput;
201
+ export declare type ServiceOutputTypes =
202
+ | CloneBackendCommandOutput
203
+ | CreateBackendAPICommandOutput
204
+ | CreateBackendAuthCommandOutput
205
+ | CreateBackendCommandOutput
206
+ | CreateBackendConfigCommandOutput
207
+ | CreateBackendStorageCommandOutput
208
+ | CreateTokenCommandOutput
209
+ | DeleteBackendAPICommandOutput
210
+ | DeleteBackendAuthCommandOutput
211
+ | DeleteBackendCommandOutput
212
+ | DeleteBackendStorageCommandOutput
213
+ | DeleteTokenCommandOutput
214
+ | GenerateBackendAPIModelsCommandOutput
215
+ | GetBackendAPICommandOutput
216
+ | GetBackendAPIModelsCommandOutput
217
+ | GetBackendAuthCommandOutput
218
+ | GetBackendCommandOutput
219
+ | GetBackendJobCommandOutput
220
+ | GetBackendStorageCommandOutput
221
+ | GetTokenCommandOutput
222
+ | ImportBackendAuthCommandOutput
223
+ | ImportBackendStorageCommandOutput
224
+ | ListBackendJobsCommandOutput
225
+ | ListS3BucketsCommandOutput
226
+ | RemoveAllBackendsCommandOutput
227
+ | RemoveBackendConfigCommandOutput
228
+ | UpdateBackendAPICommandOutput
229
+ | UpdateBackendAuthCommandOutput
230
+ | UpdateBackendConfigCommandOutput
231
+ | UpdateBackendJobCommandOutput
232
+ | UpdateBackendStorageCommandOutput;
233
+ export interface ClientDefaults
234
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
235
+ requestHandler?: __HttpHandler;
236
+
237
+ sha256?: __HashConstructor;
238
+
239
+ urlParser?: __UrlParser;
240
+
241
+ bodyLengthChecker?: __BodyLengthCalculator;
242
+
243
+ streamCollector?: __StreamCollector;
244
+
245
+ base64Decoder?: __Decoder;
246
+
247
+ base64Encoder?: __Encoder;
248
+
249
+ utf8Decoder?: __Decoder;
250
+
251
+ utf8Encoder?: __Encoder;
252
+
253
+ runtime?: string;
254
+
255
+ disableHostPrefix?: boolean;
256
+
257
+ maxAttempts?: number | __Provider<number>;
258
+
259
+ retryMode?: string | __Provider<string>;
260
+
261
+ logger?: __Logger;
262
+
263
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
264
+
265
+ useFipsEndpoint?: boolean | __Provider<boolean>;
266
+
267
+ serviceId?: string;
268
+
269
+ region?: string | __Provider<string>;
270
+
271
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
272
+
273
+ regionInfoProvider?: RegionInfoProvider;
274
+
275
+ defaultUserAgentProvider?: Provider<__UserAgent>;
276
+
277
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
278
+ }
279
+ declare type AmplifyBackendClientConfigType = Partial<
280
+ __SmithyConfiguration<__HttpHandlerOptions>
281
+ > &
282
+ ClientDefaults &
283
+ RegionInputConfig &
284
+ EndpointsInputConfig &
285
+ RetryInputConfig &
286
+ HostHeaderInputConfig &
287
+ AwsAuthInputConfig &
288
+ UserAgentInputConfig;
289
+
290
+ export interface AmplifyBackendClientConfig
291
+ extends AmplifyBackendClientConfigType {}
292
+ declare type AmplifyBackendClientResolvedConfigType =
293
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
294
+ Required<ClientDefaults> &
295
+ RegionResolvedConfig &
296
+ EndpointsResolvedConfig &
297
+ RetryResolvedConfig &
298
+ HostHeaderResolvedConfig &
299
+ AwsAuthResolvedConfig &
300
+ UserAgentResolvedConfig;
301
+
302
+ export interface AmplifyBackendClientResolvedConfig
303
+ extends AmplifyBackendClientResolvedConfigType {}
304
+
305
+ export declare class AmplifyBackendClient extends __Client<
306
+ __HttpHandlerOptions,
307
+ ServiceInputTypes,
308
+ ServiceOutputTypes,
309
+ AmplifyBackendClientResolvedConfig
310
+ > {
311
+ readonly config: AmplifyBackendClientResolvedConfig;
312
+ constructor(configuration: AmplifyBackendClientConfig);
313
+
314
+ destroy(): void;
315
+ }
316
+ export {};
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { CloneBackendRequest, CloneBackendResponse } from "../models/models_0";
5
- export interface CloneBackendCommandInput extends CloneBackendRequest {
6
- }
7
- export interface CloneBackendCommandOutput extends CloneBackendResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CloneBackendCommand extends $Command<CloneBackendCommandInput, CloneBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: CloneBackendCommandInput;
12
- constructor(input: CloneBackendCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CloneBackendCommandInput, CloneBackendCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import { CloneBackendRequest, CloneBackendResponse } from "../models/models_0";
14
+ export interface CloneBackendCommandInput extends CloneBackendRequest {}
15
+ export interface CloneBackendCommandOutput
16
+ extends CloneBackendResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CloneBackendCommand extends $Command<
20
+ CloneBackendCommandInput,
21
+ CloneBackendCommandOutput,
22
+ AmplifyBackendClientResolvedConfig
23
+ > {
24
+ readonly input: CloneBackendCommandInput;
25
+ constructor(input: CloneBackendCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyBackendClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CloneBackendCommandInput, CloneBackendCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { CreateBackendAPIRequest, CreateBackendAPIResponse } from "../models/models_0";
5
- export interface CreateBackendAPICommandInput extends CreateBackendAPIRequest {
6
- }
7
- export interface CreateBackendAPICommandOutput extends CreateBackendAPIResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateBackendAPICommand extends $Command<CreateBackendAPICommandInput, CreateBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: CreateBackendAPICommandInput;
12
- constructor(input: CreateBackendAPICommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBackendAPICommandInput, CreateBackendAPICommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ CreateBackendAPIRequest,
15
+ CreateBackendAPIResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateBackendAPICommandInput extends CreateBackendAPIRequest {}
18
+ export interface CreateBackendAPICommandOutput
19
+ extends CreateBackendAPIResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateBackendAPICommand extends $Command<
23
+ CreateBackendAPICommandInput,
24
+ CreateBackendAPICommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: CreateBackendAPICommandInput;
28
+ constructor(input: CreateBackendAPICommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateBackendAPICommandInput, CreateBackendAPICommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { CreateBackendAuthRequest, CreateBackendAuthResponse } from "../models/models_0";
5
- export interface CreateBackendAuthCommandInput extends CreateBackendAuthRequest {
6
- }
7
- export interface CreateBackendAuthCommandOutput extends CreateBackendAuthResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateBackendAuthCommand extends $Command<CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: CreateBackendAuthCommandInput;
12
- constructor(input: CreateBackendAuthCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ CreateBackendAuthRequest,
15
+ CreateBackendAuthResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateBackendAuthCommandInput
18
+ extends CreateBackendAuthRequest {}
19
+ export interface CreateBackendAuthCommandOutput
20
+ extends CreateBackendAuthResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateBackendAuthCommand extends $Command<
24
+ CreateBackendAuthCommandInput,
25
+ CreateBackendAuthCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: CreateBackendAuthCommandInput;
29
+ constructor(input: CreateBackendAuthCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { CreateBackendRequest, CreateBackendResponse } from "../models/models_0";
5
- export interface CreateBackendCommandInput extends CreateBackendRequest {
6
- }
7
- export interface CreateBackendCommandOutput extends CreateBackendResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateBackendCommand extends $Command<CreateBackendCommandInput, CreateBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: CreateBackendCommandInput;
12
- constructor(input: CreateBackendCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBackendCommandInput, CreateBackendCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ CreateBackendRequest,
15
+ CreateBackendResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateBackendCommandInput extends CreateBackendRequest {}
18
+ export interface CreateBackendCommandOutput
19
+ extends CreateBackendResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateBackendCommand extends $Command<
23
+ CreateBackendCommandInput,
24
+ CreateBackendCommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: CreateBackendCommandInput;
28
+ constructor(input: CreateBackendCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateBackendCommandInput, CreateBackendCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }