Struct aws_sdk_personalize::operation::create_batch_inference_job::CreateBatchInferenceJobInput
source · #[non_exhaustive]pub struct CreateBatchInferenceJobInput {
pub job_name: Option<String>,
pub solution_version_arn: Option<String>,
pub filter_arn: Option<String>,
pub num_results: Option<i32>,
pub job_input: Option<BatchInferenceJobInput>,
pub job_output: Option<BatchInferenceJobOutput>,
pub role_arn: Option<String>,
pub batch_inference_job_config: Option<BatchInferenceJobConfig>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.job_name: Option<String>
The name of the batch inference job to create.
solution_version_arn: Option<String>
The Amazon Resource Name (ARN) of the solution version that will be used to generate the batch inference recommendations.
filter_arn: Option<String>
The ARN of the filter to apply to the batch inference job. For more information on using filters, see Filtering batch recommendations.
num_results: Option<i32>
The number of recommendations to retrieve.
job_input: Option<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_output: Option<BatchInferenceJobOutput>
The path to the Amazon S3 bucket where the job's output will be stored.
role_arn: Option<String>
The ARN of the Amazon Identity and Access Management role that has permissions to read and write to your input and output Amazon S3 buckets respectively.
batch_inference_job_config: Option<BatchInferenceJobConfig>
The configuration details of a batch inference job.
A list of tags to apply to the batch inference job.
Implementations§
source§impl CreateBatchInferenceJobInput
impl CreateBatchInferenceJobInput
sourcepub fn solution_version_arn(&self) -> Option<&str>
pub fn solution_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the solution version that will be used to generate the batch inference recommendations.
sourcepub fn filter_arn(&self) -> Option<&str>
pub fn filter_arn(&self) -> Option<&str>
The ARN of the filter to apply to the batch inference job. For more information on using filters, see Filtering batch recommendations.
sourcepub fn num_results(&self) -> Option<i32>
pub fn num_results(&self) -> Option<i32>
The number of recommendations to retrieve.
sourcepub fn job_input(&self) -> Option<&BatchInferenceJobInput>
pub fn job_input(&self) -> Option<&BatchInferenceJobInput>
The Amazon S3 path that leads to the input file to base your recommendations on. The input material must be in JSON format.
sourcepub fn job_output(&self) -> Option<&BatchInferenceJobOutput>
pub fn job_output(&self) -> Option<&BatchInferenceJobOutput>
The path to the Amazon S3 bucket where the job's output will be stored.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The ARN of the Amazon Identity and Access Management role that has permissions to read and write to your input and output Amazon S3 buckets respectively.
sourcepub fn batch_inference_job_config(&self) -> Option<&BatchInferenceJobConfig>
pub fn batch_inference_job_config(&self) -> Option<&BatchInferenceJobConfig>
The configuration details of a batch inference job.
A list of tags to apply to the batch inference job.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateBatchInferenceJobInput
impl CreateBatchInferenceJobInput
sourcepub fn builder() -> CreateBatchInferenceJobInputBuilder
pub fn builder() -> CreateBatchInferenceJobInputBuilder
Creates a new builder-style object to manufacture CreateBatchInferenceJobInput
.
Trait Implementations§
source§impl Clone for CreateBatchInferenceJobInput
impl Clone for CreateBatchInferenceJobInput
source§fn clone(&self) -> CreateBatchInferenceJobInput
fn clone(&self) -> CreateBatchInferenceJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateBatchInferenceJobInput
impl Debug for CreateBatchInferenceJobInput
source§impl PartialEq for CreateBatchInferenceJobInput
impl PartialEq for CreateBatchInferenceJobInput
source§fn eq(&self, other: &CreateBatchInferenceJobInput) -> bool
fn eq(&self, other: &CreateBatchInferenceJobInput) -> bool
self
and other
values to be equal, and is used
by ==
.