[][src]Struct rusoto_personalize::CreateBatchInferenceJobRequest

pub struct CreateBatchInferenceJobRequest {
    pub filter_arn: Option<String>,
    pub job_input: BatchInferenceJobInput,
    pub job_name: String,
    pub job_output: BatchInferenceJobOutput,
    pub num_results: Option<i64>,
    pub role_arn: String,
    pub solution_version_arn: String,
}

Fields

filter_arn: Option<String>

The ARN of the filter to apply to the batch inference job. For more information on using filters, see Using Filters with Amazon Personalize.

job_input: BatchInferenceJobInput

The Amazon S3 path that leads to the input file to base your recommendations on. The input material must be in JSON format.

job_name: String

The name of the batch inference job to create.

job_output: BatchInferenceJobOutput

The path to the Amazon S3 bucket where the job's output will be stored.

num_results: Option<i64>

The number of recommendations to retreive.

role_arn: String

The ARN of the Amazon Identity and Access Management role that has permissions to read and write to your input and out Amazon S3 buckets respectively.

solution_version_arn: String

The Amazon Resource Name (ARN) of the solution version that will be used to generate the batch inference recommendations.

Trait Implementations

impl Clone for CreateBatchInferenceJobRequest[src]

impl Debug for CreateBatchInferenceJobRequest[src]

impl Default for CreateBatchInferenceJobRequest[src]

impl PartialEq<CreateBatchInferenceJobRequest> for CreateBatchInferenceJobRequest[src]

impl Serialize for CreateBatchInferenceJobRequest[src]

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