@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,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 { GetBackendAuthRequest, GetBackendAuthResponse } from "../models/models_0";
5
- export interface GetBackendAuthCommandInput extends GetBackendAuthRequest {
6
- }
7
- export interface GetBackendAuthCommandOutput extends GetBackendAuthResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetBackendAuthCommand extends $Command<GetBackendAuthCommandInput, GetBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: GetBackendAuthCommandInput;
12
- constructor(input: GetBackendAuthCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendAuthCommandInput, GetBackendAuthCommandOutput>;
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
+ GetBackendAuthRequest,
15
+ GetBackendAuthResponse,
16
+ } from "../models/models_0";
17
+ export interface GetBackendAuthCommandInput extends GetBackendAuthRequest {}
18
+ export interface GetBackendAuthCommandOutput
19
+ extends GetBackendAuthResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetBackendAuthCommand extends $Command<
23
+ GetBackendAuthCommandInput,
24
+ GetBackendAuthCommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: GetBackendAuthCommandInput;
28
+ constructor(input: GetBackendAuthCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetBackendAuthCommandInput, GetBackendAuthCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { GetBackendRequest, GetBackendResponse } from "../models/models_0";
5
- export interface GetBackendCommandInput extends GetBackendRequest {
6
- }
7
- export interface GetBackendCommandOutput extends GetBackendResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetBackendCommand extends $Command<GetBackendCommandInput, GetBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: GetBackendCommandInput;
12
- constructor(input: GetBackendCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendCommandInput, GetBackendCommandOutput>;
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 { GetBackendRequest, GetBackendResponse } from "../models/models_0";
14
+ export interface GetBackendCommandInput extends GetBackendRequest {}
15
+ export interface GetBackendCommandOutput
16
+ extends GetBackendResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetBackendCommand extends $Command<
20
+ GetBackendCommandInput,
21
+ GetBackendCommandOutput,
22
+ AmplifyBackendClientResolvedConfig
23
+ > {
24
+ readonly input: GetBackendCommandInput;
25
+ constructor(input: GetBackendCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyBackendClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetBackendCommandInput, GetBackendCommandOutput>;
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 { GetBackendJobRequest, GetBackendJobResponse } from "../models/models_0";
5
- export interface GetBackendJobCommandInput extends GetBackendJobRequest {
6
- }
7
- export interface GetBackendJobCommandOutput extends GetBackendJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetBackendJobCommand extends $Command<GetBackendJobCommandInput, GetBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: GetBackendJobCommandInput;
12
- constructor(input: GetBackendJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendJobCommandInput, GetBackendJobCommandOutput>;
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
+ GetBackendJobRequest,
15
+ GetBackendJobResponse,
16
+ } from "../models/models_0";
17
+ export interface GetBackendJobCommandInput extends GetBackendJobRequest {}
18
+ export interface GetBackendJobCommandOutput
19
+ extends GetBackendJobResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetBackendJobCommand extends $Command<
23
+ GetBackendJobCommandInput,
24
+ GetBackendJobCommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: GetBackendJobCommandInput;
28
+ constructor(input: GetBackendJobCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetBackendJobCommandInput, GetBackendJobCommandOutput>;
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 { GetBackendStorageRequest, GetBackendStorageResponse } from "../models/models_0";
5
- export interface GetBackendStorageCommandInput extends GetBackendStorageRequest {
6
- }
7
- export interface GetBackendStorageCommandOutput extends GetBackendStorageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetBackendStorageCommand extends $Command<GetBackendStorageCommandInput, GetBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: GetBackendStorageCommandInput;
12
- constructor(input: GetBackendStorageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendStorageCommandInput, GetBackendStorageCommandOutput>;
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
+ GetBackendStorageRequest,
15
+ GetBackendStorageResponse,
16
+ } from "../models/models_0";
17
+ export interface GetBackendStorageCommandInput
18
+ extends GetBackendStorageRequest {}
19
+ export interface GetBackendStorageCommandOutput
20
+ extends GetBackendStorageResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetBackendStorageCommand extends $Command<
24
+ GetBackendStorageCommandInput,
25
+ GetBackendStorageCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: GetBackendStorageCommandInput;
29
+ constructor(input: GetBackendStorageCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetBackendStorageCommandInput, GetBackendStorageCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { GetTokenRequest, GetTokenResponse } from "../models/models_0";
5
- export interface GetTokenCommandInput extends GetTokenRequest {
6
- }
7
- export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetTokenCommand extends $Command<GetTokenCommandInput, GetTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: GetTokenCommandInput;
12
- constructor(input: GetTokenCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTokenCommandInput, GetTokenCommandOutput>;
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 { GetTokenRequest, GetTokenResponse } from "../models/models_0";
14
+ export interface GetTokenCommandInput extends GetTokenRequest {}
15
+ export interface GetTokenCommandOutput
16
+ extends GetTokenResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetTokenCommand extends $Command<
20
+ GetTokenCommandInput,
21
+ GetTokenCommandOutput,
22
+ AmplifyBackendClientResolvedConfig
23
+ > {
24
+ readonly input: GetTokenCommandInput;
25
+ constructor(input: GetTokenCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AmplifyBackendClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetTokenCommandInput, GetTokenCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { ImportBackendAuthRequest, ImportBackendAuthResponse } from "../models/models_0";
5
- export interface ImportBackendAuthCommandInput extends ImportBackendAuthRequest {
6
- }
7
- export interface ImportBackendAuthCommandOutput extends ImportBackendAuthResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ImportBackendAuthCommand extends $Command<ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: ImportBackendAuthCommandInput;
12
- constructor(input: ImportBackendAuthCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput>;
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
+ ImportBackendAuthRequest,
15
+ ImportBackendAuthResponse,
16
+ } from "../models/models_0";
17
+ export interface ImportBackendAuthCommandInput
18
+ extends ImportBackendAuthRequest {}
19
+ export interface ImportBackendAuthCommandOutput
20
+ extends ImportBackendAuthResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ImportBackendAuthCommand extends $Command<
24
+ ImportBackendAuthCommandInput,
25
+ ImportBackendAuthCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: ImportBackendAuthCommandInput;
29
+ constructor(input: ImportBackendAuthCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
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 { ImportBackendStorageRequest, ImportBackendStorageResponse } from "../models/models_0";
5
- export interface ImportBackendStorageCommandInput extends ImportBackendStorageRequest {
6
- }
7
- export interface ImportBackendStorageCommandOutput extends ImportBackendStorageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ImportBackendStorageCommand extends $Command<ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: ImportBackendStorageCommandInput;
12
- constructor(input: ImportBackendStorageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput>;
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
+ ImportBackendStorageRequest,
15
+ ImportBackendStorageResponse,
16
+ } from "../models/models_0";
17
+ export interface ImportBackendStorageCommandInput
18
+ extends ImportBackendStorageRequest {}
19
+ export interface ImportBackendStorageCommandOutput
20
+ extends ImportBackendStorageResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ImportBackendStorageCommand extends $Command<
24
+ ImportBackendStorageCommandInput,
25
+ ImportBackendStorageCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: ImportBackendStorageCommandInput;
29
+ constructor(input: ImportBackendStorageCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ImportBackendStorageCommandInput,
37
+ ImportBackendStorageCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { ListBackendJobsRequest, ListBackendJobsResponse } from "../models/models_0";
5
- export interface ListBackendJobsCommandInput extends ListBackendJobsRequest {
6
- }
7
- export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListBackendJobsCommand extends $Command<ListBackendJobsCommandInput, ListBackendJobsCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: ListBackendJobsCommandInput;
12
- constructor(input: ListBackendJobsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListBackendJobsCommandInput, ListBackendJobsCommandOutput>;
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
+ ListBackendJobsRequest,
15
+ ListBackendJobsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListBackendJobsCommandInput extends ListBackendJobsRequest {}
18
+ export interface ListBackendJobsCommandOutput
19
+ extends ListBackendJobsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListBackendJobsCommand extends $Command<
23
+ ListBackendJobsCommandInput,
24
+ ListBackendJobsCommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: ListBackendJobsCommandInput;
28
+ constructor(input: ListBackendJobsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListBackendJobsCommandInput, ListBackendJobsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { ListS3BucketsRequest, ListS3BucketsResponse } from "../models/models_0";
5
- export interface ListS3BucketsCommandInput extends ListS3BucketsRequest {
6
- }
7
- export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListS3BucketsCommand extends $Command<ListS3BucketsCommandInput, ListS3BucketsCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: ListS3BucketsCommandInput;
12
- constructor(input: ListS3BucketsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListS3BucketsCommandInput, ListS3BucketsCommandOutput>;
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
+ ListS3BucketsRequest,
15
+ ListS3BucketsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListS3BucketsCommandInput extends ListS3BucketsRequest {}
18
+ export interface ListS3BucketsCommandOutput
19
+ extends ListS3BucketsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListS3BucketsCommand extends $Command<
23
+ ListS3BucketsCommandInput,
24
+ ListS3BucketsCommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: ListS3BucketsCommandInput;
28
+ constructor(input: ListS3BucketsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListS3BucketsCommandInput, ListS3BucketsCommandOutput>;
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 { RemoveAllBackendsRequest, RemoveAllBackendsResponse } from "../models/models_0";
5
- export interface RemoveAllBackendsCommandInput extends RemoveAllBackendsRequest {
6
- }
7
- export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveAllBackendsCommand extends $Command<RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: RemoveAllBackendsCommandInput;
12
- constructor(input: RemoveAllBackendsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput>;
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
+ RemoveAllBackendsRequest,
15
+ RemoveAllBackendsResponse,
16
+ } from "../models/models_0";
17
+ export interface RemoveAllBackendsCommandInput
18
+ extends RemoveAllBackendsRequest {}
19
+ export interface RemoveAllBackendsCommandOutput
20
+ extends RemoveAllBackendsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RemoveAllBackendsCommand extends $Command<
24
+ RemoveAllBackendsCommandInput,
25
+ RemoveAllBackendsCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveAllBackendsCommandInput;
29
+ constructor(input: RemoveAllBackendsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { RemoveBackendConfigRequest, RemoveBackendConfigResponse } from "../models/models_0";
5
- export interface RemoveBackendConfigCommandInput extends RemoveBackendConfigRequest {
6
- }
7
- export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveBackendConfigCommand extends $Command<RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: RemoveBackendConfigCommandInput;
12
- constructor(input: RemoveBackendConfigCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput>;
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
+ RemoveBackendConfigRequest,
15
+ RemoveBackendConfigResponse,
16
+ } from "../models/models_0";
17
+ export interface RemoveBackendConfigCommandInput
18
+ extends RemoveBackendConfigRequest {}
19
+ export interface RemoveBackendConfigCommandOutput
20
+ extends RemoveBackendConfigResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RemoveBackendConfigCommand extends $Command<
24
+ RemoveBackendConfigCommandInput,
25
+ RemoveBackendConfigCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveBackendConfigCommandInput;
29
+ constructor(input: RemoveBackendConfigCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }