You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/client-ecs/src/ECS.ts
+2-30Lines changed: 2 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -418,36 +418,8 @@ export class ECS extends ECSClient {
418
418
* <p>When creating a service that uses the <code>EXTERNAL</code> deployment controller, you
419
419
* can specify only parameters that aren't controlled at the task set level. The only
420
420
* required parameter is the service name. You control your services using the <a>CreateTaskSet</a> operation. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS deployment types</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
421
-
* <p>When the service scheduler launches new tasks, it determines task placement in your
422
-
* cluster using the following logic:</p>
423
-
* <ul>
424
-
* <li>
425
-
* <p>Determine which of the container instances in your cluster can support the
426
-
* task definition of your service. For example, they have the required CPU,
427
-
* memory, ports, and container instance attributes.</p>
428
-
* </li>
429
-
* <li>
430
-
* <p>By default, the service scheduler attempts to balance tasks across
431
-
* Availability Zones in this manner. This is the case even if you can choose a
432
-
* different placement strategy with the <code>placementStrategy</code>
433
-
* parameter.</p>
434
-
* <ul>
435
-
* <li>
436
-
* <p>Sort the valid container instances, giving priority to instances that
437
-
* have the fewest number of running tasks for this service in their
438
-
* respective Availability Zone. For example, if zone A has one running
439
-
* service task and zones B and C each have zero, valid container instances
440
-
* in either zone B or C are considered optimal for placement.</p>
441
-
* </li>
442
-
* <li>
443
-
* <p>Place the new service task on a valid container instance in an optimal
444
-
* Availability Zone based on the previous steps, favoring container
445
-
* instances with the fewest number of running tasks for this
446
-
* service.</p>
447
-
* </li>
448
-
* </ul>
449
-
* </li>
450
-
* </ul>
421
+
* <p>When the service scheduler launches new tasks, it determines task placement. For information
422
+
* about task placement and task placement strategies, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement.html">Amazon ECS task placement</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
* <p>When creating a service that uses the <code>EXTERNAL</code> deployment controller, you
106
106
* can specify only parameters that aren't controlled at the task set level. The only
107
107
* required parameter is the service name. You control your services using the <a>CreateTaskSet</a> operation. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS deployment types</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
108
-
* <p>When the service scheduler launches new tasks, it determines task placement in your
109
-
* cluster using the following logic:</p>
110
-
* <ul>
111
-
* <li>
112
-
* <p>Determine which of the container instances in your cluster can support the
113
-
* task definition of your service. For example, they have the required CPU,
114
-
* memory, ports, and container instance attributes.</p>
115
-
* </li>
116
-
* <li>
117
-
* <p>By default, the service scheduler attempts to balance tasks across
118
-
* Availability Zones in this manner. This is the case even if you can choose a
119
-
* different placement strategy with the <code>placementStrategy</code>
120
-
* parameter.</p>
121
-
* <ul>
122
-
* <li>
123
-
* <p>Sort the valid container instances, giving priority to instances that
124
-
* have the fewest number of running tasks for this service in their
125
-
* respective Availability Zone. For example, if zone A has one running
126
-
* service task and zones B and C each have zero, valid container instances
127
-
* in either zone B or C are considered optimal for placement.</p>
128
-
* </li>
129
-
* <li>
130
-
* <p>Place the new service task on a valid container instance in an optimal
131
-
* Availability Zone based on the previous steps, favoring container
132
-
* instances with the fewest number of running tasks for this
133
-
* service.</p>
134
-
* </li>
135
-
* </ul>
136
-
* </li>
137
-
* </ul>
108
+
* <p>When the service scheduler launches new tasks, it determines task placement. For information
109
+
* about task placement and task placement strategies, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement.html">Amazon ECS task placement</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
138
110
* @example
139
111
* Use a bare-bones client and the command you need to make an API call.
* <p>The dependencies defined for container startup and shutdown. A container can contain
4403
-
* multiple dependencies. When a dependency is defined for container startup, for container
4405
+
* multiple dependencies on other containers in a task definition. When a dependency is defined for container startup, for container
4404
4406
* shutdown it is reversed.</p>
4405
4407
* <p>For tasks using the EC2 launch type, the container instances require at
4406
4408
* least version 1.26.0 of the container agent to turn on container dependencies. However,
@@ -4943,7 +4945,7 @@ export enum OSFamily {
4943
4945
4944
4946
/**
4945
4947
* <p>Information about the platform for the Amazon ECS service or task.</p>
4946
-
* <p>For more informataion about <code>RuntimePlatform</code>, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#runtime-platform">RuntimePlatform</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
4948
+
* <p>For more information about <code>RuntimePlatform</code>, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#runtime-platform">RuntimePlatform</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
0 commit comments