[][src]Struct rusoto_lightsail::ContainerServiceDeployment

pub struct ContainerServiceDeployment {
    pub containers: Option<HashMap<String, Container>>,
    pub created_at: Option<f64>,
    pub public_endpoint: Option<ContainerServiceEndpoint>,
    pub state: Option<String>,
    pub version: Option<i64>,
}

Describes a container deployment configuration of an Amazon Lightsail container service.

A deployment specifies the settings, such as the ports and launch command, of containers that are deployed to your container service.

Fields

containers: Option<HashMap<String, Container>>

An object that describes the configuration for the containers of the deployment.

created_at: Option<f64>

The timestamp when the deployment was created.

public_endpoint: Option<ContainerServiceEndpoint>

An object that describes the endpoint of the deployment.

state: Option<String>

The state of the deployment.

A deployment can be in one of the following states:

  • Activating - The deployment is being created.

  • Active - The deployment was successfully created, and it's currently running on the container service. The container service can have only one deployment in an active state at a time.

  • Inactive - The deployment was previously successfully created, but it is not currently running on the container service.

  • Failed - The deployment failed. Use the GetContainerLog action to view the log events for the containers in the deployment to try to determine the reason for the failure.

version: Option<i64>

The version number of the deployment.

Trait Implementations

impl Clone for ContainerServiceDeployment[src]

impl Debug for ContainerServiceDeployment[src]

impl Default for ContainerServiceDeployment[src]

impl<'de> Deserialize<'de> for ContainerServiceDeployment[src]

impl PartialEq<ContainerServiceDeployment> for ContainerServiceDeployment[src]

impl StructuralPartialEq for ContainerServiceDeployment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.