#[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
sourceimpl CreateBatchInferenceJobInput
impl CreateBatchInferenceJobInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBatchInferenceJob, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBatchInferenceJob, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateBatchInferenceJob
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateBatchInferenceJobInput
sourceimpl 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.
Trait Implementations
sourceimpl Clone for CreateBatchInferenceJobInput
impl Clone for CreateBatchInferenceJobInput
sourcefn clone(&self) -> CreateBatchInferenceJobInput
fn clone(&self) -> CreateBatchInferenceJobInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateBatchInferenceJobInput
impl Debug for CreateBatchInferenceJobInput
sourceimpl PartialEq<CreateBatchInferenceJobInput> for CreateBatchInferenceJobInput
impl PartialEq<CreateBatchInferenceJobInput> for CreateBatchInferenceJobInput
sourcefn eq(&self, other: &CreateBatchInferenceJobInput) -> bool
fn eq(&self, other: &CreateBatchInferenceJobInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateBatchInferenceJobInput) -> bool
fn ne(&self, other: &CreateBatchInferenceJobInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateBatchInferenceJobInput
Auto Trait Implementations
impl RefUnwindSafe for CreateBatchInferenceJobInput
impl Send for CreateBatchInferenceJobInput
impl Sync for CreateBatchInferenceJobInput
impl Unpin for CreateBatchInferenceJobInput
impl UnwindSafe for CreateBatchInferenceJobInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more