Struct aws_sdk_codedeploy::types::EcsTaskSet
source · #[non_exhaustive]pub struct EcsTaskSet {
pub identifer: Option<String>,
pub desired_count: i64,
pub pending_count: i64,
pub running_count: i64,
pub status: Option<String>,
pub traffic_weight: f64,
pub target_group: Option<TargetGroupInfo>,
pub task_set_label: Option<TargetLabel>,
}
Expand description
Information about a set of Amazon ECS tasks in an 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 CodeDeploy application that uses the Amazon ECS compute platform deploys a containerized application in an Amazon ECS service as a task set.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.identifer: Option<String>
A unique ID of an ECSTaskSet
.
desired_count: i64
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.
pending_count: i64
The number of tasks in the task set that are in the PENDING
status during an Amazon ECS deployment. A task in the PENDING
state is preparing to enter the RUNNING
state. A task set enters the PENDING
status when it launches for the first time, or when it is restarted after being in the STOPPED
state.
running_count: i64
The number of tasks in the task set that are in the RUNNING
status during an Amazon ECS deployment. A task in the RUNNING
state is running and ready for use.
status: Option<String>
The status of the task set. There are three valid task set statuses:
-
PRIMARY
: Indicates the task set is serving production traffic. -
ACTIVE
: Indicates the task set is not serving production traffic. -
DRAINING
: Indicates the tasks in the task set are being stopped and their corresponding targets are being deregistered from their target group.
traffic_weight: f64
The percentage of traffic served by this task set.
target_group: Option<TargetGroupInfo>
The target group associated with the task set. The target group is used by CodeDeploy to manage traffic to a task set.
task_set_label: Option<TargetLabel>
A label that identifies whether the ECS task set is an original target (BLUE
) or a replacement target (GREEN
).
Implementations§
source§impl EcsTaskSet
impl EcsTaskSet
sourcepub fn desired_count(&self) -> i64
pub fn desired_count(&self) -> i64
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.
sourcepub fn pending_count(&self) -> i64
pub fn pending_count(&self) -> i64
The number of tasks in the task set that are in the PENDING
status during an Amazon ECS deployment. A task in the PENDING
state is preparing to enter the RUNNING
state. A task set enters the PENDING
status when it launches for the first time, or when it is restarted after being in the STOPPED
state.
sourcepub fn running_count(&self) -> i64
pub fn running_count(&self) -> i64
The number of tasks in the task set that are in the RUNNING
status during an Amazon ECS deployment. A task in the RUNNING
state is running and ready for use.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the task set. There are three valid task set statuses:
-
PRIMARY
: Indicates the task set is serving production traffic. -
ACTIVE
: Indicates the task set is not serving production traffic. -
DRAINING
: Indicates the tasks in the task set are being stopped and their corresponding targets are being deregistered from their target group.
sourcepub fn traffic_weight(&self) -> f64
pub fn traffic_weight(&self) -> f64
The percentage of traffic served by this task set.
sourcepub fn target_group(&self) -> Option<&TargetGroupInfo>
pub fn target_group(&self) -> Option<&TargetGroupInfo>
The target group associated with the task set. The target group is used by CodeDeploy to manage traffic to a task set.
sourcepub fn task_set_label(&self) -> Option<&TargetLabel>
pub fn task_set_label(&self) -> Option<&TargetLabel>
A label that identifies whether the ECS task set is an original target (BLUE
) or a replacement target (GREEN
).
source§impl EcsTaskSet
impl EcsTaskSet
sourcepub fn builder() -> EcsTaskSetBuilder
pub fn builder() -> EcsTaskSetBuilder
Creates a new builder-style object to manufacture EcsTaskSet
.
Trait Implementations§
source§impl Clone for EcsTaskSet
impl Clone for EcsTaskSet
source§fn clone(&self) -> EcsTaskSet
fn clone(&self) -> EcsTaskSet
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EcsTaskSet
impl Debug for EcsTaskSet
source§impl PartialEq for EcsTaskSet
impl PartialEq for EcsTaskSet
source§fn eq(&self, other: &EcsTaskSet) -> bool
fn eq(&self, other: &EcsTaskSet) -> bool
self
and other
values to be equal, and is used
by ==
.