Struct aws_sdk_textract::types::builders::OutputConfigBuilder
source · #[non_exhaustive]pub struct OutputConfigBuilder { /* private fields */ }
Expand description
A builder for OutputConfig
.
Implementations§
source§impl OutputConfigBuilder
impl OutputConfigBuilder
sourcepub fn s3_bucket(self, input: impl Into<String>) -> Self
pub fn s3_bucket(self, input: impl Into<String>) -> Self
The name of the bucket your output will go to.
This field is required.sourcepub fn set_s3_bucket(self, input: Option<String>) -> Self
pub fn set_s3_bucket(self, input: Option<String>) -> Self
The name of the bucket your output will go to.
sourcepub fn get_s3_bucket(&self) -> &Option<String>
pub fn get_s3_bucket(&self) -> &Option<String>
The name of the bucket your output will go to.
sourcepub fn s3_prefix(self, input: impl Into<String>) -> Self
pub fn s3_prefix(self, input: impl Into<String>) -> Self
The prefix of the object key that the output will be saved to. When not enabled, the prefix will be “textract_output".
sourcepub fn set_s3_prefix(self, input: Option<String>) -> Self
pub fn set_s3_prefix(self, input: Option<String>) -> Self
The prefix of the object key that the output will be saved to. When not enabled, the prefix will be “textract_output".
sourcepub fn get_s3_prefix(&self) -> &Option<String>
pub fn get_s3_prefix(&self) -> &Option<String>
The prefix of the object key that the output will be saved to. When not enabled, the prefix will be “textract_output".
sourcepub fn build(self) -> Result<OutputConfig, BuildError>
pub fn build(self) -> Result<OutputConfig, BuildError>
Consumes the builder and constructs a OutputConfig
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for OutputConfigBuilder
impl Clone for OutputConfigBuilder
source§fn clone(&self) -> OutputConfigBuilder
fn clone(&self) -> OutputConfigBuilder
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 OutputConfigBuilder
impl Debug for OutputConfigBuilder
source§impl Default for OutputConfigBuilder
impl Default for OutputConfigBuilder
source§fn default() -> OutputConfigBuilder
fn default() -> OutputConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for OutputConfigBuilder
impl PartialEq for OutputConfigBuilder
source§fn eq(&self, other: &OutputConfigBuilder) -> bool
fn eq(&self, other: &OutputConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OutputConfigBuilder
Auto Trait Implementations§
impl RefUnwindSafe for OutputConfigBuilder
impl Send for OutputConfigBuilder
impl Sync for OutputConfigBuilder
impl Unpin for OutputConfigBuilder
impl UnwindSafe for OutputConfigBuilder
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.