[][src]Struct rusoto_personalize::BatchInferenceJobSummary

pub struct BatchInferenceJobSummary {
    pub batch_inference_job_arn: Option<String>,
    pub creation_date_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub job_name: Option<String>,
    pub last_updated_date_time: Option<f64>,
    pub solution_version_arn: Option<String>,
    pub status: Option<String>,
}

A truncated version of the BatchInferenceJob datatype. The ListBatchInferenceJobs operation returns a list of batch inference job summaries.

Fields

batch_inference_job_arn: Option<String>

The Amazon Resource Name (ARN) of the batch inference job.

creation_date_time: Option<f64>

The time at which the batch inference job was created.

failure_reason: Option<String>

If the batch inference job failed, the reason for the failure.

job_name: Option<String>

The name of the batch inference job.

last_updated_date_time: Option<f64>

The time at which the batch inference job was last updated.

solution_version_arn: Option<String>

The ARN of the solution version used by the batch inference job.

status: Option<String>

The status of the batch inference job. The status is one of the following values:

  • PENDING

  • IN PROGRESS

  • ACTIVE

  • CREATE FAILED

Trait Implementations

impl Clone for BatchInferenceJobSummary[src]

impl Debug for BatchInferenceJobSummary[src]

impl Default for BatchInferenceJobSummary[src]

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

impl PartialEq<BatchInferenceJobSummary> for BatchInferenceJobSummary[src]

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