[][src]Struct rusoto_robomaker::ProgressDetail

pub struct ProgressDetail {
    pub current_progress: Option<String>,
    pub estimated_time_remaining_seconds: Option<i64>,
    pub percent_done: Option<f32>,
    pub target_resource: Option<String>,
}

Information about the progress of a deployment job.

Fields

current_progress: Option<String>

The current progress status.

Validating

Validating the deployment.

DownloadingExtracting

Downloading and extracting the bundle on the robot.

ExecutingPreLaunch

Executing pre-launch script(s) if provided.

Launching

Launching the robot application.

ExecutingPostLaunch

Executing post-launch script(s) if provided.

Finished

Deployment is complete.

estimated_time_remaining_seconds: Option<i64>

Estimated amount of time in seconds remaining in the step. This currently only applies to the Downloading/Extracting step of the deployment. It is empty for other steps.

percent_done: Option<f32>

Precentage of the step that is done. This currently only applies to the Downloading/Extracting step of the deployment. It is empty for other steps.

target_resource: Option<String>

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

Trait Implementations

impl Clone for ProgressDetail[src]

impl Debug for ProgressDetail[src]

impl Default for ProgressDetail[src]

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

impl PartialEq<ProgressDetail> for ProgressDetail[src]

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