@aws-sdk/client-amplify 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Amplify.d.ts +0 -37
- package/dist-types/ts3.4/AmplifyClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -433
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -15,7 +15,6 @@ export interface GetBranchCommandInput extends GetBranchRequest {}
|
|
|
15
15
|
export interface GetBranchCommandOutput
|
|
16
16
|
extends GetBranchResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class GetBranchCommand extends $Command<
|
|
20
19
|
GetBranchCommandInput,
|
|
21
20
|
GetBranchCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class GetBranchCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: GetBranchCommandInput;
|
|
25
24
|
constructor(input: GetBranchCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface GetDomainAssociationCommandInput
|
|
|
19
19
|
export interface GetDomainAssociationCommandOutput
|
|
20
20
|
extends GetDomainAssociationResult,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class GetDomainAssociationCommand extends $Command<
|
|
24
23
|
GetDomainAssociationCommandInput,
|
|
25
24
|
GetDomainAssociationCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class GetDomainAssociationCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: GetDomainAssociationCommandInput;
|
|
29
28
|
constructor(input: GetDomainAssociationCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -13,7 +13,6 @@ import {
|
|
|
13
13
|
import { GetJobRequest, GetJobResult } from "../models/models_0";
|
|
14
14
|
export interface GetJobCommandInput extends GetJobRequest {}
|
|
15
15
|
export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {}
|
|
16
|
-
|
|
17
16
|
export declare class GetJobCommand extends $Command<
|
|
18
17
|
GetJobCommandInput,
|
|
19
18
|
GetJobCommandOutput,
|
|
@@ -21,7 +20,6 @@ export declare class GetJobCommand extends $Command<
|
|
|
21
20
|
> {
|
|
22
21
|
readonly input: GetJobCommandInput;
|
|
23
22
|
constructor(input: GetJobCommandInput);
|
|
24
|
-
|
|
25
23
|
resolveMiddleware(
|
|
26
24
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
25
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface GetWebhookCommandInput extends GetWebhookRequest {}
|
|
|
15
15
|
export interface GetWebhookCommandOutput
|
|
16
16
|
extends GetWebhookResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class GetWebhookCommand extends $Command<
|
|
20
19
|
GetWebhookCommandInput,
|
|
21
20
|
GetWebhookCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class GetWebhookCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: GetWebhookCommandInput;
|
|
25
24
|
constructor(input: GetWebhookCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListAppsCommandInput extends ListAppsRequest {}
|
|
|
15
15
|
export interface ListAppsCommandOutput
|
|
16
16
|
extends ListAppsResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListAppsCommand extends $Command<
|
|
20
19
|
ListAppsCommandInput,
|
|
21
20
|
ListAppsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListAppsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListAppsCommandInput;
|
|
25
24
|
constructor(input: ListAppsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListArtifactsCommandInput extends ListArtifactsRequest {}
|
|
|
15
15
|
export interface ListArtifactsCommandOutput
|
|
16
16
|
extends ListArtifactsResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListArtifactsCommand extends $Command<
|
|
20
19
|
ListArtifactsCommandInput,
|
|
21
20
|
ListArtifactsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListArtifactsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListArtifactsCommandInput;
|
|
25
24
|
constructor(input: ListArtifactsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListBackendEnvironmentsCommandInput
|
|
|
19
19
|
export interface ListBackendEnvironmentsCommandOutput
|
|
20
20
|
extends ListBackendEnvironmentsResult,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListBackendEnvironmentsCommand extends $Command<
|
|
24
23
|
ListBackendEnvironmentsCommandInput,
|
|
25
24
|
ListBackendEnvironmentsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListBackendEnvironmentsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListBackendEnvironmentsCommandInput;
|
|
29
28
|
constructor(input: ListBackendEnvironmentsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListBranchesCommandInput extends ListBranchesRequest {}
|
|
|
15
15
|
export interface ListBranchesCommandOutput
|
|
16
16
|
extends ListBranchesResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListBranchesCommand extends $Command<
|
|
20
19
|
ListBranchesCommandInput,
|
|
21
20
|
ListBranchesCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListBranchesCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListBranchesCommandInput;
|
|
25
24
|
constructor(input: ListBranchesCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListDomainAssociationsCommandInput
|
|
|
19
19
|
export interface ListDomainAssociationsCommandOutput
|
|
20
20
|
extends ListDomainAssociationsResult,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListDomainAssociationsCommand extends $Command<
|
|
24
23
|
ListDomainAssociationsCommandInput,
|
|
25
24
|
ListDomainAssociationsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListDomainAssociationsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListDomainAssociationsCommandInput;
|
|
29
28
|
constructor(input: ListDomainAssociationsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListJobsCommandInput extends ListJobsRequest {}
|
|
|
15
15
|
export interface ListJobsCommandOutput
|
|
16
16
|
extends ListJobsResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListJobsCommand extends $Command<
|
|
20
19
|
ListJobsCommandInput,
|
|
21
20
|
ListJobsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListJobsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListJobsCommandInput;
|
|
25
24
|
constructor(input: ListJobsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListTagsForResourceCommandInput
|
|
|
19
19
|
export interface ListTagsForResourceCommandOutput
|
|
20
20
|
extends ListTagsForResourceResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
23
|
ListTagsForResourceCommandInput,
|
|
25
24
|
ListTagsForResourceCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
28
|
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListWebhooksCommandInput extends ListWebhooksRequest {}
|
|
|
15
15
|
export interface ListWebhooksCommandOutput
|
|
16
16
|
extends ListWebhooksResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListWebhooksCommand extends $Command<
|
|
20
19
|
ListWebhooksCommandInput,
|
|
21
20
|
ListWebhooksCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListWebhooksCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListWebhooksCommandInput;
|
|
25
24
|
constructor(input: ListWebhooksCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface StartDeploymentCommandInput extends StartDeploymentRequest {}
|
|
|
18
18
|
export interface StartDeploymentCommandOutput
|
|
19
19
|
extends StartDeploymentResult,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class StartDeploymentCommand extends $Command<
|
|
23
22
|
StartDeploymentCommandInput,
|
|
24
23
|
StartDeploymentCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class StartDeploymentCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: StartDeploymentCommandInput;
|
|
28
27
|
constructor(input: StartDeploymentCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface StartJobCommandInput extends StartJobRequest {}
|
|
|
15
15
|
export interface StartJobCommandOutput
|
|
16
16
|
extends StartJobResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class StartJobCommand extends $Command<
|
|
20
19
|
StartJobCommandInput,
|
|
21
20
|
StartJobCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class StartJobCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: StartJobCommandInput;
|
|
25
24
|
constructor(input: StartJobCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -13,7 +13,6 @@ import {
|
|
|
13
13
|
import { StopJobRequest, StopJobResult } from "../models/models_0";
|
|
14
14
|
export interface StopJobCommandInput extends StopJobRequest {}
|
|
15
15
|
export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {}
|
|
16
|
-
|
|
17
16
|
export declare class StopJobCommand extends $Command<
|
|
18
17
|
StopJobCommandInput,
|
|
19
18
|
StopJobCommandOutput,
|
|
@@ -21,7 +20,6 @@ export declare class StopJobCommand extends $Command<
|
|
|
21
20
|
> {
|
|
22
21
|
readonly input: StopJobCommandInput;
|
|
23
22
|
constructor(input: StopJobCommandInput);
|
|
24
|
-
|
|
25
23
|
resolveMiddleware(
|
|
26
24
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
25
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
15
15
|
export interface TagResourceCommandOutput
|
|
16
16
|
extends TagResourceResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class TagResourceCommand extends $Command<
|
|
20
19
|
TagResourceCommandInput,
|
|
21
20
|
TagResourceCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class TagResourceCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: TagResourceCommandInput;
|
|
25
24
|
constructor(input: TagResourceCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
18
18
|
export interface UntagResourceCommandOutput
|
|
19
19
|
extends UntagResourceResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class UntagResourceCommand extends $Command<
|
|
23
22
|
UntagResourceCommandInput,
|
|
24
23
|
UntagResourceCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: UntagResourceCommandInput;
|
|
28
27
|
constructor(input: UntagResourceCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface UpdateAppCommandInput extends UpdateAppRequest {}
|
|
|
15
15
|
export interface UpdateAppCommandOutput
|
|
16
16
|
extends UpdateAppResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class UpdateAppCommand extends $Command<
|
|
20
19
|
UpdateAppCommandInput,
|
|
21
20
|
UpdateAppCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class UpdateAppCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: UpdateAppCommandInput;
|
|
25
24
|
constructor(input: UpdateAppCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface UpdateBranchCommandInput extends UpdateBranchRequest {}
|
|
|
15
15
|
export interface UpdateBranchCommandOutput
|
|
16
16
|
extends UpdateBranchResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class UpdateBranchCommand extends $Command<
|
|
20
19
|
UpdateBranchCommandInput,
|
|
21
20
|
UpdateBranchCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class UpdateBranchCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: UpdateBranchCommandInput;
|
|
25
24
|
constructor(input: UpdateBranchCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface UpdateDomainAssociationCommandInput
|
|
|
19
19
|
export interface UpdateDomainAssociationCommandOutput
|
|
20
20
|
extends UpdateDomainAssociationResult,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class UpdateDomainAssociationCommand extends $Command<
|
|
24
23
|
UpdateDomainAssociationCommandInput,
|
|
25
24
|
UpdateDomainAssociationCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class UpdateDomainAssociationCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: UpdateDomainAssociationCommandInput;
|
|
29
28
|
constructor(input: UpdateDomainAssociationCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface UpdateWebhookCommandInput extends UpdateWebhookRequest {}
|
|
|
15
15
|
export interface UpdateWebhookCommandOutput
|
|
16
16
|
extends UpdateWebhookResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class UpdateWebhookCommand extends $Command<
|
|
20
19
|
UpdateWebhookCommandInput,
|
|
21
20
|
UpdateWebhookCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class UpdateWebhookCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: UpdateWebhookCommandInput;
|
|
25
24
|
constructor(input: UpdateWebhookCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: AmplifyClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class AmplifyServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|