[][src]Struct rusoto_robomaker::DeploymentJob

pub struct DeploymentJob {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub deployment_application_configs: Option<Vec<DeploymentApplicationConfig>>,
    pub deployment_config: Option<DeploymentConfig>,
    pub failure_code: Option<String>,
    pub failure_reason: Option<String>,
    pub fleet: Option<String>,
    pub status: Option<String>,
}

Information about a deployment job.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the deployment job.

created_at: Option<f64>

The time, in milliseconds since the epoch, when the deployment job was created.

deployment_application_configs: Option<Vec<DeploymentApplicationConfig>>

The deployment application configuration.

deployment_config: Option<DeploymentConfig>

The deployment configuration.

failure_code: Option<String>

The deployment job failure code.

failure_reason: Option<String>

A short description of the reason why the deployment job failed.

fleet: Option<String>

The Amazon Resource Name (ARN) of the fleet.

status: Option<String>

The status of the deployment job.

Trait Implementations

impl Clone for DeploymentJob[src]

impl Debug for DeploymentJob[src]

impl Default for DeploymentJob[src]

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

impl PartialEq<DeploymentJob> for DeploymentJob[src]

impl StructuralPartialEq for DeploymentJob[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> 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.