Struct aws_sdk_personalize::types::BatchInferenceJobInput
source · #[non_exhaustive]pub struct BatchInferenceJobInput {
pub s3_data_source: Option<S3DataConfig>,
}
Expand description
The input configuration of a batch inference job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_data_source: Option<S3DataConfig>
The URI of the Amazon S3 location that contains your input data. The Amazon S3 bucket must be in the same region as the API endpoint you are calling.
Implementations§
source§impl BatchInferenceJobInput
impl BatchInferenceJobInput
sourcepub fn s3_data_source(&self) -> Option<&S3DataConfig>
pub fn s3_data_source(&self) -> Option<&S3DataConfig>
The URI of the Amazon S3 location that contains your input data. The Amazon S3 bucket must be in the same region as the API endpoint you are calling.
source§impl BatchInferenceJobInput
impl BatchInferenceJobInput
sourcepub fn builder() -> BatchInferenceJobInputBuilder
pub fn builder() -> BatchInferenceJobInputBuilder
Creates a new builder-style object to manufacture BatchInferenceJobInput
.
Trait Implementations§
source§impl Clone for BatchInferenceJobInput
impl Clone for BatchInferenceJobInput
source§fn clone(&self) -> BatchInferenceJobInput
fn clone(&self) -> BatchInferenceJobInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BatchInferenceJobInput
impl Debug for BatchInferenceJobInput
source§impl PartialEq for BatchInferenceJobInput
impl PartialEq for BatchInferenceJobInput
source§fn eq(&self, other: &BatchInferenceJobInput) -> bool
fn eq(&self, other: &BatchInferenceJobInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchInferenceJobInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchInferenceJobInput
impl Send for BatchInferenceJobInput
impl Sync for BatchInferenceJobInput
impl Unpin for BatchInferenceJobInput
impl UnwindSafe for BatchInferenceJobInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.