[][src]Struct rusoto_robomaker::StartSimulationJobBatchResponse

pub struct StartSimulationJobBatchResponse {
    pub arn: Option<String>,
    pub batch_policy: Option<BatchPolicy>,
    pub client_request_token: Option<String>,
    pub created_at: Option<f64>,
    pub created_requests: Option<Vec<SimulationJobSummary>>,
    pub failed_requests: Option<Vec<FailedCreateSimulationJobRequest>>,
    pub failure_code: Option<String>,
    pub failure_reason: Option<String>,
    pub pending_requests: Option<Vec<SimulationJobRequest>>,
    pub status: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

arn: Option<String>

The Amazon Resource Name (arn) of the batch.

batch_policy: Option<BatchPolicy>

The batch policy.

client_request_token: Option<String>

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

created_at: Option<f64>

The time, in milliseconds since the epoch, when the simulation job batch was created.

created_requests: Option<Vec<SimulationJobSummary>>

A list of created simulation job request summaries.

failed_requests: Option<Vec<FailedCreateSimulationJobRequest>>

A list of failed simulation job requests. The request failed to be created into a simulation job. Failed requests do not have a simulation job ID.

failure_code: Option<String>

The failure code if the simulation job batch failed.

failure_reason: Option<String>

The reason the simulation job batch failed.

pending_requests: Option<Vec<SimulationJobRequest>>

A list of pending simulation job requests. These requests have not yet been created into simulation jobs.

status: Option<String>

The status of the simulation job batch.

Pending

The simulation job batch request is pending.

InProgress

The simulation job batch is in progress.

Failed

The simulation job batch failed. One or more simulation job requests could not be completed due to an internal failure (like InternalServiceError). See failureCode and failureReason for more information.

Completed

The simulation batch job completed. A batch is complete when (1) there are no pending simulation job requests in the batch and none of the failed simulation job requests are due to InternalServiceError and (2) when all created simulation jobs have reached a terminal state (for example, Completed or Failed).

Canceled

The simulation batch job was cancelled.

Canceling

The simulation batch job is being cancelled.

Completing

The simulation batch job is completing.

TimingOut

The simulation job batch is timing out.

If a batch timing out, and there are pending requests that were failing due to an internal failure (like InternalServiceError), the batch status will be Failed. If there are no such failing request, the batch status will be TimedOut.

TimedOut

The simulation batch job timed out.

tags: Option<HashMap<String, String>>

A map that contains tag keys and tag values that are attached to the deployment job batch.

Trait Implementations

impl Clone for StartSimulationJobBatchResponse[src]

impl Debug for StartSimulationJobBatchResponse[src]

impl Default for StartSimulationJobBatchResponse[src]

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

impl PartialEq<StartSimulationJobBatchResponse> for StartSimulationJobBatchResponse[src]

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