#[non_exhaustive]pub struct AwsEcsServiceDeploymentConfigurationDetails {
pub deployment_circuit_breaker: Option<AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails>,
pub maximum_percent: Option<i32>,
pub minimum_healthy_percent: Option<i32>,
}
Expand description
Optional deployment parameters for the service.
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.deployment_circuit_breaker: Option<AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails>
Determines whether a service deployment fails if a service cannot reach a steady state.
maximum_percent: Option<i32>
For a service that uses the rolling update (ECS
) deployment type, the maximum number of tasks in a service that are allowed in the RUNNING
or PENDING
state during a deployment, and for tasks that use the EC2 launch type, when any container instances are in the DRAINING
state. Provided as a percentage of the desired number of tasks. The default value is 200%.
For a service that uses the blue/green (CODE_DEPLOY
) or EXTERNAL
deployment types, and tasks that use the EC2 launch type, the maximum number of tasks in the service that remain in the RUNNING
state while the container instances are in the DRAINING
state.
For the Fargate launch type, the maximum percent value is not used.
minimum_healthy_percent: Option<i32>
For a service that uses the rolling update (ECS
) deployment type, the minimum number of tasks in a service that must remain in the RUNNING
state during a deployment, and while any container instances are in the DRAINING
state if the service contains tasks using the EC2 launch type. Expressed as a percentage of the desired number of tasks. The default value is 100%.
For a service that uses the blue/green (CODE_DEPLOY
) or EXTERNAL
deployment types and tasks that use the EC2 launch type, the minimum number of the tasks in the service that remain in the RUNNING
state while the container instances are in the DRAINING
state.
For the Fargate launch type, the minimum healthy percent value is not used.
Implementations§
source§impl AwsEcsServiceDeploymentConfigurationDetails
impl AwsEcsServiceDeploymentConfigurationDetails
sourcepub fn deployment_circuit_breaker(
&self
) -> Option<&AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails>
pub fn deployment_circuit_breaker( &self ) -> Option<&AwsEcsServiceDeploymentConfigurationDeploymentCircuitBreakerDetails>
Determines whether a service deployment fails if a service cannot reach a steady state.
sourcepub fn maximum_percent(&self) -> Option<i32>
pub fn maximum_percent(&self) -> Option<i32>
For a service that uses the rolling update (ECS
) deployment type, the maximum number of tasks in a service that are allowed in the RUNNING
or PENDING
state during a deployment, and for tasks that use the EC2 launch type, when any container instances are in the DRAINING
state. Provided as a percentage of the desired number of tasks. The default value is 200%.
For a service that uses the blue/green (CODE_DEPLOY
) or EXTERNAL
deployment types, and tasks that use the EC2 launch type, the maximum number of tasks in the service that remain in the RUNNING
state while the container instances are in the DRAINING
state.
For the Fargate launch type, the maximum percent value is not used.
sourcepub fn minimum_healthy_percent(&self) -> Option<i32>
pub fn minimum_healthy_percent(&self) -> Option<i32>
For a service that uses the rolling update (ECS
) deployment type, the minimum number of tasks in a service that must remain in the RUNNING
state during a deployment, and while any container instances are in the DRAINING
state if the service contains tasks using the EC2 launch type. Expressed as a percentage of the desired number of tasks. The default value is 100%.
For a service that uses the blue/green (CODE_DEPLOY
) or EXTERNAL
deployment types and tasks that use the EC2 launch type, the minimum number of the tasks in the service that remain in the RUNNING
state while the container instances are in the DRAINING
state.
For the Fargate launch type, the minimum healthy percent value is not used.
source§impl AwsEcsServiceDeploymentConfigurationDetails
impl AwsEcsServiceDeploymentConfigurationDetails
sourcepub fn builder() -> AwsEcsServiceDeploymentConfigurationDetailsBuilder
pub fn builder() -> AwsEcsServiceDeploymentConfigurationDetailsBuilder
Creates a new builder-style object to manufacture AwsEcsServiceDeploymentConfigurationDetails
.
Trait Implementations§
source§impl Clone for AwsEcsServiceDeploymentConfigurationDetails
impl Clone for AwsEcsServiceDeploymentConfigurationDetails
source§fn clone(&self) -> AwsEcsServiceDeploymentConfigurationDetails
fn clone(&self) -> AwsEcsServiceDeploymentConfigurationDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsEcsServiceDeploymentConfigurationDetails
impl PartialEq for AwsEcsServiceDeploymentConfigurationDetails
source§fn eq(&self, other: &AwsEcsServiceDeploymentConfigurationDetails) -> bool
fn eq(&self, other: &AwsEcsServiceDeploymentConfigurationDetails) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEcsServiceDeploymentConfigurationDetails
Auto Trait Implementations§
impl Freeze for AwsEcsServiceDeploymentConfigurationDetails
impl RefUnwindSafe for AwsEcsServiceDeploymentConfigurationDetails
impl Send for AwsEcsServiceDeploymentConfigurationDetails
impl Sync for AwsEcsServiceDeploymentConfigurationDetails
impl Unpin for AwsEcsServiceDeploymentConfigurationDetails
impl UnwindSafe for AwsEcsServiceDeploymentConfigurationDetails
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more