[−][src]Struct rusoto_ecs::Deployment
The details of an Amazon ECS service deployment. This is used only when a service uses the ECS
deployment controller type.
Fields
created_at: Option<f64>
The Unix timestamp for when the service deployment was created.
desired_count: Option<i64>
The most recent desired count of tasks that was specified for the service to deploy or maintain.
id: Option<String>
The ID of the deployment.
launch_type: Option<String>
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.
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.
pending_count: Option<i64>
The number of tasks in the deployment that are in the PENDING
status.
platform_version: Option<String>
The platform version on which your tasks in the service are running. A platform version is only specified for tasks using the Fargate launch type. If one is not specified, the LATEST
platform version is used by default. For more information, see AWS Fargate Platform Versions in the Amazon Elastic Container Service Developer Guide.
running_count: Option<i64>
The number of tasks in the deployment that are in the RUNNING
status.
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.
updated_at: Option<f64>
The Unix timestamp for when the service deployment was last updated.
Trait Implementations
impl PartialEq<Deployment> for Deployment
[src]
fn eq(&self, other: &Deployment) -> bool
[src]
fn ne(&self, other: &Deployment) -> bool
[src]
impl Default for Deployment
[src]
fn default() -> Deployment
[src]
impl Clone for Deployment
[src]
fn clone(&self) -> Deployment
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Deployment
[src]
impl<'de> Deserialize<'de> for Deployment
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for Deployment
impl Sync for Deployment
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self