@aws-sdk/client-ecs 3.279.0 → 3.282.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/README.md +451 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +6 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +6 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +6 -0
- package/dist-types/commands/CreateTaskSetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccountSettingCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAttributesCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +6 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +6 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +6 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +6 -0
- package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +6 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +6 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +6 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeTasksCommand.d.ts +6 -0
- package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +6 -0
- package/dist-types/commands/ExecuteCommandCommand.d.ts +6 -0
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +6 -0
- package/dist-types/commands/ListAccountSettingsCommand.d.ts +6 -0
- package/dist-types/commands/ListAttributesCommand.d.ts +6 -0
- package/dist-types/commands/ListClustersCommand.d.ts +6 -0
- package/dist-types/commands/ListContainerInstancesCommand.d.ts +6 -0
- package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +6 -0
- package/dist-types/commands/ListServicesCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +6 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +6 -0
- package/dist-types/commands/ListTasksCommand.d.ts +6 -0
- package/dist-types/commands/PutAccountSettingCommand.d.ts +6 -0
- package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +6 -0
- package/dist-types/commands/PutAttributesCommand.d.ts +6 -0
- package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +6 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +6 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +6 -0
- package/dist-types/commands/RunTaskCommand.d.ts +6 -0
- package/dist-types/commands/StartTaskCommand.d.ts +6 -0
- package/dist-types/commands/StopTaskCommand.d.ts +6 -0
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +6 -0
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +6 -0
- package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +6 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +6 -0
- package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +6 -0
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +6 -0
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +6 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +6 -0
- package/package.json +17 -17
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeregisterContainerInstanceRequest, DeregisterContainerInstanceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeregisterContainerInstanceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeregisterContainerInstanceCommandInput extends DeregisterContainerInstanceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeregisterContainerInstanceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeregisterContainerInstanceCommandOutput extends DeregisterContainerInstanceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DeregisterTaskDefinitionRequest, DeregisterTaskDefinitionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeregisterTaskDefinitionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeregisterTaskDefinitionCommandInput extends DeregisterTaskDefinitionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeregisterTaskDefinitionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDefinitionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeCapacityProvidersRequest, DescribeCapacityProvidersResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeCapacityProvidersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeCapacityProvidersCommandInput extends DescribeCapacityProvidersRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeCapacityProvidersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeCapacityProvidersCommandOutput extends DescribeCapacityProvidersResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeClustersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeClustersCommandInput extends DescribeClustersRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeClustersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeClustersCommandOutput extends DescribeClustersResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeContainerInstancesRequest, DescribeContainerInstancesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeContainerInstancesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeContainerInstancesCommandInput extends DescribeContainerInstancesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeContainerInstancesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeContainerInstancesCommandOutput extends DescribeContainerInstancesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeServicesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeServicesCommandInput extends DescribeServicesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeServicesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeServicesCommandOutput extends DescribeServicesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeTaskDefinitionRequest, DescribeTaskDefinitionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeTaskDefinitionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeTaskDefinitionCommandInput extends DescribeTaskDefinitionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeTaskDefinitionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinitionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeTaskSetsRequest, DescribeTaskSetsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeTaskSetsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeTaskSetsCommandInput extends DescribeTaskSetsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeTaskSetsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeTaskSetsCommandOutput extends DescribeTaskSetsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DescribeTasksRequest, DescribeTasksResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeTasksCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeTasksCommandInput extends DescribeTasksRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeTasksCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeTasksCommandOutput extends DescribeTasksResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { DiscoverPollEndpointRequest, DiscoverPollEndpointResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DiscoverPollEndpointCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DiscoverPollEndpointCommandInput extends DiscoverPollEndpointRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DiscoverPollEndpointCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DiscoverPollEndpointCommandOutput extends DiscoverPollEndpointResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ExecuteCommandRequest, ExecuteCommandResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ExecuteCommandCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ExecuteCommandCommandInput extends ExecuteCommandRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ExecuteCommandCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ExecuteCommandCommandOutput extends ExecuteCommandResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { GetTaskProtectionRequest, GetTaskProtectionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetTaskProtectionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetTaskProtectionCommandInput extends GetTaskProtectionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetTaskProtectionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetTaskProtectionCommandOutput extends GetTaskProtectionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListAccountSettingsRequest, ListAccountSettingsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListAccountSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListAccountSettingsCommandInput extends ListAccountSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListAccountSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListAccountSettingsCommandOutput extends ListAccountSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListAttributesRequest, ListAttributesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListAttributesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListAttributesCommandInput extends ListAttributesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListAttributesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListAttributesCommandOutput extends ListAttributesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListClustersRequest, ListClustersResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListClustersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListClustersCommandInput extends ListClustersRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListClustersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListClustersCommandOutput extends ListClustersResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListContainerInstancesRequest, ListContainerInstancesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListContainerInstancesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListContainerInstancesCommandInput extends ListContainerInstancesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListContainerInstancesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListContainerInstancesCommandOutput extends ListContainerInstancesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListServicesByNamespaceRequest, ListServicesByNamespaceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListServicesByNamespaceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListServicesByNamespaceCommandInput extends ListServicesByNamespaceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListServicesByNamespaceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListServicesByNamespaceCommandOutput extends ListServicesByNamespaceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListServicesRequest, ListServicesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListServicesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListServicesCommandInput extends ListServicesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListServicesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListServicesCommandOutput extends ListServicesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTaskDefinitionFamiliesRequest, ListTaskDefinitionFamiliesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTaskDefinitionFamiliesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTaskDefinitionFamiliesCommandInput extends ListTaskDefinitionFamiliesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTaskDefinitionFamiliesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTaskDefinitionFamiliesCommandOutput extends ListTaskDefinitionFamiliesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTaskDefinitionsRequest, ListTaskDefinitionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTaskDefinitionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTaskDefinitionsCommandInput extends ListTaskDefinitionsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTaskDefinitionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTaskDefinitionsCommandOutput extends ListTaskDefinitionsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { ListTasksRequest, ListTasksResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTasksCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTasksCommandInput extends ListTasksRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTasksCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutAccountSettingRequest, PutAccountSettingResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutAccountSettingCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutAccountSettingCommandInput extends PutAccountSettingRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutAccountSettingCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutAccountSettingCommandOutput extends PutAccountSettingResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutAccountSettingDefaultRequest, PutAccountSettingDefaultResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutAccountSettingDefaultCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutAccountSettingDefaultCommandInput extends PutAccountSettingDefaultRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutAccountSettingDefaultCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutAccountSettingDefaultCommandOutput extends PutAccountSettingDefaultResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutAttributesRequest, PutAttributesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutAttributesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutAttributesCommandInput extends PutAttributesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutAttributesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutAttributesCommandOutput extends PutAttributesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { PutClusterCapacityProvidersRequest, PutClusterCapacityProvidersResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link PutClusterCapacityProvidersCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface PutClusterCapacityProvidersCommandInput extends PutClusterCapacityProvidersRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link PutClusterCapacityProvidersCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface PutClusterCapacityProvidersCommandOutput extends PutClusterCapacityProvidersResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { RegisterContainerInstanceRequest, RegisterContainerInstanceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RegisterContainerInstanceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RegisterContainerInstanceCommandInput extends RegisterContainerInstanceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RegisterContainerInstanceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RegisterContainerInstanceCommandOutput extends RegisterContainerInstanceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { RegisterTaskDefinitionRequest, RegisterTaskDefinitionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RegisterTaskDefinitionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RegisterTaskDefinitionCommandInput extends RegisterTaskDefinitionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RegisterTaskDefinitionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinitionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { RunTaskRequest, RunTaskResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link RunTaskCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface RunTaskCommandInput extends RunTaskRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link RunTaskCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface RunTaskCommandOutput extends RunTaskResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { StartTaskRequest, StartTaskResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartTaskCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartTaskCommandInput extends StartTaskRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartTaskCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartTaskCommandOutput extends StartTaskResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { StopTaskRequest, StopTaskResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StopTaskCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StopTaskCommandInput extends StopTaskRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StopTaskCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StopTaskCommandOutput extends StopTaskResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { SubmitAttachmentStateChangesRequest, SubmitAttachmentStateChangesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SubmitAttachmentStateChangesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SubmitAttachmentStateChangesCommandInput extends SubmitAttachmentStateChangesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SubmitAttachmentStateChangesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SubmitAttachmentStateChangesCommandOutput extends SubmitAttachmentStateChangesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { SubmitContainerStateChangeRequest, SubmitContainerStateChangeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SubmitContainerStateChangeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SubmitContainerStateChangeCommandInput extends SubmitContainerStateChangeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SubmitContainerStateChangeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SubmitContainerStateChangeCommandOutput extends SubmitContainerStateChangeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { SubmitTaskStateChangeRequest, SubmitTaskStateChangeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SubmitTaskStateChangeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SubmitTaskStateChangeCommandInput extends SubmitTaskStateChangeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SubmitTaskStateChangeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SubmitTaskStateChangeCommandOutput extends SubmitTaskStateChangeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { UpdateCapacityProviderRequest, UpdateCapacityProviderResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateCapacityProviderCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateCapacityProviderCommandInput extends UpdateCapacityProviderRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateCapacityProviderCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateCapacityProviderCommandOutput extends UpdateCapacityProviderResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateClusterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateClusterCommandInput extends UpdateClusterRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateClusterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient";
|
|
5
5
|
import { UpdateClusterSettingsRequest, UpdateClusterSettingsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateClusterSettingsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateClusterSettingsCommandInput extends UpdateClusterSettingsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateClusterSettingsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateClusterSettingsCommandOutput extends UpdateClusterSettingsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|