@aws-sdk/client-ecs 3.58.0 → 3.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.61.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.60.0...v3.61.0) (2022-03-31)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients for 03/22/2022 & 03/23/2022 ([#3498](https://github.com/aws/aws-sdk-js-v3/issues/3498)) ([fc18e5c](https://github.com/aws/aws-sdk-js-v3/commit/fc18e5c1b339dc71946edd83b28bf71cf4f8eba3))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-ecs
@@ -1088,9 +1088,9 @@ export declare enum LaunchType {
1088
1088
  * <p>The load balancer configuration to use with a service or task set.</p>
1089
1089
  * <p>For specific notes and restrictions regarding the use of load balancers with services
1090
1090
  * and task sets, see the CreateService and CreateTaskSet actions.</p>
1091
- * <p>When you add, update, or remove a load blaancer configuration, Amazon ECS starts a new
1092
- * deployment with the updated Elastic Load Balancing configuration. This causes tasks to register to and
1093
- * deregister from load balancers.</p>
1091
+ * <p>When you add, update, or remove a load balancer configuration, Amazon ECS starts a new deployment
1092
+ * with the updated Elastic Load Balancing configuration. This causes tasks to register to and deregister
1093
+ * from load balancers.</p>
1094
1094
  * <p>We recommend that you verify this on a test environment before you update the Elastic Load Balancing
1095
1095
  * configuration. </p>
1096
1096
  * <p>A service-linked role is required for services that use multiple target groups. For
@@ -8935,6 +8935,22 @@ export interface UpdateServiceRequest {
8935
8935
  * <p>When you add, update, or remove a load balancer configuration, Amazon ECS starts new tasks with
8936
8936
  * the updated Elastic Load Balancing configuration, and then stops the old tasks when the new tasks are
8937
8937
  * running.</p>
8938
+ * <p>For services that use rolling updates, you can add, update, or remove Elastic Load Balancing target groups.
8939
+ * You can update from a single target group to multiple target groups and from multiple
8940
+ * target groups to a single target group.</p>
8941
+ * <p>For services that use blue/green deployments, you can update Elastic Load Balancing target groups by using
8942
+ * <code>
8943
+ * <a href="https://docs.aws.amazon.com/codedeploy/latest/APIReference/API_CreateDeployment.html">CreateDeployment</a>
8944
+ * </code> through CodeDeploy. Note that multiple target groups
8945
+ * are not supported for blue/green deployments. For more information see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html">Register
8946
+ * multiple target groups with a service</a> in the
8947
+ * <i>Amazon Elastic Container Service Developer Guide</i>. </p>
8948
+ * <p>For services that use the external deployment controller, you can add, update, or remove
8949
+ * load balancers by using <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateTaskSet.html">CreateTaskSet</a>.
8950
+ * Note that multiple target groups are not supported for external deployments. For more
8951
+ * information see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html">Register
8952
+ * multiple target groups with a service</a> in the
8953
+ * <i>Amazon Elastic Container Service Developer Guide</i>. </p>
8938
8954
  * <p>You can remove existing <code>loadBalancers</code> by passing an empty list.</p>
8939
8955
  */
8940
8956
  loadBalancers?: LoadBalancer[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecs",
3
3
  "description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
4
- "version": "3.58.0",
4
+ "version": "3.61.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",