@aws-sdk/client-amplifybackend 3.169.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AmplifyBackend.d.ts +562 -160
  3. package/dist-types/ts3.4/AmplifyBackendClient.d.ts +316 -104
  4. package/dist-types/ts3.4/commands/CloneBackendCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateBackendAPICommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateBackendAuthCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateBackendCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateBackendConfigCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DeleteBackendAPICommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteBackendAuthCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/DeleteBackendCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GenerateBackendAPIModelsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/GetBackendAPICommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetBackendAPIModelsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/GetBackendAuthCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/GetBackendCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/GetBackendJobCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/GetTokenCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ImportBackendAuthCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/ListBackendJobsCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/RemoveAllBackendsCommand.d.ts +38 -17
  29. package/dist-types/ts3.4/commands/RemoveBackendConfigCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/UpdateBackendAPICommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateBackendAuthCommand.d.ts +38 -17
  32. package/dist-types/ts3.4/commands/UpdateBackendConfigCommand.d.ts +38 -17
  33. package/dist-types/ts3.4/commands/UpdateBackendJobCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +41 -17
  35. package/dist-types/ts3.4/commands/index.d.ts +31 -31
  36. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  37. package/dist-types/ts3.4/index.d.ts +5 -5
  38. package/dist-types/ts3.4/models/AmplifyBackendServiceException.d.ts +8 -6
  39. package/dist-types/ts3.4/models/index.d.ts +1 -1
  40. package/dist-types/ts3.4/models/models_0.d.ts +1398 -1300
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  46. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { UpdateBackendAPIRequest, UpdateBackendAPIResponse } from "../models/models_0";
5
- export interface UpdateBackendAPICommandInput extends UpdateBackendAPIRequest {
6
- }
7
- export interface UpdateBackendAPICommandOutput extends UpdateBackendAPIResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBackendAPICommand extends $Command<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: UpdateBackendAPICommandInput;
12
- constructor(input: UpdateBackendAPICommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ UpdateBackendAPIRequest,
15
+ UpdateBackendAPIResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateBackendAPICommandInput extends UpdateBackendAPIRequest {}
18
+ export interface UpdateBackendAPICommandOutput
19
+ extends UpdateBackendAPIResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateBackendAPICommand extends $Command<
23
+ UpdateBackendAPICommandInput,
24
+ UpdateBackendAPICommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateBackendAPICommandInput;
28
+ constructor(input: UpdateBackendAPICommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { UpdateBackendAuthRequest, UpdateBackendAuthResponse } from "../models/models_0";
5
- export interface UpdateBackendAuthCommandInput extends UpdateBackendAuthRequest {
6
- }
7
- export interface UpdateBackendAuthCommandOutput extends UpdateBackendAuthResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBackendAuthCommand extends $Command<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: UpdateBackendAuthCommandInput;
12
- constructor(input: UpdateBackendAuthCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ UpdateBackendAuthRequest,
15
+ UpdateBackendAuthResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateBackendAuthCommandInput
18
+ extends UpdateBackendAuthRequest {}
19
+ export interface UpdateBackendAuthCommandOutput
20
+ extends UpdateBackendAuthResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateBackendAuthCommand extends $Command<
24
+ UpdateBackendAuthCommandInput,
25
+ UpdateBackendAuthCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateBackendAuthCommandInput;
29
+ constructor(input: UpdateBackendAuthCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { UpdateBackendConfigRequest, UpdateBackendConfigResponse } from "../models/models_0";
5
- export interface UpdateBackendConfigCommandInput extends UpdateBackendConfigRequest {
6
- }
7
- export interface UpdateBackendConfigCommandOutput extends UpdateBackendConfigResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBackendConfigCommand extends $Command<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: UpdateBackendConfigCommandInput;
12
- constructor(input: UpdateBackendConfigCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ UpdateBackendConfigRequest,
15
+ UpdateBackendConfigResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateBackendConfigCommandInput
18
+ extends UpdateBackendConfigRequest {}
19
+ export interface UpdateBackendConfigCommandOutput
20
+ extends UpdateBackendConfigResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateBackendConfigCommand extends $Command<
24
+ UpdateBackendConfigCommandInput,
25
+ UpdateBackendConfigCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateBackendConfigCommandInput;
29
+ constructor(input: UpdateBackendConfigCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { UpdateBackendJobRequest, UpdateBackendJobResponse } from "../models/models_0";
5
- export interface UpdateBackendJobCommandInput extends UpdateBackendJobRequest {
6
- }
7
- export interface UpdateBackendJobCommandOutput extends UpdateBackendJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBackendJobCommand extends $Command<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: UpdateBackendJobCommandInput;
12
- constructor(input: UpdateBackendJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ UpdateBackendJobRequest,
15
+ UpdateBackendJobResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateBackendJobCommandInput extends UpdateBackendJobRequest {}
18
+ export interface UpdateBackendJobCommandOutput
19
+ extends UpdateBackendJobResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateBackendJobCommand extends $Command<
23
+ UpdateBackendJobCommandInput,
24
+ UpdateBackendJobCommandOutput,
25
+ AmplifyBackendClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateBackendJobCommandInput;
28
+ constructor(input: UpdateBackendJobCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AmplifyBackendClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
4
- import { UpdateBackendStorageRequest, UpdateBackendStorageResponse } from "../models/models_0";
5
- export interface UpdateBackendStorageCommandInput extends UpdateBackendStorageRequest {
6
- }
7
- export interface UpdateBackendStorageCommandOutput extends UpdateBackendStorageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBackendStorageCommand extends $Command<UpdateBackendStorageCommandInput, UpdateBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
11
- readonly input: UpdateBackendStorageCommandInput;
12
- constructor(input: UpdateBackendStorageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBackendStorageCommandInput, UpdateBackendStorageCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmplifyBackendClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyBackendClient";
13
+ import {
14
+ UpdateBackendStorageRequest,
15
+ UpdateBackendStorageResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateBackendStorageCommandInput
18
+ extends UpdateBackendStorageRequest {}
19
+ export interface UpdateBackendStorageCommandOutput
20
+ extends UpdateBackendStorageResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateBackendStorageCommand extends $Command<
24
+ UpdateBackendStorageCommandInput,
25
+ UpdateBackendStorageCommandOutput,
26
+ AmplifyBackendClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateBackendStorageCommandInput;
29
+ constructor(input: UpdateBackendStorageCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AmplifyBackendClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateBackendStorageCommandInput,
37
+ UpdateBackendStorageCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,31 +1,31 @@
1
- export * from "./CloneBackendCommand";
2
- export * from "./CreateBackendAPICommand";
3
- export * from "./CreateBackendAuthCommand";
4
- export * from "./CreateBackendCommand";
5
- export * from "./CreateBackendConfigCommand";
6
- export * from "./CreateBackendStorageCommand";
7
- export * from "./CreateTokenCommand";
8
- export * from "./DeleteBackendAPICommand";
9
- export * from "./DeleteBackendAuthCommand";
10
- export * from "./DeleteBackendCommand";
11
- export * from "./DeleteBackendStorageCommand";
12
- export * from "./DeleteTokenCommand";
13
- export * from "./GenerateBackendAPIModelsCommand";
14
- export * from "./GetBackendAPICommand";
15
- export * from "./GetBackendAPIModelsCommand";
16
- export * from "./GetBackendAuthCommand";
17
- export * from "./GetBackendCommand";
18
- export * from "./GetBackendJobCommand";
19
- export * from "./GetBackendStorageCommand";
20
- export * from "./GetTokenCommand";
21
- export * from "./ImportBackendAuthCommand";
22
- export * from "./ImportBackendStorageCommand";
23
- export * from "./ListBackendJobsCommand";
24
- export * from "./ListS3BucketsCommand";
25
- export * from "./RemoveAllBackendsCommand";
26
- export * from "./RemoveBackendConfigCommand";
27
- export * from "./UpdateBackendAPICommand";
28
- export * from "./UpdateBackendAuthCommand";
29
- export * from "./UpdateBackendConfigCommand";
30
- export * from "./UpdateBackendJobCommand";
31
- export * from "./UpdateBackendStorageCommand";
1
+ export * from "./CloneBackendCommand";
2
+ export * from "./CreateBackendAPICommand";
3
+ export * from "./CreateBackendAuthCommand";
4
+ export * from "./CreateBackendCommand";
5
+ export * from "./CreateBackendConfigCommand";
6
+ export * from "./CreateBackendStorageCommand";
7
+ export * from "./CreateTokenCommand";
8
+ export * from "./DeleteBackendAPICommand";
9
+ export * from "./DeleteBackendAuthCommand";
10
+ export * from "./DeleteBackendCommand";
11
+ export * from "./DeleteBackendStorageCommand";
12
+ export * from "./DeleteTokenCommand";
13
+ export * from "./GenerateBackendAPIModelsCommand";
14
+ export * from "./GetBackendAPICommand";
15
+ export * from "./GetBackendAPIModelsCommand";
16
+ export * from "./GetBackendAuthCommand";
17
+ export * from "./GetBackendCommand";
18
+ export * from "./GetBackendJobCommand";
19
+ export * from "./GetBackendStorageCommand";
20
+ export * from "./GetTokenCommand";
21
+ export * from "./ImportBackendAuthCommand";
22
+ export * from "./ImportBackendStorageCommand";
23
+ export * from "./ListBackendJobsCommand";
24
+ export * from "./ListS3BucketsCommand";
25
+ export * from "./RemoveAllBackendsCommand";
26
+ export * from "./RemoveBackendConfigCommand";
27
+ export * from "./UpdateBackendAPICommand";
28
+ export * from "./UpdateBackendAuthCommand";
29
+ export * from "./UpdateBackendConfigCommand";
30
+ export * from "./UpdateBackendJobCommand";
31
+ export * from "./UpdateBackendStorageCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,5 +1,5 @@
1
- export * from "./AmplifyBackend";
2
- export * from "./AmplifyBackendClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { AmplifyBackendServiceException } from "./models/AmplifyBackendServiceException";
1
+ export * from "./AmplifyBackend";
2
+ export * from "./AmplifyBackendClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { AmplifyBackendServiceException } from "./models/AmplifyBackendServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class AmplifyBackendServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class AmplifyBackendServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";