Struct aws_sdk_codedeploy::model::EcsTaskSet
source · [−]#[non_exhaustive]pub struct EcsTaskSet { /* private fields */ }
Expand description
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.
Implementations
sourceimpl 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 AWS 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
).
sourceimpl EcsTaskSet
impl EcsTaskSet
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EcsTaskSet
.
Trait Implementations
sourceimpl Clone for EcsTaskSet
impl Clone for EcsTaskSet
sourcefn clone(&self) -> EcsTaskSet
fn clone(&self) -> EcsTaskSet
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for EcsTaskSet
impl Debug for EcsTaskSet
sourceimpl PartialEq<EcsTaskSet> for EcsTaskSet
impl PartialEq<EcsTaskSet> for EcsTaskSet
sourcefn eq(&self, other: &EcsTaskSet) -> bool
fn eq(&self, other: &EcsTaskSet) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &EcsTaskSet) -> bool
fn ne(&self, other: &EcsTaskSet) -> bool
This method tests for !=
.
impl StructuralPartialEq for EcsTaskSet
Auto Trait Implementations
impl RefUnwindSafe for EcsTaskSet
impl Send for EcsTaskSet
impl Sync for EcsTaskSet
impl Unpin for EcsTaskSet
impl UnwindSafe for EcsTaskSet
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more