@aws-sdk/client-m2 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/M2.d.ts +33 -0
- package/dist-types/M2Client.d.ts +24 -4
- package/dist-types/commands/CancelBatchJobExecutionCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataSetImportTaskCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationFromEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/GetBatchJobExecutionCommand.d.ts +16 -0
- package/dist-types/commands/GetDataSetDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetDataSetImportTaskCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListBatchJobDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListBatchJobExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDataSetImportHistoryCommand.d.ts +16 -0
- package/dist-types/commands/ListDataSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEngineVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
- package/dist-types/commands/StartBatchJobCommand.d.ts +16 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/models/M2ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +291 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBatchJobDefinitionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBatchJobExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDataSetImportHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDataSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEngineVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { DeleteApplicationFromEnvironmentRequest, DeleteApplicationFromEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApplicationFromEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApplicationFromEnvironmentCommandInput extends DeleteApplicationFromEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApplicationFromEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApplicationFromEnvironmentCommandOutput extends DeleteApplicationFromEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a specific application from the specific runtime environment where it was previously
|
|
18
23
|
* deployed. You cannot delete a runtime environment using DeleteEnvironment if any application has
|
|
19
24
|
* ever been deployed to it. This API removes the association of the application with the
|
|
@@ -28,6 +33,8 @@ export interface DeleteApplicationFromEnvironmentCommandOutput extends DeleteApp
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteApplicationFromEnvironmentCommandInput - {@link DeleteApplicationFromEnvironmentCommandInput}
|
|
37
|
+
* @returns {@link DeleteApplicationFromEnvironmentCommandOutput}
|
|
31
38
|
* @see {@link DeleteApplicationFromEnvironmentCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteApplicationFromEnvironmentCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DeleteApplicationFromEnvironmentCommandOutput extends DeleteApp
|
|
|
55
62
|
export declare class DeleteApplicationFromEnvironmentCommand extends $Command<DeleteApplicationFromEnvironmentCommandInput, DeleteApplicationFromEnvironmentCommandOutput, M2ClientResolvedConfig> {
|
|
56
63
|
readonly input: DeleteApplicationFromEnvironmentCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DeleteApplicationFromEnvironmentCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationFromEnvironmentCommandInput, DeleteApplicationFromEnvironmentCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a specific runtime environment. The environment cannot contain deployed applications. If
|
|
18
23
|
* it does, you must delete those applications before you delete the environment.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteEnvironmentCommandInput - {@link DeleteEnvironmentCommandInput}
|
|
35
|
+
* @returns {@link DeleteEnvironmentCommandOutput}
|
|
29
36
|
* @see {@link DeleteEnvironmentCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteEnvironmentCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons
|
|
|
50
57
|
export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, M2ClientResolvedConfig> {
|
|
51
58
|
readonly input: DeleteEnvironmentCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DeleteEnvironmentCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the details of a specific application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
34
|
+
* @returns {@link GetApplicationCommandOutput}
|
|
28
35
|
* @see {@link GetApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
49
56
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: GetApplicationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetApplicationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { GetApplicationVersionRequest, GetApplicationVersionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationVersionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationVersionCommandInput extends GetApplicationVersionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationVersionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationVersionCommandOutput extends GetApplicationVersionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns details about a specific version of a specific application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetApplicationVersionCommandOutput extends GetApplicationVersio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetApplicationVersionCommandInput - {@link GetApplicationVersionCommandInput}
|
|
34
|
+
* @returns {@link GetApplicationVersionCommandOutput}
|
|
28
35
|
* @see {@link GetApplicationVersionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetApplicationVersionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetApplicationVersionCommandOutput extends GetApplicationVersio
|
|
|
49
56
|
export declare class GetApplicationVersionCommand extends $Command<GetApplicationVersionCommandInput, GetApplicationVersionCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: GetApplicationVersionCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetApplicationVersionCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationVersionCommandInput, GetApplicationVersionCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { GetBatchJobExecutionRequest, GetBatchJobExecutionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetBatchJobExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetBatchJobExecutionCommandInput extends GetBatchJobExecutionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetBatchJobExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetBatchJobExecutionCommandOutput extends GetBatchJobExecutionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of a specific batch job execution for a specific application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetBatchJobExecutionCommandOutput extends GetBatchJobExecutionR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetBatchJobExecutionCommandInput - {@link GetBatchJobExecutionCommandInput}
|
|
34
|
+
* @returns {@link GetBatchJobExecutionCommandOutput}
|
|
28
35
|
* @see {@link GetBatchJobExecutionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetBatchJobExecutionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetBatchJobExecutionCommandOutput extends GetBatchJobExecutionR
|
|
|
49
56
|
export declare class GetBatchJobExecutionCommand extends $Command<GetBatchJobExecutionCommandInput, GetBatchJobExecutionCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: GetBatchJobExecutionCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetBatchJobExecutionCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBatchJobExecutionCommandInput, GetBatchJobExecutionCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { GetDataSetDetailsRequest, GetDataSetDetailsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDataSetDetailsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDataSetDetailsCommandInput extends GetDataSetDetailsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDataSetDetailsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDataSetDetailsCommandOutput extends GetDataSetDetailsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details of a specific data set.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetDataSetDetailsCommandOutput extends GetDataSetDetailsRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDataSetDetailsCommandInput - {@link GetDataSetDetailsCommandInput}
|
|
34
|
+
* @returns {@link GetDataSetDetailsCommandOutput}
|
|
28
35
|
* @see {@link GetDataSetDetailsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDataSetDetailsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetDataSetDetailsCommandOutput extends GetDataSetDetailsRespons
|
|
|
49
56
|
export declare class GetDataSetDetailsCommand extends $Command<GetDataSetDetailsCommandInput, GetDataSetDetailsCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: GetDataSetDetailsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetDataSetDetailsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataSetDetailsCommandInput, GetDataSetDetailsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { GetDataSetImportTaskRequest, GetDataSetImportTaskResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDataSetImportTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDataSetImportTaskCommandInput extends GetDataSetImportTaskRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDataSetImportTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDataSetImportTaskCommandOutput extends GetDataSetImportTaskResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the status of a data set import task initiated with the <a>CreateDataSetImportTask</a> operation.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetDataSetImportTaskCommandOutput extends GetDataSetImportTaskR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDataSetImportTaskCommandInput - {@link GetDataSetImportTaskCommandInput}
|
|
34
|
+
* @returns {@link GetDataSetImportTaskCommandOutput}
|
|
28
35
|
* @see {@link GetDataSetImportTaskCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDataSetImportTaskCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetDataSetImportTaskCommandOutput extends GetDataSetImportTaskR
|
|
|
49
56
|
export declare class GetDataSetImportTaskCommand extends $Command<GetDataSetImportTaskCommandInput, GetDataSetImportTaskCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: GetDataSetImportTaskCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetDataSetImportTaskCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataSetImportTaskCommandInput, GetDataSetImportTaskCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDeploymentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDeploymentCommandInput extends GetDeploymentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDeploymentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets details of a specific deployment with a given deployment identifier.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDeploymentCommandInput - {@link GetDeploymentCommandInput}
|
|
34
|
+
* @returns {@link GetDeploymentCommandOutput}
|
|
28
35
|
* @see {@link GetDeploymentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDeploymentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met
|
|
|
49
56
|
export declare class GetDeploymentCommand extends $Command<GetDeploymentCommandInput, GetDeploymentCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: GetDeploymentCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetDeploymentCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes a specific runtime environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetEnvironmentCommandInput - {@link GetEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link GetEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link GetEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M
|
|
|
49
56
|
export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: GetEnvironmentCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetEnvironmentCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationVersionsCommandInput extends ListApplicationVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationVersionsCommandOutput extends ListApplicationVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of the application versions for a specific application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationVersionsCommandInput - {@link ListApplicationVersionsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationVersionsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationVersionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationVersionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
|
|
|
49
56
|
export declare class ListApplicationVersionsCommand extends $Command<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, M2ClientResolvedConfig> {
|
|
50
57
|
readonly input: ListApplicationVersionsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListApplicationVersionsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the applications associated with a specific Amazon Web Services account. You can provide the
|
|
18
23
|
* unique identifier of a specific runtime environment in a query parameter to see all applications
|
|
19
24
|
* associated with that environment.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
36
|
+
* @returns {@link ListApplicationsCommandOutput}
|
|
30
37
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
48
55
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, M2ClientResolvedConfig> {
|
|
49
56
|
readonly input: ListApplicationsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListApplicationsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { ListBatchJobDefinitionsRequest, ListBatchJobDefinitionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListBatchJobDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListBatchJobDefinitionsCommandInput extends ListBatchJobDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListBatchJobDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListBatchJobDefinitionsCommandOutput extends ListBatchJobDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the available batch job definitions based on the batch job resources uploaded
|
|
18
23
|
* during the application creation. You can use the batch job definitions in the list to start
|
|
19
24
|
* a batch job.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListBatchJobDefinitionsCommandOutput extends ListBatchJobDefini
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListBatchJobDefinitionsCommandInput - {@link ListBatchJobDefinitionsCommandInput}
|
|
36
|
+
* @returns {@link ListBatchJobDefinitionsCommandOutput}
|
|
30
37
|
* @see {@link ListBatchJobDefinitionsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListBatchJobDefinitionsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListBatchJobDefinitionsCommandOutput extends ListBatchJobDefini
|
|
|
51
58
|
export declare class ListBatchJobDefinitionsCommand extends $Command<ListBatchJobDefinitionsCommandInput, ListBatchJobDefinitionsCommandOutput, M2ClientResolvedConfig> {
|
|
52
59
|
readonly input: ListBatchJobDefinitionsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListBatchJobDefinitionsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListBatchJobDefinitionsCommandInput, ListBatchJobDefinitionsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
|
|
5
5
|
import { ListBatchJobExecutionsRequest, ListBatchJobExecutionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListBatchJobExecutionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListBatchJobExecutionsCommandInput extends ListBatchJobExecutionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListBatchJobExecutionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListBatchJobExecutionsCommandOutput extends ListBatchJobExecutionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists historical, current, and scheduled batch job executions for a specific
|
|
18
23
|
* application.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListBatchJobExecutionsCommandOutput extends ListBatchJobExecuti
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListBatchJobExecutionsCommandInput - {@link ListBatchJobExecutionsCommandInput}
|
|
35
|
+
* @returns {@link ListBatchJobExecutionsCommandOutput}
|
|
29
36
|
* @see {@link ListBatchJobExecutionsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListBatchJobExecutionsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link M2ClientResolvedConfig | config} for M2Client's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListBatchJobExecutionsCommandOutput extends ListBatchJobExecuti
|
|
|
50
57
|
export declare class ListBatchJobExecutionsCommand extends $Command<ListBatchJobExecutionsCommandInput, ListBatchJobExecutionsCommandOutput, M2ClientResolvedConfig> {
|
|
51
58
|
readonly input: ListBatchJobExecutionsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListBatchJobExecutionsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListBatchJobExecutionsCommandInput, ListBatchJobExecutionsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|