[][src]Struct rusoto_robomaker::SimulationJobSummary

pub struct SimulationJobSummary {
    pub arn: Option<String>,
    pub data_source_names: Option<Vec<String>>,
    pub last_updated_at: Option<f64>,
    pub name: Option<String>,
    pub robot_application_names: Option<Vec<String>>,
    pub simulation_application_names: Option<Vec<String>>,
    pub status: Option<String>,
}

Summary information for a simulation job.

Fields

arn: Option<String>

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

data_source_names: Option<Vec<String>>

The names of the data sources.

last_updated_at: Option<f64>

The time, in milliseconds since the epoch, when the simulation job was last updated.

name: Option<String>

The name of the simulation job.

robot_application_names: Option<Vec<String>>

A list of simulation job robot application names.

simulation_application_names: Option<Vec<String>>

A list of simulation job simulation application names.

status: Option<String>

The status of the simulation job.

Trait Implementations

impl Clone for SimulationJobSummary[src]

impl Debug for SimulationJobSummary[src]

impl Default for SimulationJobSummary[src]

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

impl PartialEq<SimulationJobSummary> for SimulationJobSummary[src]

impl StructuralPartialEq for SimulationJobSummary[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, 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> Sealed<T> for T where
    T: ?Sized

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.