@aws-sdk/client-amplify 3.169.0 → 3.171.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 (52) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Amplify.d.ts +633 -190
  3. package/dist-types/ts3.4/AmplifyClient.d.ts +326 -110
  4. package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/GetAppCommand.d.ts +30 -17
  18. package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
  23. package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +39 -17
  27. package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  31. package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +32 -17
  32. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +32 -17
  34. package/dist-types/ts3.4/commands/StopJobCommand.d.ts +30 -17
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  36. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  37. package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +32 -17
  38. package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +32 -17
  39. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +39 -17
  40. package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +32 -17
  41. package/dist-types/ts3.4/commands/index.d.ts +37 -37
  42. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  43. package/dist-types/ts3.4/index.d.ts +5 -5
  44. package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +7 -6
  45. package/dist-types/ts3.4/models/index.d.ts +1 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +844 -1196
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  52. package/package.json +34 -34
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { StartDeploymentRequest, StartDeploymentResult } from "../models/models_0";
5
- export interface StartDeploymentCommandInput extends StartDeploymentRequest {
6
- }
7
- export interface StartDeploymentCommandOutput extends StartDeploymentResult, __MetadataBearer {
8
- }
9
-
10
- export declare class StartDeploymentCommand extends $Command<StartDeploymentCommandInput, StartDeploymentCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: StartDeploymentCommandInput;
12
- constructor(input: StartDeploymentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDeploymentCommandInput, StartDeploymentCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import {
14
+ StartDeploymentRequest,
15
+ StartDeploymentResult,
16
+ } from "../models/models_0";
17
+ export interface StartDeploymentCommandInput extends StartDeploymentRequest {}
18
+ export interface StartDeploymentCommandOutput
19
+ extends StartDeploymentResult,
20
+ __MetadataBearer {}
21
+ export declare class StartDeploymentCommand extends $Command<
22
+ StartDeploymentCommandInput,
23
+ StartDeploymentCommandOutput,
24
+ AmplifyClientResolvedConfig
25
+ > {
26
+ readonly input: StartDeploymentCommandInput;
27
+ constructor(input: StartDeploymentCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: AmplifyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StartDeploymentCommandInput, StartDeploymentCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
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 { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { StartJobRequest, StartJobResult } from "../models/models_0";
5
- export interface StartJobCommandInput extends StartJobRequest {
6
- }
7
- export interface StartJobCommandOutput extends StartJobResult, __MetadataBearer {
8
- }
9
-
10
- export declare class StartJobCommand extends $Command<StartJobCommandInput, StartJobCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: StartJobCommandInput;
12
- constructor(input: StartJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartJobCommandInput, StartJobCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import { StartJobRequest, StartJobResult } from "../models/models_0";
14
+ export interface StartJobCommandInput extends StartJobRequest {}
15
+ export interface StartJobCommandOutput
16
+ extends StartJobResult,
17
+ __MetadataBearer {}
18
+ export declare class StartJobCommand extends $Command<
19
+ StartJobCommandInput,
20
+ StartJobCommandOutput,
21
+ AmplifyClientResolvedConfig
22
+ > {
23
+ readonly input: StartJobCommandInput;
24
+ constructor(input: StartJobCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmplifyClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<StartJobCommandInput, StartJobCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,30 @@
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 { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { StopJobRequest, StopJobResult } from "../models/models_0";
5
- export interface StopJobCommandInput extends StopJobRequest {
6
- }
7
- export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {
8
- }
9
-
10
- export declare class StopJobCommand extends $Command<StopJobCommandInput, StopJobCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: StopJobCommandInput;
12
- constructor(input: StopJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopJobCommandInput, StopJobCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import { StopJobRequest, StopJobResult } from "../models/models_0";
14
+ export interface StopJobCommandInput extends StopJobRequest {}
15
+ export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {}
16
+ export declare class StopJobCommand extends $Command<
17
+ StopJobCommandInput,
18
+ StopJobCommandOutput,
19
+ AmplifyClientResolvedConfig
20
+ > {
21
+ readonly input: StopJobCommandInput;
22
+ constructor(input: StopJobCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: AmplifyClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<StopJobCommandInput, StopJobCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,32 @@
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 { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ AmplifyClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmplifyClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ AmplifyClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: AmplifyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
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 { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { UpdateAppRequest, UpdateAppResult } from "../models/models_0";
5
- export interface UpdateAppCommandInput extends UpdateAppRequest {
6
- }
7
- export interface UpdateAppCommandOutput extends UpdateAppResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateAppCommand extends $Command<UpdateAppCommandInput, UpdateAppCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: UpdateAppCommandInput;
12
- constructor(input: UpdateAppCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAppCommandInput, UpdateAppCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import { UpdateAppRequest, UpdateAppResult } from "../models/models_0";
14
+ export interface UpdateAppCommandInput extends UpdateAppRequest {}
15
+ export interface UpdateAppCommandOutput
16
+ extends UpdateAppResult,
17
+ __MetadataBearer {}
18
+ export declare class UpdateAppCommand extends $Command<
19
+ UpdateAppCommandInput,
20
+ UpdateAppCommandOutput,
21
+ AmplifyClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateAppCommandInput;
24
+ constructor(input: UpdateAppCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmplifyClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateAppCommandInput, UpdateAppCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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 { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { UpdateBranchRequest, UpdateBranchResult } from "../models/models_0";
5
- export interface UpdateBranchCommandInput extends UpdateBranchRequest {
6
- }
7
- export interface UpdateBranchCommandOutput extends UpdateBranchResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateBranchCommand extends $Command<UpdateBranchCommandInput, UpdateBranchCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: UpdateBranchCommandInput;
12
- constructor(input: UpdateBranchCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBranchCommandInput, UpdateBranchCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import { UpdateBranchRequest, UpdateBranchResult } from "../models/models_0";
14
+ export interface UpdateBranchCommandInput extends UpdateBranchRequest {}
15
+ export interface UpdateBranchCommandOutput
16
+ extends UpdateBranchResult,
17
+ __MetadataBearer {}
18
+ export declare class UpdateBranchCommand extends $Command<
19
+ UpdateBranchCommandInput,
20
+ UpdateBranchCommandOutput,
21
+ AmplifyClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateBranchCommandInput;
24
+ constructor(input: UpdateBranchCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmplifyClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateBranchCommandInput, UpdateBranchCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { UpdateDomainAssociationRequest, UpdateDomainAssociationResult } from "../models/models_0";
5
- export interface UpdateDomainAssociationCommandInput extends UpdateDomainAssociationRequest {
6
- }
7
- export interface UpdateDomainAssociationCommandOutput extends UpdateDomainAssociationResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateDomainAssociationCommand extends $Command<UpdateDomainAssociationCommandInput, UpdateDomainAssociationCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: UpdateDomainAssociationCommandInput;
12
- constructor(input: UpdateDomainAssociationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDomainAssociationCommandInput, UpdateDomainAssociationCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import {
14
+ UpdateDomainAssociationRequest,
15
+ UpdateDomainAssociationResult,
16
+ } from "../models/models_0";
17
+ export interface UpdateDomainAssociationCommandInput
18
+ extends UpdateDomainAssociationRequest {}
19
+ export interface UpdateDomainAssociationCommandOutput
20
+ extends UpdateDomainAssociationResult,
21
+ __MetadataBearer {}
22
+ export declare class UpdateDomainAssociationCommand extends $Command<
23
+ UpdateDomainAssociationCommandInput,
24
+ UpdateDomainAssociationCommandOutput,
25
+ AmplifyClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateDomainAssociationCommandInput;
28
+ constructor(input: UpdateDomainAssociationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AmplifyClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateDomainAssociationCommandInput,
35
+ UpdateDomainAssociationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
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 { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
4
- import { UpdateWebhookRequest, UpdateWebhookResult } from "../models/models_0";
5
- export interface UpdateWebhookCommandInput extends UpdateWebhookRequest {
6
- }
7
- export interface UpdateWebhookCommandOutput extends UpdateWebhookResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateWebhookCommand extends $Command<UpdateWebhookCommandInput, UpdateWebhookCommandOutput, AmplifyClientResolvedConfig> {
11
- readonly input: UpdateWebhookCommandInput;
12
- constructor(input: UpdateWebhookCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWebhookCommandInput, UpdateWebhookCommandOutput>;
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
+ AmplifyClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmplifyClient";
13
+ import { UpdateWebhookRequest, UpdateWebhookResult } from "../models/models_0";
14
+ export interface UpdateWebhookCommandInput extends UpdateWebhookRequest {}
15
+ export interface UpdateWebhookCommandOutput
16
+ extends UpdateWebhookResult,
17
+ __MetadataBearer {}
18
+ export declare class UpdateWebhookCommand extends $Command<
19
+ UpdateWebhookCommandInput,
20
+ UpdateWebhookCommandOutput,
21
+ AmplifyClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateWebhookCommandInput;
24
+ constructor(input: UpdateWebhookCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmplifyClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateWebhookCommandInput, UpdateWebhookCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,37 +1,37 @@
1
- export * from "./CreateAppCommand";
2
- export * from "./CreateBackendEnvironmentCommand";
3
- export * from "./CreateBranchCommand";
4
- export * from "./CreateDeploymentCommand";
5
- export * from "./CreateDomainAssociationCommand";
6
- export * from "./CreateWebhookCommand";
7
- export * from "./DeleteAppCommand";
8
- export * from "./DeleteBackendEnvironmentCommand";
9
- export * from "./DeleteBranchCommand";
10
- export * from "./DeleteDomainAssociationCommand";
11
- export * from "./DeleteJobCommand";
12
- export * from "./DeleteWebhookCommand";
13
- export * from "./GenerateAccessLogsCommand";
14
- export * from "./GetAppCommand";
15
- export * from "./GetArtifactUrlCommand";
16
- export * from "./GetBackendEnvironmentCommand";
17
- export * from "./GetBranchCommand";
18
- export * from "./GetDomainAssociationCommand";
19
- export * from "./GetJobCommand";
20
- export * from "./GetWebhookCommand";
21
- export * from "./ListAppsCommand";
22
- export * from "./ListArtifactsCommand";
23
- export * from "./ListBackendEnvironmentsCommand";
24
- export * from "./ListBranchesCommand";
25
- export * from "./ListDomainAssociationsCommand";
26
- export * from "./ListJobsCommand";
27
- export * from "./ListTagsForResourceCommand";
28
- export * from "./ListWebhooksCommand";
29
- export * from "./StartDeploymentCommand";
30
- export * from "./StartJobCommand";
31
- export * from "./StopJobCommand";
32
- export * from "./TagResourceCommand";
33
- export * from "./UntagResourceCommand";
34
- export * from "./UpdateAppCommand";
35
- export * from "./UpdateBranchCommand";
36
- export * from "./UpdateDomainAssociationCommand";
37
- export * from "./UpdateWebhookCommand";
1
+ export * from "./CreateAppCommand";
2
+ export * from "./CreateBackendEnvironmentCommand";
3
+ export * from "./CreateBranchCommand";
4
+ export * from "./CreateDeploymentCommand";
5
+ export * from "./CreateDomainAssociationCommand";
6
+ export * from "./CreateWebhookCommand";
7
+ export * from "./DeleteAppCommand";
8
+ export * from "./DeleteBackendEnvironmentCommand";
9
+ export * from "./DeleteBranchCommand";
10
+ export * from "./DeleteDomainAssociationCommand";
11
+ export * from "./DeleteJobCommand";
12
+ export * from "./DeleteWebhookCommand";
13
+ export * from "./GenerateAccessLogsCommand";
14
+ export * from "./GetAppCommand";
15
+ export * from "./GetArtifactUrlCommand";
16
+ export * from "./GetBackendEnvironmentCommand";
17
+ export * from "./GetBranchCommand";
18
+ export * from "./GetDomainAssociationCommand";
19
+ export * from "./GetJobCommand";
20
+ export * from "./GetWebhookCommand";
21
+ export * from "./ListAppsCommand";
22
+ export * from "./ListArtifactsCommand";
23
+ export * from "./ListBackendEnvironmentsCommand";
24
+ export * from "./ListBranchesCommand";
25
+ export * from "./ListDomainAssociationsCommand";
26
+ export * from "./ListJobsCommand";
27
+ export * from "./ListTagsForResourceCommand";
28
+ export * from "./ListWebhooksCommand";
29
+ export * from "./StartDeploymentCommand";
30
+ export * from "./StartJobCommand";
31
+ export * from "./StopJobCommand";
32
+ export * from "./TagResourceCommand";
33
+ export * from "./UntagResourceCommand";
34
+ export * from "./UpdateAppCommand";
35
+ export * from "./UpdateBranchCommand";
36
+ export * from "./UpdateDomainAssociationCommand";
37
+ export * from "./UpdateWebhookCommand";
@@ -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 "./Amplify";
2
- export * from "./AmplifyClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { AmplifyServiceException } from "./models/AmplifyServiceException";
1
+ export * from "./Amplify";
2
+ export * from "./AmplifyClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { AmplifyServiceException } from "./models/AmplifyServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class AmplifyServiceException 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
+ export declare class AmplifyServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";