[][src]Struct rusoto_amplify::Step

pub struct Step {
    pub artifacts_url: Option<String>,
    pub context: Option<String>,
    pub end_time: f64,
    pub log_url: Option<String>,
    pub screenshots: Option<HashMap<String, String>>,
    pub start_time: f64,
    pub status: String,
    pub status_reason: Option<String>,
    pub step_name: String,
    pub test_artifacts_url: Option<String>,
    pub test_config_url: Option<String>,
}

Describes an execution step, for an execution job, for an Amplify app.

Fields

artifacts_url: Option<String>

The URL to the artifact for the execution step.

context: Option<String>

The context for the current step. Includes a build image if the step is build.

end_time: f64

The end date and time of the execution step.

log_url: Option<String>

The URL to the logs for the execution step.

screenshots: Option<HashMap<String, String>>

The list of screenshot URLs for the execution step, if relevant.

start_time: f64

The start date and time of the execution step.

status: String

The status of the execution step.

status_reason: Option<String>

The reason for the current step status.

step_name: String

The name of the execution step.

test_artifacts_url: Option<String>

The URL to the test artifact for the execution step.

test_config_url: Option<String>

The URL to the test configuration for the execution step.

Trait Implementations

impl Clone for Step[src]

impl Debug for Step[src]

impl Default for Step[src]

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

impl PartialEq<Step> for Step[src]

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