[][src]Struct rusoto_personalize::BatchInferenceJob

pub struct BatchInferenceJob {
    pub batch_inference_job_arn: Option<String>,
    pub creation_date_time: Option<f64>,
    pub failure_reason: Option<String>,
    pub filter_arn: Option<String>,
    pub job_input: Option<BatchInferenceJobInput>,
    pub job_name: Option<String>,
    pub job_output: Option<BatchInferenceJobOutput>,
    pub last_updated_date_time: Option<f64>,
    pub num_results: Option<i64>,
    pub role_arn: Option<String>,
    pub solution_version_arn: Option<String>,
    pub status: Option<String>,
}

Contains information on a batch inference job.

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.

filter_arn: Option<String>

The ARN of the filter used on the batch inference job.

job_input: Option<BatchInferenceJobInput>

The Amazon S3 path that leads to the input data used to generate the batch inference job.

job_name: Option<String>

The name of the batch inference job.

job_output: Option<BatchInferenceJobOutput>

The Amazon S3 bucket that contains the output data generated by the batch inference job.

last_updated_date_time: Option<f64>

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

num_results: Option<i64>

The number of recommendations generated by the batch inference job. This number includes the error messages generated for failed input records.

role_arn: Option<String>

The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch inference job.

solution_version_arn: Option<String>

The Amazon Resource Name (ARN) of the solution version from which the batch inference job was created.

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 BatchInferenceJob[src]

impl Debug for BatchInferenceJob[src]

impl Default for BatchInferenceJob[src]

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

impl PartialEq<BatchInferenceJob> for BatchInferenceJob[src]

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