@aws-sdk/client-ecs 3.295.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/ECS.d.ts +57 -0
- package/dist-types/ECSClient.d.ts +24 -4
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/CreateTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccountSettingCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTasksCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +16 -0
- package/dist-types/commands/ExecuteCommandCommand.d.ts +16 -0
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAttributesCommand.d.ts +16 -0
- package/dist-types/commands/ListClustersCommand.d.ts +16 -0
- package/dist-types/commands/ListContainerInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +16 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTasksCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSettingCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +16 -0
- package/dist-types/commands/PutAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/RunTaskCommand.d.ts +16 -0
- package/dist-types/commands/StartTaskCommand.d.ts +16 -0
- package/dist-types/commands/StopTaskCommand.d.ts +16 -0
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +16 -0
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +16 -0
- package/dist-types/commands/SubmitTaskStateChangeCommand.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/UpdateCapacityProviderCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +16 -0
- package/dist-types/models/ECSServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +631 -8
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccountSettingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAttributesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContainerInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesByNamespacePaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTaskDefinitionFamiliesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTaskDefinitionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTasksPaginator.d.ts +3 -0
- package/package.json +30 -30
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListServicesRequest, ListServicesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListServicesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListServicesCommandInput extends ListServicesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListServicesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListServicesCommandOutput extends ListServicesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of services. You can filter the results by cluster, launch type, and
|
|
18
23
|
* scheduling strategy.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListServicesCommandInput - {@link ListServicesCommandInput}
|
|
35
|
+
* @returns {@link ListServicesCommandOutput}
|
|
29
36
|
* @see {@link ListServicesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListServicesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
66
73
|
export declare class ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, ECSClientResolvedConfig> {
|
|
67
74
|
readonly input: ListServicesCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: ListServicesCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServicesCommandInput, ListServicesCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the tags for an Amazon ECS resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
70
77
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ECSClientResolvedConfig> {
|
|
71
78
|
readonly input: ListTagsForResourceCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: ListTagsForResourceCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTaskDefinitionFamiliesRequest, ListTaskDefinitionFamiliesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTaskDefinitionFamiliesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTaskDefinitionFamiliesCommandInput extends ListTaskDefinitionFamiliesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTaskDefinitionFamiliesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTaskDefinitionFamiliesCommandOutput extends ListTaskDefinitionFamiliesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of task definition families that are registered to your account. This
|
|
18
23
|
* list includes task definition families that no longer have any <code>ACTIVE</code> task
|
|
19
24
|
* definition revisions.</p>
|
|
@@ -31,6 +36,8 @@ export interface ListTaskDefinitionFamiliesCommandOutput extends ListTaskDefinit
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListTaskDefinitionFamiliesCommandInput - {@link ListTaskDefinitionFamiliesCommandInput}
|
|
40
|
+
* @returns {@link ListTaskDefinitionFamiliesCommandOutput}
|
|
34
41
|
* @see {@link ListTaskDefinitionFamiliesCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListTaskDefinitionFamiliesCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -90,11 +97,20 @@ export interface ListTaskDefinitionFamiliesCommandOutput extends ListTaskDefinit
|
|
|
90
97
|
export declare class ListTaskDefinitionFamiliesCommand extends $Command<ListTaskDefinitionFamiliesCommandInput, ListTaskDefinitionFamiliesCommandOutput, ECSClientResolvedConfig> {
|
|
91
98
|
readonly input: ListTaskDefinitionFamiliesCommandInput;
|
|
92
99
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
93
103
|
constructor(input: ListTaskDefinitionFamiliesCommandInput);
|
|
94
104
|
/**
|
|
95
105
|
* @internal
|
|
96
106
|
*/
|
|
97
107
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTaskDefinitionFamiliesCommandInput, ListTaskDefinitionFamiliesCommandOutput>;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
98
111
|
private serialize;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
99
115
|
private deserialize;
|
|
100
116
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTaskDefinitionsRequest, ListTaskDefinitionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTaskDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTaskDefinitionsCommandInput extends ListTaskDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTaskDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of task definitions that are registered to your account. You can filter
|
|
18
23
|
* the results by family name with the <code>familyPrefix</code> parameter or by status
|
|
19
24
|
* with the <code>status</code> parameter.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsRes
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListTaskDefinitionsCommandInput - {@link ListTaskDefinitionsCommandInput}
|
|
36
|
+
* @returns {@link ListTaskDefinitionsCommandOutput}
|
|
30
37
|
* @see {@link ListTaskDefinitionsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListTaskDefinitionsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -90,11 +97,20 @@ export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsRes
|
|
|
90
97
|
export declare class ListTaskDefinitionsCommand extends $Command<ListTaskDefinitionsCommandInput, ListTaskDefinitionsCommandOutput, ECSClientResolvedConfig> {
|
|
91
98
|
readonly input: ListTaskDefinitionsCommandInput;
|
|
92
99
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
93
103
|
constructor(input: ListTaskDefinitionsCommandInput);
|
|
94
104
|
/**
|
|
95
105
|
* @internal
|
|
96
106
|
*/
|
|
97
107
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTaskDefinitionsCommandInput, ListTaskDefinitionsCommandOutput>;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
98
111
|
private serialize;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
99
115
|
private deserialize;
|
|
100
116
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTasksRequest, ListTasksResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTasksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTasksCommandInput extends ListTasksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTasksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of tasks. You can filter the results by cluster, task definition
|
|
18
23
|
* family, container instance, launch type, what IAM principal started the task, or by the
|
|
19
24
|
* desired status of the task.</p>
|
|
@@ -29,6 +34,8 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param ListTasksCommandInput - {@link ListTasksCommandInput}
|
|
38
|
+
* @returns {@link ListTasksCommandOutput}
|
|
32
39
|
* @see {@link ListTasksCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link ListTasksCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -95,11 +102,20 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea
|
|
|
95
102
|
export declare class ListTasksCommand extends $Command<ListTasksCommandInput, ListTasksCommandOutput, ECSClientResolvedConfig> {
|
|
96
103
|
readonly input: ListTasksCommandInput;
|
|
97
104
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
98
108
|
constructor(input: ListTasksCommandInput);
|
|
99
109
|
/**
|
|
100
110
|
* @internal
|
|
101
111
|
*/
|
|
102
112
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTasksCommandInput, ListTasksCommandOutput>;
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
103
116
|
private serialize;
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
*/
|
|
104
120
|
private deserialize;
|
|
105
121
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutAccountSettingRequest, PutAccountSettingResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutAccountSettingCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutAccountSettingCommandInput extends PutAccountSettingRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutAccountSettingCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutAccountSettingCommandOutput extends PutAccountSettingResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies an account setting. Account settings are set on a per-Region basis.</p>
|
|
18
23
|
* <p>If you change the account setting for the root user, the default settings for all of
|
|
19
24
|
* the users and roles that no individual account setting was specified are reset for.
|
|
@@ -48,6 +53,8 @@ export interface PutAccountSettingCommandOutput extends PutAccountSettingRespons
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param PutAccountSettingCommandInput - {@link PutAccountSettingCommandInput}
|
|
57
|
+
* @returns {@link PutAccountSettingCommandOutput}
|
|
51
58
|
* @see {@link PutAccountSettingCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link PutAccountSettingCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -112,11 +119,20 @@ export interface PutAccountSettingCommandOutput extends PutAccountSettingRespons
|
|
|
112
119
|
export declare class PutAccountSettingCommand extends $Command<PutAccountSettingCommandInput, PutAccountSettingCommandOutput, ECSClientResolvedConfig> {
|
|
113
120
|
readonly input: PutAccountSettingCommandInput;
|
|
114
121
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
115
125
|
constructor(input: PutAccountSettingCommandInput);
|
|
116
126
|
/**
|
|
117
127
|
* @internal
|
|
118
128
|
*/
|
|
119
129
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountSettingCommandInput, PutAccountSettingCommandOutput>;
|
|
130
|
+
/**
|
|
131
|
+
* @internal
|
|
132
|
+
*/
|
|
120
133
|
private serialize;
|
|
134
|
+
/**
|
|
135
|
+
* @internal
|
|
136
|
+
*/
|
|
121
137
|
private deserialize;
|
|
122
138
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutAccountSettingDefaultRequest, PutAccountSettingDefaultResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutAccountSettingDefaultCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutAccountSettingDefaultCommandInput extends PutAccountSettingDefaultRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutAccountSettingDefaultCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutAccountSettingDefaultCommandOutput extends PutAccountSettingDefaultResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies an account setting for all users on an account for whom no individual
|
|
18
23
|
* account setting has been specified. Account settings are set on a per-Region
|
|
19
24
|
* basis.</p>
|
|
@@ -27,6 +32,8 @@ export interface PutAccountSettingDefaultCommandOutput extends PutAccountSetting
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param PutAccountSettingDefaultCommandInput - {@link PutAccountSettingDefaultCommandInput}
|
|
36
|
+
* @returns {@link PutAccountSettingDefaultCommandOutput}
|
|
30
37
|
* @see {@link PutAccountSettingDefaultCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link PutAccountSettingDefaultCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface PutAccountSettingDefaultCommandOutput extends PutAccountSetting
|
|
|
69
76
|
export declare class PutAccountSettingDefaultCommand extends $Command<PutAccountSettingDefaultCommandInput, PutAccountSettingDefaultCommandOutput, ECSClientResolvedConfig> {
|
|
70
77
|
readonly input: PutAccountSettingDefaultCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: PutAccountSettingDefaultCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountSettingDefaultCommandInput, PutAccountSettingDefaultCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutAttributesRequest, PutAttributesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutAttributesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutAttributesCommandInput extends PutAttributesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutAttributesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutAttributesCommandOutput extends PutAttributesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create or update an attribute on an Amazon ECS resource. If the attribute doesn't exist,
|
|
18
23
|
* it's created. If the attribute exists, its value is replaced with the specified value.
|
|
19
24
|
* To delete an attribute, use <a>DeleteAttributes</a>. For more information,
|
|
@@ -28,6 +33,8 @@ export interface PutAttributesCommandOutput extends PutAttributesResponse, __Met
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param PutAttributesCommandInput - {@link PutAttributesCommandInput}
|
|
37
|
+
* @returns {@link PutAttributesCommandOutput}
|
|
31
38
|
* @see {@link PutAttributesCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link PutAttributesCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface PutAttributesCommandOutput extends PutAttributesResponse, __Met
|
|
|
54
61
|
export declare class PutAttributesCommand extends $Command<PutAttributesCommandInput, PutAttributesCommandOutput, ECSClientResolvedConfig> {
|
|
55
62
|
readonly input: PutAttributesCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: PutAttributesCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAttributesCommandInput, PutAttributesCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutClusterCapacityProvidersRequest, PutClusterCapacityProvidersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutClusterCapacityProvidersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutClusterCapacityProvidersCommandInput extends PutClusterCapacityProvidersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutClusterCapacityProvidersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutClusterCapacityProvidersCommandOutput extends PutClusterCapacityProvidersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the available capacity providers and the default capacity provider strategy
|
|
18
23
|
* for a cluster.</p>
|
|
19
24
|
* <p>You must specify both the available capacity providers and a default capacity provider
|
|
@@ -38,6 +43,8 @@ export interface PutClusterCapacityProvidersCommandOutput extends PutClusterCapa
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param PutClusterCapacityProvidersCommandInput - {@link PutClusterCapacityProvidersCommandInput}
|
|
47
|
+
* @returns {@link PutClusterCapacityProvidersCommandOutput}
|
|
41
48
|
* @see {@link PutClusterCapacityProvidersCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link PutClusterCapacityProvidersCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface PutClusterCapacityProvidersCommandOutput extends PutClusterCapa
|
|
|
72
79
|
export declare class PutClusterCapacityProvidersCommand extends $Command<PutClusterCapacityProvidersCommandInput, PutClusterCapacityProvidersCommandOutput, ECSClientResolvedConfig> {
|
|
73
80
|
readonly input: PutClusterCapacityProvidersCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: PutClusterCapacityProvidersCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutClusterCapacityProvidersCommandInput, PutClusterCapacityProvidersCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { RegisterContainerInstanceRequest, RegisterContainerInstanceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterContainerInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterContainerInstanceCommandInput extends RegisterContainerInstanceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterContainerInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterContainerInstanceCommandOutput extends RegisterContainerInstanceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <note>
|
|
18
23
|
* <p>This action is only used by the Amazon ECS agent, and it is not intended for use outside of the agent.</p>
|
|
19
24
|
* </note>
|
|
@@ -29,6 +34,8 @@ export interface RegisterContainerInstanceCommandOutput extends RegisterContaine
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param RegisterContainerInstanceCommandInput - {@link RegisterContainerInstanceCommandInput}
|
|
38
|
+
* @returns {@link RegisterContainerInstanceCommandOutput}
|
|
32
39
|
* @see {@link RegisterContainerInstanceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link RegisterContainerInstanceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface RegisterContainerInstanceCommandOutput extends RegisterContaine
|
|
|
50
57
|
export declare class RegisterContainerInstanceCommand extends $Command<RegisterContainerInstanceCommandInput, RegisterContainerInstanceCommandOutput, ECSClientResolvedConfig> {
|
|
51
58
|
readonly input: RegisterContainerInstanceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: RegisterContainerInstanceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterContainerInstanceCommandInput, RegisterContainerInstanceCommandOutput>;
|
|
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 { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { RegisterTaskDefinitionRequest, RegisterTaskDefinitionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterTaskDefinitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterTaskDefinitionCommandInput extends RegisterTaskDefinitionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterTaskDefinitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinitionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Registers a new task definition from the supplied <code>family</code> and
|
|
18
23
|
* <code>containerDefinitions</code>. Optionally, you can add data volumes to your
|
|
19
24
|
* containers with the <code>volumes</code> parameter. For more information about task
|
|
@@ -42,6 +47,8 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param RegisterTaskDefinitionCommandInput - {@link RegisterTaskDefinitionCommandInput}
|
|
51
|
+
* @returns {@link RegisterTaskDefinitionCommandOutput}
|
|
45
52
|
* @see {@link RegisterTaskDefinitionCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link RegisterTaskDefinitionCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -116,11 +123,20 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit
|
|
|
116
123
|
export declare class RegisterTaskDefinitionCommand extends $Command<RegisterTaskDefinitionCommandInput, RegisterTaskDefinitionCommandOutput, ECSClientResolvedConfig> {
|
|
117
124
|
readonly input: RegisterTaskDefinitionCommandInput;
|
|
118
125
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
119
129
|
constructor(input: RegisterTaskDefinitionCommandInput);
|
|
120
130
|
/**
|
|
121
131
|
* @internal
|
|
122
132
|
*/
|
|
123
133
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterTaskDefinitionCommandInput, RegisterTaskDefinitionCommandOutput>;
|
|
134
|
+
/**
|
|
135
|
+
* @internal
|
|
136
|
+
*/
|
|
124
137
|
private serialize;
|
|
138
|
+
/**
|
|
139
|
+
* @internal
|
|
140
|
+
*/
|
|
125
141
|
private deserialize;
|
|
126
142
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { RunTaskRequest, RunTaskResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RunTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RunTaskCommandInput extends RunTaskRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RunTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RunTaskCommandOutput extends RunTaskResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a new task using the specified task definition.</p>
|
|
18
23
|
* <p>You can allow Amazon ECS to place tasks for you, or you can customize how Amazon ECS places
|
|
19
24
|
* tasks using placement constraints and placement strategies. For more information, see
|
|
@@ -52,6 +57,8 @@ export interface RunTaskCommandOutput extends RunTaskResponse, __MetadataBearer
|
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
|
54
59
|
*
|
|
60
|
+
* @param RunTaskCommandInput - {@link RunTaskCommandInput}
|
|
61
|
+
* @returns {@link RunTaskCommandOutput}
|
|
55
62
|
* @see {@link RunTaskCommandInput} for command's `input` shape.
|
|
56
63
|
* @see {@link RunTaskCommandOutput} for command's `response` shape.
|
|
57
64
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -133,11 +140,20 @@ export interface RunTaskCommandOutput extends RunTaskResponse, __MetadataBearer
|
|
|
133
140
|
export declare class RunTaskCommand extends $Command<RunTaskCommandInput, RunTaskCommandOutput, ECSClientResolvedConfig> {
|
|
134
141
|
readonly input: RunTaskCommandInput;
|
|
135
142
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
143
|
+
/**
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
136
146
|
constructor(input: RunTaskCommandInput);
|
|
137
147
|
/**
|
|
138
148
|
* @internal
|
|
139
149
|
*/
|
|
140
150
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RunTaskCommandInput, RunTaskCommandOutput>;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
141
154
|
private serialize;
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
142
158
|
private deserialize;
|
|
143
159
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { StartTaskRequest, StartTaskResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartTaskCommandInput extends StartTaskRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartTaskCommandOutput extends StartTaskResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a new task from the specified task definition on the specified container
|
|
18
23
|
* instance or instances.</p>
|
|
19
24
|
* <p>Alternatively, you can use <a>RunTask</a> to place tasks for you. For more
|
|
@@ -28,6 +33,8 @@ export interface StartTaskCommandOutput extends StartTaskResponse, __MetadataBea
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param StartTaskCommandInput - {@link StartTaskCommandInput}
|
|
37
|
+
* @returns {@link StartTaskCommandOutput}
|
|
31
38
|
* @see {@link StartTaskCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link StartTaskCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ECSClientResolvedConfig | config} for ECSClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface StartTaskCommandOutput extends StartTaskResponse, __MetadataBea
|
|
|
52
59
|
export declare class StartTaskCommand extends $Command<StartTaskCommandInput, StartTaskCommandOutput, ECSClientResolvedConfig> {
|
|
53
60
|
readonly input: StartTaskCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: StartTaskCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ECSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartTaskCommandInput, StartTaskCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|