@aws-sdk/client-amplifybackend 3.288.0 → 3.290.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/commands/CloneBackendCommand.d.ts +13 -0
- package/dist-types/commands/CreateBackendAPICommand.d.ts +13 -0
- package/dist-types/commands/CreateBackendAuthCommand.d.ts +13 -0
- package/dist-types/commands/CreateBackendCommand.d.ts +13 -0
- package/dist-types/commands/CreateBackendConfigCommand.d.ts +13 -0
- package/dist-types/commands/CreateBackendStorageCommand.d.ts +13 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +13 -0
- package/dist-types/commands/DeleteBackendAPICommand.d.ts +13 -0
- package/dist-types/commands/DeleteBackendAuthCommand.d.ts +13 -0
- package/dist-types/commands/DeleteBackendCommand.d.ts +13 -0
- package/dist-types/commands/DeleteBackendStorageCommand.d.ts +13 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +13 -0
- package/dist-types/commands/GenerateBackendAPIModelsCommand.d.ts +13 -0
- package/dist-types/commands/GetBackendAPICommand.d.ts +13 -0
- package/dist-types/commands/GetBackendAPIModelsCommand.d.ts +13 -0
- package/dist-types/commands/GetBackendAuthCommand.d.ts +13 -0
- package/dist-types/commands/GetBackendCommand.d.ts +13 -0
- package/dist-types/commands/GetBackendJobCommand.d.ts +13 -0
- package/dist-types/commands/GetBackendStorageCommand.d.ts +13 -0
- package/dist-types/commands/GetTokenCommand.d.ts +13 -0
- package/dist-types/commands/ImportBackendAuthCommand.d.ts +13 -0
- package/dist-types/commands/ImportBackendStorageCommand.d.ts +13 -0
- package/dist-types/commands/ListBackendJobsCommand.d.ts +13 -0
- package/dist-types/commands/ListS3BucketsCommand.d.ts +13 -0
- package/dist-types/commands/RemoveAllBackendsCommand.d.ts +13 -0
- package/dist-types/commands/RemoveBackendConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateBackendAPICommand.d.ts +13 -0
- package/dist-types/commands/UpdateBackendAuthCommand.d.ts +13 -0
- package/dist-types/commands/UpdateBackendConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateBackendJobCommand.d.ts +13 -0
- package/dist-types/commands/UpdateBackendStorageCommand.d.ts +13 -0
- package/package.json +29 -29
|
@@ -29,6 +29,19 @@ export interface CloneBackendCommandOutput extends CloneBackendResponse, __Metad
|
|
|
29
29
|
* @see {@link CloneBackendCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CloneBackendCommand extends $Command<CloneBackendCommandInput, CloneBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: CloneBackendCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CreateBackendAPICommandOutput extends CreateBackendAPIResponse,
|
|
|
29
29
|
* @see {@link CreateBackendAPICommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CreateBackendAPICommand extends $Command<CreateBackendAPICommandInput, CreateBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: CreateBackendAPICommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CreateBackendAuthCommandOutput extends CreateBackendAuthRespons
|
|
|
29
29
|
* @see {@link CreateBackendAuthCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CreateBackendAuthCommand extends $Command<CreateBackendAuthCommandInput, CreateBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: CreateBackendAuthCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CreateBackendCommandOutput extends CreateBackendResponse, __Met
|
|
|
29
29
|
* @see {@link CreateBackendCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CreateBackendCommand extends $Command<CreateBackendCommandInput, CreateBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: CreateBackendCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CreateBackendConfigCommandOutput extends CreateBackendConfigRes
|
|
|
29
29
|
* @see {@link CreateBackendConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CreateBackendConfigCommand extends $Command<CreateBackendConfigCommandInput, CreateBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: CreateBackendConfigCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CreateBackendStorageCommandOutput extends CreateBackendStorageR
|
|
|
29
29
|
* @see {@link CreateBackendStorageCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CreateBackendStorageCommand extends $Command<CreateBackendStorageCommandInput, CreateBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: CreateBackendStorageCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
|
|
|
29
29
|
* @see {@link CreateTokenCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CreateTokenCommand extends $Command<CreateTokenCommandInput, CreateTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: CreateTokenCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse,
|
|
|
29
29
|
* @see {@link DeleteBackendAPICommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteBackendAPICommand extends $Command<DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteBackendAPICommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteBackendAuthCommandOutput extends DeleteBackendAuthRespons
|
|
|
29
29
|
* @see {@link DeleteBackendAuthCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteBackendAuthCommand extends $Command<DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteBackendAuthCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteBackendCommandOutput extends DeleteBackendResponse, __Met
|
|
|
29
29
|
* @see {@link DeleteBackendCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteBackendCommand extends $Command<DeleteBackendCommandInput, DeleteBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteBackendCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteBackendStorageCommandOutput extends DeleteBackendStorageR
|
|
|
29
29
|
* @see {@link DeleteBackendStorageCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteBackendStorageCommand extends $Command<DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteBackendStorageCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
|
|
|
29
29
|
* @see {@link DeleteTokenCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DeleteTokenCommand extends $Command<DeleteTokenCommandInput, DeleteTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: DeleteTokenCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GenerateBackendAPIModelsCommandOutput extends GenerateBackendAP
|
|
|
29
29
|
* @see {@link GenerateBackendAPIModelsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GenerateBackendAPIModelsCommand extends $Command<GenerateBackendAPIModelsCommandInput, GenerateBackendAPIModelsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GenerateBackendAPIModelsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetBackendAPICommandOutput extends GetBackendAPIResponse, __Met
|
|
|
29
29
|
* @see {@link GetBackendAPICommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetBackendAPICommand extends $Command<GetBackendAPICommandInput, GetBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GetBackendAPICommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetBackendAPIModelsCommandOutput extends GetBackendAPIModelsRes
|
|
|
29
29
|
* @see {@link GetBackendAPIModelsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetBackendAPIModelsCommand extends $Command<GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GetBackendAPIModelsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetBackendAuthCommandOutput extends GetBackendAuthResponse, __M
|
|
|
29
29
|
* @see {@link GetBackendAuthCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetBackendAuthCommand extends $Command<GetBackendAuthCommandInput, GetBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GetBackendAuthCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetBackendCommandOutput extends GetBackendResponse, __MetadataB
|
|
|
29
29
|
* @see {@link GetBackendCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetBackendCommand extends $Command<GetBackendCommandInput, GetBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GetBackendCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetBackendJobCommandOutput extends GetBackendJobResponse, __Met
|
|
|
29
29
|
* @see {@link GetBackendJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetBackendJobCommand extends $Command<GetBackendJobCommandInput, GetBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GetBackendJobCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetBackendStorageCommandOutput extends GetBackendStorageRespons
|
|
|
29
29
|
* @see {@link GetBackendStorageCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetBackendStorageCommand extends $Command<GetBackendStorageCommandInput, GetBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GetBackendStorageCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBeare
|
|
|
29
29
|
* @see {@link GetTokenCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class GetTokenCommand extends $Command<GetTokenCommandInput, GetTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: GetTokenCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ImportBackendAuthCommandOutput extends ImportBackendAuthRespons
|
|
|
29
29
|
* @see {@link ImportBackendAuthCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ImportBackendAuthCommand extends $Command<ImportBackendAuthCommandInput, ImportBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: ImportBackendAuthCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ImportBackendStorageCommandOutput extends ImportBackendStorageR
|
|
|
29
29
|
* @see {@link ImportBackendStorageCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ImportBackendStorageCommand extends $Command<ImportBackendStorageCommandInput, ImportBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: ImportBackendStorageCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, _
|
|
|
29
29
|
* @see {@link ListBackendJobsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListBackendJobsCommand extends $Command<ListBackendJobsCommandInput, ListBackendJobsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: ListBackendJobsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __Met
|
|
|
29
29
|
* @see {@link ListS3BucketsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListS3BucketsCommand extends $Command<ListS3BucketsCommandInput, ListS3BucketsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: ListS3BucketsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface RemoveAllBackendsCommandOutput extends RemoveAllBackendsRespons
|
|
|
29
29
|
* @see {@link RemoveAllBackendsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class RemoveAllBackendsCommand extends $Command<RemoveAllBackendsCommandInput, RemoveAllBackendsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: RemoveAllBackendsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface RemoveBackendConfigCommandOutput extends RemoveBackendConfigRes
|
|
|
29
29
|
* @see {@link RemoveBackendConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class RemoveBackendConfigCommand extends $Command<RemoveBackendConfigCommandInput, RemoveBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: RemoveBackendConfigCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse,
|
|
|
29
29
|
* @see {@link UpdateBackendAPICommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class UpdateBackendAPICommand extends $Command<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: UpdateBackendAPICommandInput;
|
|
@@ -29,6 +29,19 @@ export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthRespons
|
|
|
29
29
|
* @see {@link UpdateBackendAuthCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class UpdateBackendAuthCommand extends $Command<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: UpdateBackendAuthCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigRes
|
|
|
29
29
|
* @see {@link UpdateBackendConfigCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class UpdateBackendConfigCommand extends $Command<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: UpdateBackendConfigCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse,
|
|
|
29
29
|
* @see {@link UpdateBackendJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class UpdateBackendJobCommand extends $Command<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: UpdateBackendJobCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface UpdateBackendStorageCommandOutput extends UpdateBackendStorageR
|
|
|
29
29
|
* @see {@link UpdateBackendStorageCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>An error returned if a request is not formed properly.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link GatewayTimeoutException} (server fault)
|
|
36
|
+
* <p>An error returned if there's a temporary issue with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotFoundException} (client fault)
|
|
39
|
+
* <p>An error returned when a specific resource type is not found.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
42
|
+
* <p>An error that is returned when a limit of a specific type has been exceeded.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class UpdateBackendStorageCommand extends $Command<UpdateBackendStorageCommandInput, UpdateBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
34
47
|
readonly input: UpdateBackendStorageCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplifybackend",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplifybackend Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|