#[non_exhaustive]
pub struct Deployment {
Show 16 fields pub id: Option<String>, pub status: Option<String>, pub task_definition: Option<String>, pub desired_count: i32, pub pending_count: i32, pub running_count: i32, pub failed_tasks: i32, pub created_at: Option<DateTime>, pub updated_at: Option<DateTime>, pub capacity_provider_strategy: Option<Vec<CapacityProviderStrategyItem>>, pub launch_type: Option<LaunchType>, pub platform_version: Option<String>, pub platform_family: Option<String>, pub network_configuration: Option<NetworkConfiguration>, pub rollout_state: Option<DeploymentRolloutState>, pub rollout_state_reason: Option<String>,
}
Expand description

The details of an Amazon ECS service deployment. This is used only when a service uses the ECS deployment controller type.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
id: Option<String>

The ID of the deployment.

status: Option<String>

The status of the deployment. The following describes each state.

PRIMARY

The most recent deployment of a service.

ACTIVE

A service deployment that still has running tasks, but are in the process of being replaced with a new PRIMARY deployment.

INACTIVE

A deployment that has been completely replaced.

task_definition: Option<String>

The most recent task definition that was specified for the tasks in the service to use.

desired_count: i32

The most recent desired count of tasks that was specified for the service to deploy or maintain.

pending_count: i32

The number of tasks in the deployment that are in the PENDING status.

running_count: i32

The number of tasks in the deployment that are in the RUNNING status.

failed_tasks: i32

The number of consecutively failed tasks in the deployment. A task is considered a failure if the service scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it fails any of its defined health checks and is stopped.

Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and stops being evaluated.

created_at: Option<DateTime>

The Unix timestamp for the time when the service deployment was created.

updated_at: Option<DateTime>

The Unix timestamp for the time when the service deployment was last updated.

capacity_provider_strategy: Option<Vec<CapacityProviderStrategyItem>>

The capacity provider strategy that the deployment is using.

launch_type: Option<LaunchType>

The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types in the Amazon Elastic Container Service Developer Guide.

platform_version: Option<String>

The platform version that your tasks in the service run on. A platform version is only specified for tasks using the Fargate launch type. If one isn't specified, the LATEST platform version is used. For more information, see Fargate Platform Versions in the Amazon Elastic Container Service Developer Guide.

platform_family: Option<String>

The operating system that your tasks in the service, or tasks are running on. A platform family is specified only for tasks using the Fargate launch type.

All tasks that run as part of this service must use the same platformFamily value as the service, for example, LINUX..

network_configuration: Option<NetworkConfiguration>

The VPC subnet and security group configuration for tasks that receive their own elastic network interface by using the awsvpc networking mode.

rollout_state: Option<DeploymentRolloutState>

The rolloutState of a service is only returned for services that use the rolling update (ECS) deployment type that aren't behind a Classic Load Balancer.

The rollout state of the deployment. When a service deployment is started, it begins in an IN_PROGRESS state. When the service reaches a steady state, the deployment transitions to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the deployment transitions to a FAILED state. A deployment in FAILED state doesn't launch any new tasks. For more information, see DeploymentCircuitBreaker.

rollout_state_reason: Option<String>

A description of the rollout state of a deployment.

Implementations

The ID of the deployment.

The status of the deployment. The following describes each state.

PRIMARY

The most recent deployment of a service.

ACTIVE

A service deployment that still has running tasks, but are in the process of being replaced with a new PRIMARY deployment.

INACTIVE

A deployment that has been completely replaced.

The most recent task definition that was specified for the tasks in the service to use.

The most recent desired count of tasks that was specified for the service to deploy or maintain.

The number of tasks in the deployment that are in the PENDING status.

The number of tasks in the deployment that are in the RUNNING status.

The number of consecutively failed tasks in the deployment. A task is considered a failure if the service scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it fails any of its defined health checks and is stopped.

Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and stops being evaluated.

The Unix timestamp for the time when the service deployment was created.

The Unix timestamp for the time when the service deployment was last updated.

The capacity provider strategy that the deployment is using.

The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types in the Amazon Elastic Container Service Developer Guide.

The platform version that your tasks in the service run on. A platform version is only specified for tasks using the Fargate launch type. If one isn't specified, the LATEST platform version is used. For more information, see Fargate Platform Versions in the Amazon Elastic Container Service Developer Guide.

The operating system that your tasks in the service, or tasks are running on. A platform family is specified only for tasks using the Fargate launch type.

All tasks that run as part of this service must use the same platformFamily value as the service, for example, LINUX..

The VPC subnet and security group configuration for tasks that receive their own elastic network interface by using the awsvpc networking mode.

The rolloutState of a service is only returned for services that use the rolling update (ECS) deployment type that aren't behind a Classic Load Balancer.

The rollout state of the deployment. When a service deployment is started, it begins in an IN_PROGRESS state. When the service reaches a steady state, the deployment transitions to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the deployment transitions to a FAILED state. A deployment in FAILED state doesn't launch any new tasks. For more information, see DeploymentCircuitBreaker.

A description of the rollout state of a deployment.

Creates a new builder-style object to manufacture Deployment

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more