[][src]Struct rusoto_codedeploy::LifecycleEvent

pub struct LifecycleEvent {
    pub diagnostics: Option<Diagnostics>,
    pub end_time: Option<f64>,
    pub lifecycle_event_name: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
}

Information about a deployment lifecycle event.

Fields

diagnostics: Option<Diagnostics>

Diagnostic information about the deployment lifecycle event.

end_time: Option<f64>

A timestamp that indicates when the deployment lifecycle event ended.

lifecycle_event_name: Option<String>

The deployment lifecycle event name, such as ApplicationStop, BeforeInstall, AfterInstall, ApplicationStart, or ValidateService.

start_time: Option<f64>

A timestamp that indicates when the deployment lifecycle event started.

status: Option<String>

The deployment lifecycle event status:

  • Pending: The deployment lifecycle event is pending.

  • InProgress: The deployment lifecycle event is in progress.

  • Succeeded: The deployment lifecycle event ran successfully.

  • Failed: The deployment lifecycle event has failed.

  • Skipped: The deployment lifecycle event has been skipped.

  • Unknown: The deployment lifecycle event is unknown.

Trait Implementations

impl Clone for LifecycleEvent[src]

impl Default for LifecycleEvent[src]

impl PartialEq<LifecycleEvent> for LifecycleEvent[src]

impl Debug for LifecycleEvent[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self