@aws-sdk/client-amplifybackend 3.40.0 → 3.45.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 +41 -0
- package/dist-cjs/AmplifyBackend.js +90 -0
- package/dist-cjs/commands/CreateBackendStorageCommand.js +36 -0
- package/dist-cjs/commands/DeleteBackendStorageCommand.js +36 -0
- package/dist-cjs/commands/GetBackendStorageCommand.js +36 -0
- package/dist-cjs/commands/ImportBackendStorageCommand.js +36 -0
- package/dist-cjs/commands/ListS3BucketsCommand.js +36 -0
- package/dist-cjs/commands/UpdateBackendStorageCommand.js +36 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/endpoints.js +9 -0
- package/dist-cjs/models/models_0.js +121 -2
- package/dist-cjs/protocols/Aws_restJson1.js +937 -101
- package/dist-es/AmplifyBackend.js +90 -0
- package/dist-es/commands/CreateBackendStorageCommand.js +39 -0
- package/dist-es/commands/DeleteBackendStorageCommand.js +39 -0
- package/dist-es/commands/GetBackendStorageCommand.js +39 -0
- package/dist-es/commands/ImportBackendStorageCommand.js +39 -0
- package/dist-es/commands/ListS3BucketsCommand.js +39 -0
- package/dist-es/commands/UpdateBackendStorageCommand.js +39 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/endpoints.js +9 -0
- package/dist-es/models/models_0.js +84 -0
- package/dist-es/protocols/Aws_restJson1.js +1008 -86
- package/dist-types/AmplifyBackend.d.ts +42 -0
- package/dist-types/AmplifyBackendClient.d.ts +8 -2
- package/dist-types/commands/CloneBackendCommand.d.ts +1 -1
- package/dist-types/commands/CreateBackendAPICommand.d.ts +1 -1
- package/dist-types/commands/CreateBackendAuthCommand.d.ts +1 -1
- package/dist-types/commands/CreateBackendCommand.d.ts +1 -1
- package/dist-types/commands/CreateBackendConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateBackendStorageCommand.d.ts +35 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBackendAPICommand.d.ts +1 -1
- package/dist-types/commands/DeleteBackendAuthCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBackendCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBackendStorageCommand.d.ts +35 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +1 -1
- package/dist-types/commands/GenerateBackendAPIModelsCommand.d.ts +1 -1
- package/dist-types/commands/GetBackendAPICommand.d.ts +1 -1
- package/dist-types/commands/GetBackendAPIModelsCommand.d.ts +1 -1
- package/dist-types/commands/GetBackendAuthCommand.d.ts +1 -1
- package/dist-types/commands/GetBackendCommand.d.ts +1 -1
- package/dist-types/commands/GetBackendJobCommand.d.ts +1 -1
- package/dist-types/commands/GetBackendStorageCommand.d.ts +35 -0
- package/dist-types/commands/GetTokenCommand.d.ts +1 -1
- package/dist-types/commands/ImportBackendAuthCommand.d.ts +1 -1
- package/dist-types/commands/ImportBackendStorageCommand.d.ts +35 -0
- package/dist-types/commands/ListBackendJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListS3BucketsCommand.d.ts +35 -0
- package/dist-types/commands/RemoveAllBackendsCommand.d.ts +1 -1
- package/dist-types/commands/RemoveBackendConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBackendAPICommand.d.ts +1 -1
- package/dist-types/commands/UpdateBackendAuthCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBackendConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBackendJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBackendStorageCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +403 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/AmplifyBackend.d.ts +30 -0
- package/dist-types/ts3.4/AmplifyBackendClient.d.ts +8 -2
- package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +236 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +6 -6
|
@@ -5,10 +5,12 @@ import { CreateBackendAPICommandInput, CreateBackendAPICommandOutput } from "./c
|
|
|
5
5
|
import { CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput } from "./commands/CreateBackendAuthCommand";
|
|
6
6
|
import { CreateBackendCommandInput, CreateBackendCommandOutput } from "./commands/CreateBackendCommand";
|
|
7
7
|
import { CreateBackendConfigCommandInput, CreateBackendConfigCommandOutput } from "./commands/CreateBackendConfigCommand";
|
|
8
|
+
import { CreateBackendStorageCommandInput, CreateBackendStorageCommandOutput } from "./commands/CreateBackendStorageCommand";
|
|
8
9
|
import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
|
|
9
10
|
import { DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput } from "./commands/DeleteBackendAPICommand";
|
|
10
11
|
import { DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput } from "./commands/DeleteBackendAuthCommand";
|
|
11
12
|
import { DeleteBackendCommandInput, DeleteBackendCommandOutput } from "./commands/DeleteBackendCommand";
|
|
13
|
+
import { DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput } from "./commands/DeleteBackendStorageCommand";
|
|
12
14
|
import { DeleteTokenCommandInput, DeleteTokenCommandOutput } from "./commands/DeleteTokenCommand";
|
|
13
15
|
import { GenerateBackendAPIModelsCommandInput, GenerateBackendAPIModelsCommandOutput } from "./commands/GenerateBackendAPIModelsCommand";
|
|
14
16
|
import { GetBackendAPICommandInput, GetBackendAPICommandOutput } from "./commands/GetBackendAPICommand";
|
|
@@ -16,15 +18,19 @@ import { GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput } fro
|
|
|
16
18
|
import { GetBackendAuthCommandInput, GetBackendAuthCommandOutput } from "./commands/GetBackendAuthCommand";
|
|
17
19
|
import { GetBackendCommandInput, GetBackendCommandOutput } from "./commands/GetBackendCommand";
|
|
18
20
|
import { GetBackendJobCommandInput, GetBackendJobCommandOutput } from "./commands/GetBackendJobCommand";
|
|
21
|
+
import { GetBackendStorageCommandInput, GetBackendStorageCommandOutput } from "./commands/GetBackendStorageCommand";
|
|
19
22
|
import { GetTokenCommandInput, GetTokenCommandOutput } from "./commands/GetTokenCommand";
|
|
20
23
|
import { ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput } from "./commands/ImportBackendAuthCommand";
|
|
24
|
+
import { ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput } from "./commands/ImportBackendStorageCommand";
|
|
21
25
|
import { ListBackendJobsCommandInput, ListBackendJobsCommandOutput } from "./commands/ListBackendJobsCommand";
|
|
26
|
+
import { ListS3BucketsCommandInput, ListS3BucketsCommandOutput } from "./commands/ListS3BucketsCommand";
|
|
22
27
|
import { RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput } from "./commands/RemoveAllBackendsCommand";
|
|
23
28
|
import { RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput } from "./commands/RemoveBackendConfigCommand";
|
|
24
29
|
import { UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput } from "./commands/UpdateBackendAPICommand";
|
|
25
30
|
import { UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput } from "./commands/UpdateBackendAuthCommand";
|
|
26
31
|
import { UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput } from "./commands/UpdateBackendConfigCommand";
|
|
27
32
|
import { UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput } from "./commands/UpdateBackendJobCommand";
|
|
33
|
+
import { UpdateBackendStorageCommandInput, UpdateBackendStorageCommandOutput } from "./commands/UpdateBackendStorageCommand";
|
|
28
34
|
/**
|
|
29
35
|
* <p>AWS Amplify Admin API</p>
|
|
30
36
|
*/
|
|
@@ -59,6 +65,12 @@ export declare class AmplifyBackend extends AmplifyBackendClient {
|
|
|
59
65
|
createBackendConfig(args: CreateBackendConfigCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackendConfigCommandOutput>;
|
|
60
66
|
createBackendConfig(args: CreateBackendConfigCommandInput, cb: (err: any, data?: CreateBackendConfigCommandOutput) => void): void;
|
|
61
67
|
createBackendConfig(args: CreateBackendConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackendConfigCommandOutput) => void): void;
|
|
68
|
+
/**
|
|
69
|
+
* <p>Creates a backend storage resource.</p>
|
|
70
|
+
*/
|
|
71
|
+
createBackendStorage(args: CreateBackendStorageCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackendStorageCommandOutput>;
|
|
72
|
+
createBackendStorage(args: CreateBackendStorageCommandInput, cb: (err: any, data?: CreateBackendStorageCommandOutput) => void): void;
|
|
73
|
+
createBackendStorage(args: CreateBackendStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackendStorageCommandOutput) => void): void;
|
|
62
74
|
/**
|
|
63
75
|
* <p>Generates a one-time challenge code to authenticate a user into your Amplify Admin UI.</p>
|
|
64
76
|
*/
|
|
@@ -83,6 +95,12 @@ export declare class AmplifyBackend extends AmplifyBackendClient {
|
|
|
83
95
|
deleteBackendAuth(args: DeleteBackendAuthCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackendAuthCommandOutput>;
|
|
84
96
|
deleteBackendAuth(args: DeleteBackendAuthCommandInput, cb: (err: any, data?: DeleteBackendAuthCommandOutput) => void): void;
|
|
85
97
|
deleteBackendAuth(args: DeleteBackendAuthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackendAuthCommandOutput) => void): void;
|
|
98
|
+
/**
|
|
99
|
+
* <p>Removes the specified backend storage resource.</p>
|
|
100
|
+
*/
|
|
101
|
+
deleteBackendStorage(args: DeleteBackendStorageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackendStorageCommandOutput>;
|
|
102
|
+
deleteBackendStorage(args: DeleteBackendStorageCommandInput, cb: (err: any, data?: DeleteBackendStorageCommandOutput) => void): void;
|
|
103
|
+
deleteBackendStorage(args: DeleteBackendStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackendStorageCommandOutput) => void): void;
|
|
86
104
|
/**
|
|
87
105
|
* <p>Deletes the challenge token based on the given appId and sessionId.</p>
|
|
88
106
|
*/
|
|
@@ -125,6 +143,12 @@ export declare class AmplifyBackend extends AmplifyBackendClient {
|
|
|
125
143
|
getBackendJob(args: GetBackendJobCommandInput, options?: __HttpHandlerOptions): Promise<GetBackendJobCommandOutput>;
|
|
126
144
|
getBackendJob(args: GetBackendJobCommandInput, cb: (err: any, data?: GetBackendJobCommandOutput) => void): void;
|
|
127
145
|
getBackendJob(args: GetBackendJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackendJobCommandOutput) => void): void;
|
|
146
|
+
/**
|
|
147
|
+
* <p>Gets details for a backend storage resource.</p>
|
|
148
|
+
*/
|
|
149
|
+
getBackendStorage(args: GetBackendStorageCommandInput, options?: __HttpHandlerOptions): Promise<GetBackendStorageCommandOutput>;
|
|
150
|
+
getBackendStorage(args: GetBackendStorageCommandInput, cb: (err: any, data?: GetBackendStorageCommandOutput) => void): void;
|
|
151
|
+
getBackendStorage(args: GetBackendStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackendStorageCommandOutput) => void): void;
|
|
128
152
|
/**
|
|
129
153
|
* <p>Gets the challenge token based on the given appId and sessionId.</p>
|
|
130
154
|
*/
|
|
@@ -137,12 +161,24 @@ export declare class AmplifyBackend extends AmplifyBackendClient {
|
|
|
137
161
|
importBackendAuth(args: ImportBackendAuthCommandInput, options?: __HttpHandlerOptions): Promise<ImportBackendAuthCommandOutput>;
|
|
138
162
|
importBackendAuth(args: ImportBackendAuthCommandInput, cb: (err: any, data?: ImportBackendAuthCommandOutput) => void): void;
|
|
139
163
|
importBackendAuth(args: ImportBackendAuthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportBackendAuthCommandOutput) => void): void;
|
|
164
|
+
/**
|
|
165
|
+
* <p>Imports an existing backend storage resource.</p>
|
|
166
|
+
*/
|
|
167
|
+
importBackendStorage(args: ImportBackendStorageCommandInput, options?: __HttpHandlerOptions): Promise<ImportBackendStorageCommandOutput>;
|
|
168
|
+
importBackendStorage(args: ImportBackendStorageCommandInput, cb: (err: any, data?: ImportBackendStorageCommandOutput) => void): void;
|
|
169
|
+
importBackendStorage(args: ImportBackendStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportBackendStorageCommandOutput) => void): void;
|
|
140
170
|
/**
|
|
141
171
|
* <p>Lists the jobs for the backend of an Amplify app.</p>
|
|
142
172
|
*/
|
|
143
173
|
listBackendJobs(args: ListBackendJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListBackendJobsCommandOutput>;
|
|
144
174
|
listBackendJobs(args: ListBackendJobsCommandInput, cb: (err: any, data?: ListBackendJobsCommandOutput) => void): void;
|
|
145
175
|
listBackendJobs(args: ListBackendJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackendJobsCommandOutput) => void): void;
|
|
176
|
+
/**
|
|
177
|
+
* <p>The list of S3 buckets in your account.</p>
|
|
178
|
+
*/
|
|
179
|
+
listS3Buckets(args: ListS3BucketsCommandInput, options?: __HttpHandlerOptions): Promise<ListS3BucketsCommandOutput>;
|
|
180
|
+
listS3Buckets(args: ListS3BucketsCommandInput, cb: (err: any, data?: ListS3BucketsCommandOutput) => void): void;
|
|
181
|
+
listS3Buckets(args: ListS3BucketsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListS3BucketsCommandOutput) => void): void;
|
|
146
182
|
/**
|
|
147
183
|
* <p>Removes all backend environments from your Amplify project.</p>
|
|
148
184
|
*/
|
|
@@ -179,4 +215,10 @@ export declare class AmplifyBackend extends AmplifyBackendClient {
|
|
|
179
215
|
updateBackendJob(args: UpdateBackendJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBackendJobCommandOutput>;
|
|
180
216
|
updateBackendJob(args: UpdateBackendJobCommandInput, cb: (err: any, data?: UpdateBackendJobCommandOutput) => void): void;
|
|
181
217
|
updateBackendJob(args: UpdateBackendJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBackendJobCommandOutput) => void): void;
|
|
218
|
+
/**
|
|
219
|
+
* <p>Updates an existing backend storage resource.</p>
|
|
220
|
+
*/
|
|
221
|
+
updateBackendStorage(args: UpdateBackendStorageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBackendStorageCommandOutput>;
|
|
222
|
+
updateBackendStorage(args: UpdateBackendStorageCommandInput, cb: (err: any, data?: UpdateBackendStorageCommandOutput) => void): void;
|
|
223
|
+
updateBackendStorage(args: UpdateBackendStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBackendStorageCommandOutput) => void): void;
|
|
182
224
|
}
|
|
@@ -11,10 +11,12 @@ import { CreateBackendAPICommandInput, CreateBackendAPICommandOutput } from "./c
|
|
|
11
11
|
import { CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput } from "./commands/CreateBackendAuthCommand";
|
|
12
12
|
import { CreateBackendCommandInput, CreateBackendCommandOutput } from "./commands/CreateBackendCommand";
|
|
13
13
|
import { CreateBackendConfigCommandInput, CreateBackendConfigCommandOutput } from "./commands/CreateBackendConfigCommand";
|
|
14
|
+
import { CreateBackendStorageCommandInput, CreateBackendStorageCommandOutput } from "./commands/CreateBackendStorageCommand";
|
|
14
15
|
import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
|
|
15
16
|
import { DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput } from "./commands/DeleteBackendAPICommand";
|
|
16
17
|
import { DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput } from "./commands/DeleteBackendAuthCommand";
|
|
17
18
|
import { DeleteBackendCommandInput, DeleteBackendCommandOutput } from "./commands/DeleteBackendCommand";
|
|
19
|
+
import { DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput } from "./commands/DeleteBackendStorageCommand";
|
|
18
20
|
import { DeleteTokenCommandInput, DeleteTokenCommandOutput } from "./commands/DeleteTokenCommand";
|
|
19
21
|
import { GenerateBackendAPIModelsCommandInput, GenerateBackendAPIModelsCommandOutput } from "./commands/GenerateBackendAPIModelsCommand";
|
|
20
22
|
import { GetBackendAPICommandInput, GetBackendAPICommandOutput } from "./commands/GetBackendAPICommand";
|
|
@@ -22,17 +24,21 @@ import { GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput } fro
|
|
|
22
24
|
import { GetBackendAuthCommandInput, GetBackendAuthCommandOutput } from "./commands/GetBackendAuthCommand";
|
|
23
25
|
import { GetBackendCommandInput, GetBackendCommandOutput } from "./commands/GetBackendCommand";
|
|
24
26
|
import { GetBackendJobCommandInput, GetBackendJobCommandOutput } from "./commands/GetBackendJobCommand";
|
|
27
|
+
import { GetBackendStorageCommandInput, GetBackendStorageCommandOutput } from "./commands/GetBackendStorageCommand";
|
|
25
28
|
import { GetTokenCommandInput, GetTokenCommandOutput } from "./commands/GetTokenCommand";
|
|
26
29
|
import { ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput } from "./commands/ImportBackendAuthCommand";
|
|
30
|
+
import { ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput } from "./commands/ImportBackendStorageCommand";
|
|
27
31
|
import { ListBackendJobsCommandInput, ListBackendJobsCommandOutput } from "./commands/ListBackendJobsCommand";
|
|
32
|
+
import { ListS3BucketsCommandInput, ListS3BucketsCommandOutput } from "./commands/ListS3BucketsCommand";
|
|
28
33
|
import { RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput } from "./commands/RemoveAllBackendsCommand";
|
|
29
34
|
import { RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput } from "./commands/RemoveBackendConfigCommand";
|
|
30
35
|
import { UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput } from "./commands/UpdateBackendAPICommand";
|
|
31
36
|
import { UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput } from "./commands/UpdateBackendAuthCommand";
|
|
32
37
|
import { UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput } from "./commands/UpdateBackendConfigCommand";
|
|
33
38
|
import { UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput } from "./commands/UpdateBackendJobCommand";
|
|
34
|
-
|
|
35
|
-
export declare type
|
|
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;
|
|
36
42
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
37
43
|
/**
|
|
38
44
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -20,7 +20,7 @@ export interface CloneBackendCommandOutput extends CloneBackendResponse, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CloneBackendCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CloneBackendCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CloneBackendCommand extends $Command<CloneBackendCommandInput, CloneBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateBackendAPICommandOutput extends CreateBackendAPIResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateBackendAPICommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateBackendAPICommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateBackendAPICommand extends $Command<CreateBackendAPICommandInput, CreateBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateBackendAuthCommandOutput extends CreateBackendAuthRespons
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateBackendAuthCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateBackendAuthCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateBackendAuthCommand extends $Command<CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateBackendCommandOutput extends CreateBackendResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateBackendCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateBackendCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateBackendCommand extends $Command<CreateBackendCommandInput, CreateBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateBackendConfigCommandOutput extends CreateBackendConfigRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateBackendConfigCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateBackendConfigCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateBackendConfigCommand extends $Command<CreateBackendConfigCommandInput, CreateBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
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 { CreateBackendStorageRequest, CreateBackendStorageResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateBackendStorageCommandInput extends CreateBackendStorageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateBackendStorageCommandOutput extends CreateBackendStorageResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates a backend storage resource.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AmplifyBackendClient, CreateBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
|
|
15
|
+
* // const { AmplifyBackendClient, CreateBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
|
|
16
|
+
* const client = new AmplifyBackendClient(config);
|
|
17
|
+
* const command = new CreateBackendStorageCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link CreateBackendStorageCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link CreateBackendStorageCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class CreateBackendStorageCommand extends $Command<CreateBackendStorageCommandInput, CreateBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
27
|
+
readonly input: CreateBackendStorageCommandInput;
|
|
28
|
+
constructor(input: CreateBackendStorageCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBackendStorageCommandInput, CreateBackendStorageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateTokenCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateTokenCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateTokenCommand extends $Command<CreateTokenCommandInput, CreateTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteBackendAPICommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteBackendAPICommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteBackendAPICommand extends $Command<DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteBackendAuthCommandOutput extends DeleteBackendAuthRespons
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteBackendAuthCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteBackendAuthCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteBackendAuthCommand extends $Command<DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteBackendCommandOutput extends DeleteBackendResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteBackendCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteBackendCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteBackendCommand extends $Command<DeleteBackendCommandInput, DeleteBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
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 { DeleteBackendStorageRequest, DeleteBackendStorageResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteBackendStorageCommandInput extends DeleteBackendStorageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteBackendStorageCommandOutput extends DeleteBackendStorageResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Removes the specified backend storage resource.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AmplifyBackendClient, DeleteBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
|
|
15
|
+
* // const { AmplifyBackendClient, DeleteBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
|
|
16
|
+
* const client = new AmplifyBackendClient(config);
|
|
17
|
+
* const command = new DeleteBackendStorageCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link DeleteBackendStorageCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link DeleteBackendStorageCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class DeleteBackendStorageCommand extends $Command<DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
27
|
+
readonly input: DeleteBackendStorageCommandInput;
|
|
28
|
+
constructor(input: DeleteBackendStorageCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteTokenCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteTokenCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteTokenCommand extends $Command<DeleteTokenCommandInput, DeleteTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GenerateBackendAPIModelsCommandOutput extends GenerateBackendAP
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GenerateBackendAPIModelsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GenerateBackendAPIModelsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GenerateBackendAPIModelsCommand extends $Command<GenerateBackendAPIModelsCommandInput, GenerateBackendAPIModelsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetBackendAPICommandOutput extends GetBackendAPIResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetBackendAPICommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetBackendAPICommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetBackendAPICommand extends $Command<GetBackendAPICommandInput, GetBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetBackendAPIModelsCommandOutput extends GetBackendAPIModelsRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetBackendAPIModelsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetBackendAPIModelsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetBackendAPIModelsCommand extends $Command<GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetBackendAuthCommandOutput extends GetBackendAuthResponse, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetBackendAuthCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetBackendAuthCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetBackendAuthCommand extends $Command<GetBackendAuthCommandInput, GetBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetBackendCommandOutput extends GetBackendResponse, __MetadataB
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetBackendCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetBackendCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetBackendCommand extends $Command<GetBackendCommandInput, GetBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetBackendJobCommandOutput extends GetBackendJobResponse, __Met
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetBackendJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetBackendJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetBackendJobCommand extends $Command<GetBackendJobCommandInput, GetBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Gets details for a backend storage resource.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AmplifyBackendClient, GetBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
|
|
15
|
+
* // const { AmplifyBackendClient, GetBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
|
|
16
|
+
* const client = new AmplifyBackendClient(config);
|
|
17
|
+
* const command = new GetBackendStorageCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link GetBackendStorageCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link GetBackendStorageCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class GetBackendStorageCommand extends $Command<GetBackendStorageCommandInput, GetBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
27
|
+
readonly input: GetBackendStorageCommandInput;
|
|
28
|
+
constructor(input: GetBackendStorageCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendStorageCommandInput, GetBackendStorageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBeare
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetTokenCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetTokenCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetTokenCommand extends $Command<GetTokenCommandInput, GetTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ImportBackendAuthCommandOutput extends ImportBackendAuthRespons
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ImportBackendAuthCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ImportBackendAuthCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ImportBackendAuthCommand extends $Command<ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Imports an existing backend storage resource.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AmplifyBackendClient, ImportBackendStorageCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
|
|
15
|
+
* // const { AmplifyBackendClient, ImportBackendStorageCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
|
|
16
|
+
* const client = new AmplifyBackendClient(config);
|
|
17
|
+
* const command = new ImportBackendStorageCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ImportBackendStorageCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ImportBackendStorageCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ImportBackendStorageCommand extends $Command<ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
27
|
+
readonly input: ImportBackendStorageCommandInput;
|
|
28
|
+
constructor(input: ImportBackendStorageCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListBackendJobsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListBackendJobsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListBackendJobsCommand extends $Command<ListBackendJobsCommandInput, ListBackendJobsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>The list of S3 buckets in your account.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { AmplifyBackendClient, ListS3BucketsCommand } from "@aws-sdk/client-amplifybackend"; // ES Modules import
|
|
15
|
+
* // const { AmplifyBackendClient, ListS3BucketsCommand } = require("@aws-sdk/client-amplifybackend"); // CommonJS import
|
|
16
|
+
* const client = new AmplifyBackendClient(config);
|
|
17
|
+
* const command = new ListS3BucketsCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListS3BucketsCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListS3BucketsCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListS3BucketsCommand extends $Command<ListS3BucketsCommandInput, ListS3BucketsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
27
|
+
readonly input: ListS3BucketsCommandInput;
|
|
28
|
+
constructor(input: ListS3BucketsCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListS3BucketsCommandInput, ListS3BucketsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsRespons
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RemoveAllBackendsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RemoveAllBackendsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RemoveAllBackendsCommand extends $Command<RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RemoveBackendConfigCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RemoveBackendConfigCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RemoveBackendConfigCommand extends $Command<RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateBackendAPICommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateBackendAPICommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateBackendAPICommand extends $Command<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateBackendAuthCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateBackendAuthCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateBackendAuthCommand extends $Command<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateBackendConfigCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateBackendConfigCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateBackendConfigCommand extends $Command<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateBackendJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateBackendJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link AmplifyBackendClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateBackendJobCommand extends $Command<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
|