[][src]Struct rusoto_greengrass::GetDeploymentStatusResponse

pub struct GetDeploymentStatusResponse {
    pub deployment_status: Option<String>,
    pub deployment_type: Option<String>,
    pub error_details: Option<Vec<ErrorDetail>>,
    pub error_message: Option<String>,
    pub updated_at: Option<String>,
}

Fields

deployment_status: Option<String>

The status of the deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.

deployment_type: Option<String>

The type of the deployment.

error_details: Option<Vec<ErrorDetail>>

Error details

error_message: Option<String>

Error message

updated_at: Option<String>

The time, in milliseconds since the epoch, when the deployment status was updated.

Trait Implementations

impl Clone for GetDeploymentStatusResponse[src]

impl Debug for GetDeploymentStatusResponse[src]

impl Default for GetDeploymentStatusResponse[src]

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

impl PartialEq<GetDeploymentStatusResponse> for GetDeploymentStatusResponse[src]

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