ECSTaskSet class
Information about a set of Amazon ECS tasks in an AWS CodeDeploy deployment. An Amazon ECS task set includes details such as the desired number of tasks, how many tasks are running, and whether the task set serves production traffic. An AWS CodeDeploy application that uses the Amazon ECS compute platform deploys a containerized application in an Amazon ECS service as a task set.
Constructors
- ECSTaskSet({int? desiredCount, String? identifer, int? pendingCount, int? runningCount, String? status, TargetGroupInfo? targetGroup, TargetLabel? taskSetLabel, double? trafficWeight})
-
ECSTaskSet.fromJson(Map<
String, dynamic> json) -
factory
Properties
- desiredCount → int?
-
The number of tasks in a task set. During a deployment that uses the Amazon
ECS compute type, CodeDeploy instructs Amazon ECS to create a new task set
and uses this value to determine how many tasks to create. After the updated
task set is created, CodeDeploy shifts traffic to the new task set.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- identifer → String?
-
A unique ID of an
ECSTaskSet
.final - pendingCount → int?
-
The number of tasks in the task set that are in the
PENDING
status during an Amazon ECS deployment. A task in thePENDING
state is preparing to enter theRUNNING
state. A task set enters thePENDING
status when it launches for the first time, or when it is restarted after being in theSTOPPED
state.final - runningCount → int?
-
The number of tasks in the task set that are in the
RUNNING
status during an Amazon ECS deployment. A task in theRUNNING
state is running and ready for use.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- status → String?
-
The status of the task set. There are three valid task set statuses:
final
- targetGroup → TargetGroupInfo?
-
The target group associated with the task set. The target group is used by
AWS CodeDeploy to manage traffic to a task set.
final
- taskSetLabel → TargetLabel?
-
A label that identifies whether the ECS task set is an original target
(
BLUE
) or a replacement target (GREEN
).final - trafficWeight → double?
-
The percentage of traffic served by this task set.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited