@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/AmplifyBackend.d.ts +562 -160
- package/dist-types/ts3.4/AmplifyBackendClient.d.ts +316 -104
- package/dist-types/ts3.4/commands/CloneBackendCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateBackendCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateBackendConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteBackendCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GenerateBackendAPIModelsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendAPIModelsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetBackendAuthCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetBackendJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetTokenCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ImportBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListBackendJobsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveAllBackendsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RemoveBackendConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBackendConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBackendJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AmplifyBackendServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1398 -1300
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|