#[non_exhaustive]pub struct BatchInferenceJobOutputBuilder { /* private fields */ }Expand description
A builder for BatchInferenceJobOutput.
Implementations§
source§impl BatchInferenceJobOutputBuilder
impl BatchInferenceJobOutputBuilder
sourcepub fn s3_data_destination(self, input: S3DataConfig) -> Self
pub fn s3_data_destination(self, input: S3DataConfig) -> Self
Information on the Amazon S3 bucket in which the batch inference job's output is stored.
This field is required.sourcepub fn set_s3_data_destination(self, input: Option<S3DataConfig>) -> Self
pub fn set_s3_data_destination(self, input: Option<S3DataConfig>) -> Self
Information on the Amazon S3 bucket in which the batch inference job's output is stored.
sourcepub fn get_s3_data_destination(&self) -> &Option<S3DataConfig>
pub fn get_s3_data_destination(&self) -> &Option<S3DataConfig>
Information on the Amazon S3 bucket in which the batch inference job's output is stored.
sourcepub fn build(self) -> BatchInferenceJobOutput
pub fn build(self) -> BatchInferenceJobOutput
Consumes the builder and constructs a BatchInferenceJobOutput.
Trait Implementations§
source§impl Clone for BatchInferenceJobOutputBuilder
impl Clone for BatchInferenceJobOutputBuilder
source§fn clone(&self) -> BatchInferenceJobOutputBuilder
fn clone(&self) -> BatchInferenceJobOutputBuilder
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 Default for BatchInferenceJobOutputBuilder
impl Default for BatchInferenceJobOutputBuilder
source§fn default() -> BatchInferenceJobOutputBuilder
fn default() -> BatchInferenceJobOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchInferenceJobOutputBuilder
impl PartialEq for BatchInferenceJobOutputBuilder
source§fn eq(&self, other: &BatchInferenceJobOutputBuilder) -> bool
fn eq(&self, other: &BatchInferenceJobOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchInferenceJobOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchInferenceJobOutputBuilder
impl RefUnwindSafe for BatchInferenceJobOutputBuilder
impl Send for BatchInferenceJobOutputBuilder
impl Sync for BatchInferenceJobOutputBuilder
impl Unpin for BatchInferenceJobOutputBuilder
impl UnwindSafe for BatchInferenceJobOutputBuilder
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.