@aws-sdk/client-amplifybackend 3.295.0 → 3.297.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/dist-types/AmplifyBackend.d.ts +32 -0
- package/dist-types/AmplifyBackendClient.d.ts +24 -4
- package/dist-types/commands/CloneBackendCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendConfigCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +16 -0
- package/dist-types/commands/GenerateBackendAPIModelsCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/GetBackendAPIModelsCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendJobCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/GetTokenCommand.d.ts +16 -0
- package/dist-types/commands/ImportBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/ImportBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/ListBackendJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListS3BucketsCommand.d.ts +16 -0
- package/dist-types/commands/RemoveAllBackendsCommand.d.ts +16 -0
- package/dist-types/commands/RemoveBackendConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendJobCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendStorageCommand.d.ts +16 -0
- package/dist-types/models/AmplifyBackendServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +222 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { ImportBackendAuthRequest, ImportBackendAuthResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ImportBackendAuthCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ImportBackendAuthCommandInput extends ImportBackendAuthRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ImportBackendAuthCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ImportBackendAuthCommandOutput extends ImportBackendAuthResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Imports an existing backend authentication resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ImportBackendAuthCommandOutput extends ImportBackendAuthRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ImportBackendAuthCommandInput - {@link ImportBackendAuthCommandInput}
|
|
34
|
+
* @returns {@link ImportBackendAuthCommandOutput}
|
|
28
35
|
* @see {@link ImportBackendAuthCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ImportBackendAuthCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ImportBackendAuthCommandOutput extends ImportBackendAuthRespons
|
|
|
46
53
|
export declare class ImportBackendAuthCommand extends $Command<ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: ImportBackendAuthCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ImportBackendAuthCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { ImportBackendStorageRequest, ImportBackendStorageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ImportBackendStorageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ImportBackendStorageCommandInput extends ImportBackendStorageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ImportBackendStorageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ImportBackendStorageCommandOutput extends ImportBackendStorageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Imports an existing backend storage resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ImportBackendStorageCommandOutput extends ImportBackendStorageR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ImportBackendStorageCommandInput - {@link ImportBackendStorageCommandInput}
|
|
34
|
+
* @returns {@link ImportBackendStorageCommandOutput}
|
|
28
35
|
* @see {@link ImportBackendStorageCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ImportBackendStorageCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ImportBackendStorageCommandOutput extends ImportBackendStorageR
|
|
|
46
53
|
export declare class ImportBackendStorageCommand extends $Command<ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: ImportBackendStorageCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ImportBackendStorageCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { ListBackendJobsRequest, ListBackendJobsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListBackendJobsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListBackendJobsCommandInput extends ListBackendJobsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListBackendJobsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the jobs for the backend of an Amplify app.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListBackendJobsCommandInput - {@link ListBackendJobsCommandInput}
|
|
34
|
+
* @returns {@link ListBackendJobsCommandOutput}
|
|
28
35
|
* @see {@link ListBackendJobsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListBackendJobsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, _
|
|
|
46
53
|
export declare class ListBackendJobsCommand extends $Command<ListBackendJobsCommandInput, ListBackendJobsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: ListBackendJobsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListBackendJobsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListBackendJobsCommandInput, ListBackendJobsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { ListS3BucketsRequest, ListS3BucketsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListS3BucketsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListS3BucketsCommandInput extends ListS3BucketsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListS3BucketsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The list of S3 buckets in your account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListS3BucketsCommandInput - {@link ListS3BucketsCommandInput}
|
|
34
|
+
* @returns {@link ListS3BucketsCommandOutput}
|
|
28
35
|
* @see {@link ListS3BucketsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListS3BucketsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __Met
|
|
|
46
53
|
export declare class ListS3BucketsCommand extends $Command<ListS3BucketsCommandInput, ListS3BucketsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: ListS3BucketsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListS3BucketsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListS3BucketsCommandInput, ListS3BucketsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { RemoveAllBackendsRequest, RemoveAllBackendsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemoveAllBackendsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemoveAllBackendsCommandInput extends RemoveAllBackendsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemoveAllBackendsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes all backend environments from your Amplify project.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RemoveAllBackendsCommandInput - {@link RemoveAllBackendsCommandInput}
|
|
34
|
+
* @returns {@link RemoveAllBackendsCommandOutput}
|
|
28
35
|
* @see {@link RemoveAllBackendsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RemoveAllBackendsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsRespons
|
|
|
46
53
|
export declare class RemoveAllBackendsCommand extends $Command<RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: RemoveAllBackendsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: RemoveAllBackendsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { RemoveBackendConfigRequest, RemoveBackendConfigResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemoveBackendConfigCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemoveBackendConfigCommandInput extends RemoveBackendConfigRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemoveBackendConfigCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the AWS resources required to access the Amplify Admin UI.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RemoveBackendConfigCommandInput - {@link RemoveBackendConfigCommandInput}
|
|
34
|
+
* @returns {@link RemoveBackendConfigCommandOutput}
|
|
28
35
|
* @see {@link RemoveBackendConfigCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RemoveBackendConfigCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigRes
|
|
|
46
53
|
export declare class RemoveBackendConfigCommand extends $Command<RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: RemoveBackendConfigCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: RemoveBackendConfigCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { UpdateBackendAPIRequest, UpdateBackendAPIResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateBackendAPICommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateBackendAPICommandInput extends UpdateBackendAPIRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateBackendAPICommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing backend API resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateBackendAPICommandInput - {@link UpdateBackendAPICommandInput}
|
|
34
|
+
* @returns {@link UpdateBackendAPICommandOutput}
|
|
28
35
|
* @see {@link UpdateBackendAPICommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateBackendAPICommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse,
|
|
|
46
53
|
export declare class UpdateBackendAPICommand extends $Command<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateBackendAPICommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateBackendAPICommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { UpdateBackendAuthRequest, UpdateBackendAuthResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateBackendAuthCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateBackendAuthCommandInput extends UpdateBackendAuthRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateBackendAuthCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing backend authentication resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateBackendAuthCommandInput - {@link UpdateBackendAuthCommandInput}
|
|
34
|
+
* @returns {@link UpdateBackendAuthCommandOutput}
|
|
28
35
|
* @see {@link UpdateBackendAuthCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateBackendAuthCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons
|
|
|
46
53
|
export declare class UpdateBackendAuthCommand extends $Command<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateBackendAuthCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateBackendAuthCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { UpdateBackendConfigRequest, UpdateBackendConfigResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateBackendConfigCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateBackendConfigCommandInput extends UpdateBackendConfigRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateBackendConfigCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the AWS resources required to access the Amplify Admin UI.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateBackendConfigCommandInput - {@link UpdateBackendConfigCommandInput}
|
|
34
|
+
* @returns {@link UpdateBackendConfigCommandOutput}
|
|
28
35
|
* @see {@link UpdateBackendConfigCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateBackendConfigCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigRes
|
|
|
46
53
|
export declare class UpdateBackendConfigCommand extends $Command<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateBackendConfigCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateBackendConfigCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { UpdateBackendJobRequest, UpdateBackendJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateBackendJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateBackendJobCommandInput extends UpdateBackendJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateBackendJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a specific job.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateBackendJobCommandInput - {@link UpdateBackendJobCommandInput}
|
|
34
|
+
* @returns {@link UpdateBackendJobCommandOutput}
|
|
28
35
|
* @see {@link UpdateBackendJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateBackendJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse,
|
|
|
46
53
|
export declare class UpdateBackendJobCommand extends $Command<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateBackendJobCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateBackendJobCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { UpdateBackendStorageRequest, UpdateBackendStorageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateBackendStorageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateBackendStorageCommandInput extends UpdateBackendStorageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateBackendStorageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateBackendStorageCommandOutput extends UpdateBackendStorageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing backend storage resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateBackendStorageCommandOutput extends UpdateBackendStorageR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateBackendStorageCommandInput - {@link UpdateBackendStorageCommandInput}
|
|
34
|
+
* @returns {@link UpdateBackendStorageCommandOutput}
|
|
28
35
|
* @see {@link UpdateBackendStorageCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateBackendStorageCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateBackendStorageCommandOutput extends UpdateBackendStorageR
|
|
|
46
53
|
export declare class UpdateBackendStorageCommand extends $Command<UpdateBackendStorageCommandInput, UpdateBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateBackendStorageCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateBackendStorageCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendStorageCommandInput, UpdateBackendStorageCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from AmplifyBackend service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class AmplifyBackendServiceException extends __ServiceException {
|