#[non_exhaustive]pub struct AdapterVersionDatasetConfigBuilder { /* private fields */ }
Expand description
A builder for AdapterVersionDatasetConfig
.
Implementations§
source§impl AdapterVersionDatasetConfigBuilder
impl AdapterVersionDatasetConfigBuilder
sourcepub fn manifest_s3_object(self, input: S3Object) -> Self
pub fn manifest_s3_object(self, input: S3Object) -> Self
The S3 bucket name and file name that identifies the document.
The AWS Region for the S3 bucket that contains the document must match the Region that you use for Amazon Textract operations.
For Amazon Textract to process a file in an S3 bucket, the user must have permission to access the S3 bucket and file.
sourcepub fn set_manifest_s3_object(self, input: Option<S3Object>) -> Self
pub fn set_manifest_s3_object(self, input: Option<S3Object>) -> Self
The S3 bucket name and file name that identifies the document.
The AWS Region for the S3 bucket that contains the document must match the Region that you use for Amazon Textract operations.
For Amazon Textract to process a file in an S3 bucket, the user must have permission to access the S3 bucket and file.
sourcepub fn get_manifest_s3_object(&self) -> &Option<S3Object>
pub fn get_manifest_s3_object(&self) -> &Option<S3Object>
The S3 bucket name and file name that identifies the document.
The AWS Region for the S3 bucket that contains the document must match the Region that you use for Amazon Textract operations.
For Amazon Textract to process a file in an S3 bucket, the user must have permission to access the S3 bucket and file.
sourcepub fn build(self) -> AdapterVersionDatasetConfig
pub fn build(self) -> AdapterVersionDatasetConfig
Consumes the builder and constructs a AdapterVersionDatasetConfig
.
Trait Implementations§
source§impl Clone for AdapterVersionDatasetConfigBuilder
impl Clone for AdapterVersionDatasetConfigBuilder
source§fn clone(&self) -> AdapterVersionDatasetConfigBuilder
fn clone(&self) -> AdapterVersionDatasetConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AdapterVersionDatasetConfigBuilder
impl Default for AdapterVersionDatasetConfigBuilder
source§fn default() -> AdapterVersionDatasetConfigBuilder
fn default() -> AdapterVersionDatasetConfigBuilder
source§impl PartialEq for AdapterVersionDatasetConfigBuilder
impl PartialEq for AdapterVersionDatasetConfigBuilder
source§fn eq(&self, other: &AdapterVersionDatasetConfigBuilder) -> bool
fn eq(&self, other: &AdapterVersionDatasetConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AdapterVersionDatasetConfigBuilder
Auto Trait Implementations§
impl Freeze for AdapterVersionDatasetConfigBuilder
impl RefUnwindSafe for AdapterVersionDatasetConfigBuilder
impl Send for AdapterVersionDatasetConfigBuilder
impl Sync for AdapterVersionDatasetConfigBuilder
impl Unpin for AdapterVersionDatasetConfigBuilder
impl UnwindSafe for AdapterVersionDatasetConfigBuilder
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
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>
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>
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 more