@aws-sdk/client-amplifybackend 3.1087.0 → 3.1088.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/AmplifyBackend.d.ts +98 -115
- package/dist-types/ts3.4/AmplifyBackendClient.d.ts +10 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CloneBackendCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateBackendAPICommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateBackendAuthCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBackendCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateBackendConfigCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteBackendAPICommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteBackendAuthCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteBackendCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GenerateBackendAPIModelsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetBackendAPICommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetBackendAPIModelsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBackendAuthCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetBackendCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetBackendJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetTokenCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ImportBackendAuthCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListBackendJobsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/RemoveAllBackendsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RemoveBackendConfigCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateBackendAPICommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateBackendAuthCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateBackendConfigCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateBackendJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -12
- package/dist-types/ts3.4/models/errors.d.ts +3 -9
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetBackendStorageRequest,
|
|
4
|
-
GetBackendStorageResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetBackendStorageRequest, GetBackendStorageResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetBackendStorageCommandInput
|
|
8
|
-
extends GetBackendStorageRequest {}
|
|
4
|
+
export interface GetBackendStorageCommandInput extends GetBackendStorageRequest {}
|
|
9
5
|
export interface GetBackendStorageCommandOutput
|
|
10
|
-
extends GetBackendStorageResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetBackendStorageResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetBackendStorageCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetBackendStorageCommandInput
|
|
9
|
+
input: GetBackendStorageCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetBackendStorageCommandInput,
|
|
17
12
|
GetBackendStorageCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetBackendStorageCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetBackendStorageCommandInput
|
|
18
|
+
input: GetBackendStorageCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetBackendStorageCommandInput,
|
|
26
21
|
GetBackendStorageCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetTokenRequest, GetTokenResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetTokenCommandInput extends GetTokenRequest {}
|
|
5
|
-
export interface GetTokenCommandOutput
|
|
6
|
-
extends GetTokenResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetTokenCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetTokenCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetTokenCommandInput,
|
|
11
11
|
GetTokenCommandOutput,
|
|
12
12
|
import("..").AmplifyBackendClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetTokenCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetTokenCommandInput,
|
|
18
20
|
GetTokenCommandOutput,
|
|
19
21
|
import("..").AmplifyBackendClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ImportBackendAuthRequest,
|
|
4
|
-
ImportBackendAuthResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ImportBackendAuthRequest, ImportBackendAuthResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ImportBackendAuthCommandInput
|
|
8
|
-
extends ImportBackendAuthRequest {}
|
|
4
|
+
export interface ImportBackendAuthCommandInput extends ImportBackendAuthRequest {}
|
|
9
5
|
export interface ImportBackendAuthCommandOutput
|
|
10
|
-
extends ImportBackendAuthResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ImportBackendAuthResponse, __MetadataBearer {}
|
|
12
7
|
declare const ImportBackendAuthCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ImportBackendAuthCommandInput
|
|
9
|
+
input: ImportBackendAuthCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ImportBackendAuthCommandInput,
|
|
17
12
|
ImportBackendAuthCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ImportBackendAuthCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ImportBackendAuthCommandInput
|
|
18
|
+
input: ImportBackendAuthCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ImportBackendAuthCommandInput,
|
|
26
21
|
ImportBackendAuthCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ImportBackendStorageRequest,
|
|
4
|
-
ImportBackendStorageResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ImportBackendStorageRequest, ImportBackendStorageResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ImportBackendStorageCommandInput
|
|
8
|
-
extends ImportBackendStorageRequest {}
|
|
4
|
+
export interface ImportBackendStorageCommandInput extends ImportBackendStorageRequest {}
|
|
9
5
|
export interface ImportBackendStorageCommandOutput
|
|
10
|
-
extends ImportBackendStorageResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ImportBackendStorageResponse, __MetadataBearer {}
|
|
12
7
|
declare const ImportBackendStorageCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ImportBackendStorageCommandInput
|
|
9
|
+
input: ImportBackendStorageCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ImportBackendStorageCommandInput,
|
|
17
12
|
ImportBackendStorageCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ImportBackendStorageCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ImportBackendStorageCommandInput
|
|
18
|
+
input: ImportBackendStorageCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ImportBackendStorageCommandInput,
|
|
26
21
|
ImportBackendStorageCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListBackendJobsRequest,
|
|
4
|
-
ListBackendJobsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListBackendJobsRequest, ListBackendJobsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListBackendJobsCommandInput extends ListBackendJobsRequest {}
|
|
8
|
-
export interface ListBackendJobsCommandOutput
|
|
9
|
-
extends ListBackendJobsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListBackendJobsCommandOutput extends ListBackendJobsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListBackendJobsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListBackendJobsCommandInput
|
|
8
|
+
input: ListBackendJobsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListBackendJobsCommandInput,
|
|
16
11
|
ListBackendJobsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListBackendJobsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListBackendJobsCommandInput
|
|
17
|
+
input: ListBackendJobsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListBackendJobsCommandInput,
|
|
25
20
|
ListBackendJobsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListS3BucketsRequest,
|
|
4
|
-
ListS3BucketsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListS3BucketsRequest, ListS3BucketsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListS3BucketsCommandInput extends ListS3BucketsRequest {}
|
|
8
|
-
export interface ListS3BucketsCommandOutput
|
|
9
|
-
extends ListS3BucketsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListS3BucketsCommandOutput extends ListS3BucketsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListS3BucketsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListS3BucketsCommandInput
|
|
8
|
+
input: ListS3BucketsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListS3BucketsCommandInput,
|
|
16
11
|
ListS3BucketsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RemoveAllBackendsRequest,
|
|
4
|
-
RemoveAllBackendsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RemoveAllBackendsRequest, RemoveAllBackendsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface RemoveAllBackendsCommandInput
|
|
8
|
-
extends RemoveAllBackendsRequest {}
|
|
4
|
+
export interface RemoveAllBackendsCommandInput extends RemoveAllBackendsRequest {}
|
|
9
5
|
export interface RemoveAllBackendsCommandOutput
|
|
10
|
-
extends RemoveAllBackendsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends RemoveAllBackendsResponse, __MetadataBearer {}
|
|
12
7
|
declare const RemoveAllBackendsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: RemoveAllBackendsCommandInput
|
|
9
|
+
input: RemoveAllBackendsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
RemoveAllBackendsCommandInput,
|
|
17
12
|
RemoveAllBackendsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const RemoveAllBackendsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: RemoveAllBackendsCommandInput
|
|
18
|
+
input: RemoveAllBackendsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
RemoveAllBackendsCommandInput,
|
|
26
21
|
RemoveAllBackendsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RemoveBackendConfigRequest,
|
|
4
|
-
RemoveBackendConfigResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RemoveBackendConfigRequest, RemoveBackendConfigResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface RemoveBackendConfigCommandInput
|
|
8
|
-
extends RemoveBackendConfigRequest {}
|
|
4
|
+
export interface RemoveBackendConfigCommandInput extends RemoveBackendConfigRequest {}
|
|
9
5
|
export interface RemoveBackendConfigCommandOutput
|
|
10
|
-
extends RemoveBackendConfigResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends RemoveBackendConfigResponse, __MetadataBearer {}
|
|
12
7
|
declare const RemoveBackendConfigCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: RemoveBackendConfigCommandInput
|
|
9
|
+
input: RemoveBackendConfigCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
RemoveBackendConfigCommandInput,
|
|
17
12
|
RemoveBackendConfigCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const RemoveBackendConfigCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: RemoveBackendConfigCommandInput
|
|
18
|
+
input: RemoveBackendConfigCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
RemoveBackendConfigCommandInput,
|
|
26
21
|
RemoveBackendConfigCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateBackendAPIRequest,
|
|
4
|
-
UpdateBackendAPIResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateBackendAPIRequest, UpdateBackendAPIResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateBackendAPICommandInput extends UpdateBackendAPIRequest {}
|
|
8
|
-
export interface UpdateBackendAPICommandOutput
|
|
9
|
-
extends UpdateBackendAPIResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateBackendAPICommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateBackendAPICommandInput
|
|
8
|
+
input: UpdateBackendAPICommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateBackendAPICommandInput,
|
|
16
11
|
UpdateBackendAPICommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateBackendAPICommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateBackendAPICommandInput
|
|
17
|
+
input: UpdateBackendAPICommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateBackendAPICommandInput,
|
|
25
20
|
UpdateBackendAPICommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateBackendAuthRequest,
|
|
4
|
-
UpdateBackendAuthResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateBackendAuthRequest, UpdateBackendAuthResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateBackendAuthCommandInput
|
|
8
|
-
extends UpdateBackendAuthRequest {}
|
|
4
|
+
export interface UpdateBackendAuthCommandInput extends UpdateBackendAuthRequest {}
|
|
9
5
|
export interface UpdateBackendAuthCommandOutput
|
|
10
|
-
extends UpdateBackendAuthResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateBackendAuthResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateBackendAuthCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateBackendAuthCommandInput
|
|
9
|
+
input: UpdateBackendAuthCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateBackendAuthCommandInput,
|
|
17
12
|
UpdateBackendAuthCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateBackendAuthCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateBackendAuthCommandInput
|
|
18
|
+
input: UpdateBackendAuthCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateBackendAuthCommandInput,
|
|
26
21
|
UpdateBackendAuthCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateBackendConfigRequest,
|
|
4
|
-
UpdateBackendConfigResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateBackendConfigRequest, UpdateBackendConfigResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateBackendConfigCommandInput
|
|
8
|
-
extends UpdateBackendConfigRequest {}
|
|
4
|
+
export interface UpdateBackendConfigCommandInput extends UpdateBackendConfigRequest {}
|
|
9
5
|
export interface UpdateBackendConfigCommandOutput
|
|
10
|
-
extends UpdateBackendConfigResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateBackendConfigResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateBackendConfigCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateBackendConfigCommandInput
|
|
9
|
+
input: UpdateBackendConfigCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateBackendConfigCommandInput,
|
|
17
12
|
UpdateBackendConfigCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateBackendConfigCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateBackendConfigCommandInput
|
|
18
|
+
input: UpdateBackendConfigCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateBackendConfigCommandInput,
|
|
26
21
|
UpdateBackendConfigCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateBackendJobRequest,
|
|
4
|
-
UpdateBackendJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateBackendJobRequest, UpdateBackendJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateBackendJobCommandInput extends UpdateBackendJobRequest {}
|
|
8
|
-
export interface UpdateBackendJobCommandOutput
|
|
9
|
-
extends UpdateBackendJobResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateBackendJobCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateBackendJobCommandInput
|
|
8
|
+
input: UpdateBackendJobCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateBackendJobCommandInput,
|
|
16
11
|
UpdateBackendJobCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateBackendJobCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateBackendJobCommandInput
|
|
17
|
+
input: UpdateBackendJobCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateBackendJobCommandInput,
|
|
25
20
|
UpdateBackendJobCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateBackendStorageRequest,
|
|
4
|
-
UpdateBackendStorageResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateBackendStorageRequest, UpdateBackendStorageResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateBackendStorageCommandInput
|
|
8
|
-
extends UpdateBackendStorageRequest {}
|
|
4
|
+
export interface UpdateBackendStorageCommandInput extends UpdateBackendStorageRequest {}
|
|
9
5
|
export interface UpdateBackendStorageCommandOutput
|
|
10
|
-
extends UpdateBackendStorageResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateBackendStorageResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateBackendStorageCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateBackendStorageCommandInput
|
|
9
|
+
input: UpdateBackendStorageCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateBackendStorageCommandInput,
|
|
17
12
|
UpdateBackendStorageCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateBackendStorageCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateBackendStorageCommandInput
|
|
18
|
+
input: UpdateBackendStorageCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateBackendStorageCommandInput,
|
|
26
21
|
UpdateBackendStorageCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface AmplifyBackendExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -19,8 +19,7 @@ export declare const ResolutionStrategy: {
|
|
|
19
19
|
readonly NONE: "NONE";
|
|
20
20
|
readonly OPTIMISTIC_CONCURRENCY: "OPTIMISTIC_CONCURRENCY";
|
|
21
21
|
};
|
|
22
|
-
export type ResolutionStrategy =
|
|
23
|
-
(typeof ResolutionStrategy)[keyof typeof ResolutionStrategy];
|
|
22
|
+
export type ResolutionStrategy = (typeof ResolutionStrategy)[keyof typeof ResolutionStrategy];
|
|
24
23
|
export declare const AuthResources: {
|
|
25
24
|
readonly IDENTITY_POOL_AND_USER_POOL: "IDENTITY_POOL_AND_USER_POOL";
|
|
26
25
|
readonly USER_POOL_ONLY: "USER_POOL_ONLY";
|
|
@@ -34,8 +33,7 @@ export declare const DeliveryMethod: {
|
|
|
34
33
|
readonly EMAIL: "EMAIL";
|
|
35
34
|
readonly SMS: "SMS";
|
|
36
35
|
};
|
|
37
|
-
export type DeliveryMethod =
|
|
38
|
-
(typeof DeliveryMethod)[keyof typeof DeliveryMethod];
|
|
36
|
+
export type DeliveryMethod = (typeof DeliveryMethod)[keyof typeof DeliveryMethod];
|
|
39
37
|
export declare const MFAMode: {
|
|
40
38
|
readonly OFF: "OFF";
|
|
41
39
|
readonly ON: "ON";
|
|
@@ -46,14 +44,12 @@ export declare const MfaTypesElement: {
|
|
|
46
44
|
readonly SMS: "SMS";
|
|
47
45
|
readonly TOTP: "TOTP";
|
|
48
46
|
};
|
|
49
|
-
export type MfaTypesElement =
|
|
50
|
-
(typeof MfaTypesElement)[keyof typeof MfaTypesElement];
|
|
47
|
+
export type MfaTypesElement = (typeof MfaTypesElement)[keyof typeof MfaTypesElement];
|
|
51
48
|
export declare const OAuthGrantType: {
|
|
52
49
|
readonly CODE: "CODE";
|
|
53
50
|
readonly IMPLICIT: "IMPLICIT";
|
|
54
51
|
};
|
|
55
|
-
export type OAuthGrantType =
|
|
56
|
-
(typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
52
|
+
export type OAuthGrantType = (typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
57
53
|
export declare const OAuthScopesElement: {
|
|
58
54
|
readonly AWS_COGNITO_SIGNIN_USER_ADMIN: "AWS_COGNITO_SIGNIN_USER_ADMIN";
|
|
59
55
|
readonly EMAIL: "EMAIL";
|
|
@@ -61,8 +57,7 @@ export declare const OAuthScopesElement: {
|
|
|
61
57
|
readonly PHONE: "PHONE";
|
|
62
58
|
readonly PROFILE: "PROFILE";
|
|
63
59
|
};
|
|
64
|
-
export type OAuthScopesElement =
|
|
65
|
-
(typeof OAuthScopesElement)[keyof typeof OAuthScopesElement];
|
|
60
|
+
export type OAuthScopesElement = (typeof OAuthScopesElement)[keyof typeof OAuthScopesElement];
|
|
66
61
|
export declare const RequiredSignUpAttributesElement: {
|
|
67
62
|
readonly ADDRESS: "ADDRESS";
|
|
68
63
|
readonly BIRTHDATE: "BIRTHDATE";
|
|
@@ -96,8 +91,7 @@ export declare const AuthenticatedElement: {
|
|
|
96
91
|
readonly DELETE: "DELETE";
|
|
97
92
|
readonly READ: "READ";
|
|
98
93
|
};
|
|
99
|
-
export type AuthenticatedElement =
|
|
100
|
-
(typeof AuthenticatedElement)[keyof typeof AuthenticatedElement];
|
|
94
|
+
export type AuthenticatedElement = (typeof AuthenticatedElement)[keyof typeof AuthenticatedElement];
|
|
101
95
|
export declare const UnAuthenticatedElement: {
|
|
102
96
|
readonly CREATE_AND_UPDATE: "CREATE_AND_UPDATE";
|
|
103
97
|
readonly DELETE: "DELETE";
|
|
@@ -4,17 +4,13 @@ export declare class BadRequestException extends __BaseException {
|
|
|
4
4
|
readonly name: "BadRequestException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class GatewayTimeoutException extends __BaseException {
|
|
12
10
|
readonly name: "GatewayTimeoutException";
|
|
13
11
|
readonly $fault: "server";
|
|
14
12
|
Message?: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<GatewayTimeoutException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<GatewayTimeoutException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class NotFoundException extends __BaseException {
|
|
20
16
|
readonly name: "NotFoundException";
|
|
@@ -28,7 +24,5 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
28
24
|
readonly $fault: "client";
|
|
29
25
|
LimitType?: string | undefined;
|
|
30
26
|
Message?: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
33
|
-
);
|
|
27
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
34
28
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: AmplifyBackendClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|