@aws-sdk/client-amplify 3.168.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Amplify.d.ts +670 -190
- package/dist-types/ts3.4/AmplifyClient.d.ts +351 -110
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +37 -37
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1277 -1196
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CreateDeploymentRequest,
|
|
15
|
+
CreateDeploymentResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateDeploymentCommandInput extends CreateDeploymentRequest {}
|
|
18
|
+
export interface CreateDeploymentCommandOutput
|
|
19
|
+
extends CreateDeploymentResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateDeploymentCommand extends $Command<
|
|
23
|
+
CreateDeploymentCommandInput,
|
|
24
|
+
CreateDeploymentCommandOutput,
|
|
25
|
+
AmplifyClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateDeploymentCommandInput;
|
|
28
|
+
constructor(input: CreateDeploymentCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmplifyClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateDeploymentCommandInput, CreateDeploymentCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CreateDomainAssociationRequest,
|
|
15
|
+
CreateDomainAssociationResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateDomainAssociationCommandInput
|
|
18
|
+
extends CreateDomainAssociationRequest {}
|
|
19
|
+
export interface CreateDomainAssociationCommandOutput
|
|
20
|
+
extends CreateDomainAssociationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateDomainAssociationCommand extends $Command<
|
|
24
|
+
CreateDomainAssociationCommandInput,
|
|
25
|
+
CreateDomainAssociationCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateDomainAssociationCommandInput;
|
|
29
|
+
constructor(input: CreateDomainAssociationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateDomainAssociationCommandInput,
|
|
37
|
+
CreateDomainAssociationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { CreateWebhookRequest, CreateWebhookResult } from "../models/models_0";
|
|
14
|
+
export interface CreateWebhookCommandInput extends CreateWebhookRequest {}
|
|
15
|
+
export interface CreateWebhookCommandOutput
|
|
16
|
+
extends CreateWebhookResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CreateWebhookCommand extends $Command<
|
|
20
|
+
CreateWebhookCommandInput,
|
|
21
|
+
CreateWebhookCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateWebhookCommandInput;
|
|
25
|
+
constructor(input: CreateWebhookCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateWebhookCommandInput, CreateWebhookCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteAppRequest, DeleteAppResult } from "../models/models_0";
|
|
14
|
+
export interface DeleteAppCommandInput extends DeleteAppRequest {}
|
|
15
|
+
export interface DeleteAppCommandOutput
|
|
16
|
+
extends DeleteAppResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteAppCommand extends $Command<
|
|
20
|
+
DeleteAppCommandInput,
|
|
21
|
+
DeleteAppCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteAppCommandInput;
|
|
25
|
+
constructor(input: DeleteAppCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteAppCommandInput, DeleteAppCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteBackendEnvironmentRequest,
|
|
15
|
+
DeleteBackendEnvironmentResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteBackendEnvironmentCommandInput
|
|
18
|
+
extends DeleteBackendEnvironmentRequest {}
|
|
19
|
+
export interface DeleteBackendEnvironmentCommandOutput
|
|
20
|
+
extends DeleteBackendEnvironmentResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteBackendEnvironmentCommand extends $Command<
|
|
24
|
+
DeleteBackendEnvironmentCommandInput,
|
|
25
|
+
DeleteBackendEnvironmentCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteBackendEnvironmentCommandInput;
|
|
29
|
+
constructor(input: DeleteBackendEnvironmentCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteBackendEnvironmentCommandInput,
|
|
37
|
+
DeleteBackendEnvironmentCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteBranchRequest, DeleteBranchResult } from "../models/models_0";
|
|
14
|
+
export interface DeleteBranchCommandInput extends DeleteBranchRequest {}
|
|
15
|
+
export interface DeleteBranchCommandOutput
|
|
16
|
+
extends DeleteBranchResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteBranchCommand extends $Command<
|
|
20
|
+
DeleteBranchCommandInput,
|
|
21
|
+
DeleteBranchCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteBranchCommandInput;
|
|
25
|
+
constructor(input: DeleteBranchCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteBranchCommandInput, DeleteBranchCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteDomainAssociationRequest,
|
|
15
|
+
DeleteDomainAssociationResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteDomainAssociationCommandInput
|
|
18
|
+
extends DeleteDomainAssociationRequest {}
|
|
19
|
+
export interface DeleteDomainAssociationCommandOutput
|
|
20
|
+
extends DeleteDomainAssociationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteDomainAssociationCommand extends $Command<
|
|
24
|
+
DeleteDomainAssociationCommandInput,
|
|
25
|
+
DeleteDomainAssociationCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteDomainAssociationCommandInput;
|
|
29
|
+
constructor(input: DeleteDomainAssociationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteDomainAssociationCommandInput,
|
|
37
|
+
DeleteDomainAssociationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteJobRequest, DeleteJobResult } from "../models/models_0";
|
|
14
|
+
export interface DeleteJobCommandInput extends DeleteJobRequest {}
|
|
15
|
+
export interface DeleteJobCommandOutput
|
|
16
|
+
extends DeleteJobResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteJobCommand extends $Command<
|
|
20
|
+
DeleteJobCommandInput,
|
|
21
|
+
DeleteJobCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteJobCommandInput;
|
|
25
|
+
constructor(input: DeleteJobCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteJobCommandInput, DeleteJobCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteWebhookRequest, DeleteWebhookResult } from "../models/models_0";
|
|
14
|
+
export interface DeleteWebhookCommandInput extends DeleteWebhookRequest {}
|
|
15
|
+
export interface DeleteWebhookCommandOutput
|
|
16
|
+
extends DeleteWebhookResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteWebhookCommand extends $Command<
|
|
20
|
+
DeleteWebhookCommandInput,
|
|
21
|
+
DeleteWebhookCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteWebhookCommandInput;
|
|
25
|
+
constructor(input: DeleteWebhookCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteWebhookCommandInput, DeleteWebhookCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GenerateAccessLogsRequest,
|
|
15
|
+
GenerateAccessLogsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GenerateAccessLogsCommandInput
|
|
18
|
+
extends GenerateAccessLogsRequest {}
|
|
19
|
+
export interface GenerateAccessLogsCommandOutput
|
|
20
|
+
extends GenerateAccessLogsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GenerateAccessLogsCommand extends $Command<
|
|
24
|
+
GenerateAccessLogsCommandInput,
|
|
25
|
+
GenerateAccessLogsCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GenerateAccessLogsCommandInput;
|
|
29
|
+
constructor(input: GenerateAccessLogsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GenerateAccessLogsCommandInput, GenerateAccessLogsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetAppRequest, GetAppResult } from "../models/models_0";
|
|
14
|
+
export interface GetAppCommandInput extends GetAppRequest {}
|
|
15
|
+
export interface GetAppCommandOutput extends GetAppResult, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class GetAppCommand extends $Command<
|
|
18
|
+
GetAppCommandInput,
|
|
19
|
+
GetAppCommandOutput,
|
|
20
|
+
AmplifyClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: GetAppCommandInput;
|
|
23
|
+
constructor(input: GetAppCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetAppCommandInput, GetAppCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|