#[non_exhaustive]pub struct MetadataTableConfigurationResultBuilder { /* private fields */ }
Expand description
A builder for MetadataTableConfigurationResult
.
Implementations§
source§impl MetadataTableConfigurationResultBuilder
impl MetadataTableConfigurationResultBuilder
sourcepub fn s3_tables_destination_result(
self,
input: S3TablesDestinationResult,
) -> Self
pub fn s3_tables_destination_result( self, input: S3TablesDestinationResult, ) -> Self
The destination information for the metadata table configuration. The destination table bucket must be in the same Region and Amazon Web Services account as the general purpose bucket. The specified metadata table name must be unique within the aws_s3_metadata
namespace in the destination table bucket.
sourcepub fn set_s3_tables_destination_result(
self,
input: Option<S3TablesDestinationResult>,
) -> Self
pub fn set_s3_tables_destination_result( self, input: Option<S3TablesDestinationResult>, ) -> Self
The destination information for the metadata table configuration. The destination table bucket must be in the same Region and Amazon Web Services account as the general purpose bucket. The specified metadata table name must be unique within the aws_s3_metadata
namespace in the destination table bucket.
sourcepub fn get_s3_tables_destination_result(
&self,
) -> &Option<S3TablesDestinationResult>
pub fn get_s3_tables_destination_result( &self, ) -> &Option<S3TablesDestinationResult>
The destination information for the metadata table configuration. The destination table bucket must be in the same Region and Amazon Web Services account as the general purpose bucket. The specified metadata table name must be unique within the aws_s3_metadata
namespace in the destination table bucket.
sourcepub fn build(self) -> MetadataTableConfigurationResult
pub fn build(self) -> MetadataTableConfigurationResult
Consumes the builder and constructs a MetadataTableConfigurationResult
.
Trait Implementations§
source§impl Clone for MetadataTableConfigurationResultBuilder
impl Clone for MetadataTableConfigurationResultBuilder
source§fn clone(&self) -> MetadataTableConfigurationResultBuilder
fn clone(&self) -> MetadataTableConfigurationResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for MetadataTableConfigurationResultBuilder
impl Default for MetadataTableConfigurationResultBuilder
source§fn default() -> MetadataTableConfigurationResultBuilder
fn default() -> MetadataTableConfigurationResultBuilder
source§impl PartialEq for MetadataTableConfigurationResultBuilder
impl PartialEq for MetadataTableConfigurationResultBuilder
source§fn eq(&self, other: &MetadataTableConfigurationResultBuilder) -> bool
fn eq(&self, other: &MetadataTableConfigurationResultBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MetadataTableConfigurationResultBuilder
Auto Trait Implementations§
impl Freeze for MetadataTableConfigurationResultBuilder
impl RefUnwindSafe for MetadataTableConfigurationResultBuilder
impl Send for MetadataTableConfigurationResultBuilder
impl Sync for MetadataTableConfigurationResultBuilder
impl Unpin for MetadataTableConfigurationResultBuilder
impl UnwindSafe for MetadataTableConfigurationResultBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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