#[non_exhaustive]pub struct DestinationResultBuilder { /* private fields */ }Expand description
A builder for DestinationResult.
Implementations§
Source§impl DestinationResultBuilder
impl DestinationResultBuilder
Sourcepub fn table_bucket_type(self, input: S3TablesBucketType) -> Self
pub fn table_bucket_type(self, input: S3TablesBucketType) -> Self
The type of the table bucket where the metadata configuration is stored. The aws value indicates an Amazon Web Services managed table bucket, and the customer value indicates a customer-managed table bucket. V2 metadata configurations are stored in Amazon Web Services managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
Sourcepub fn set_table_bucket_type(self, input: Option<S3TablesBucketType>) -> Self
pub fn set_table_bucket_type(self, input: Option<S3TablesBucketType>) -> Self
The type of the table bucket where the metadata configuration is stored. The aws value indicates an Amazon Web Services managed table bucket, and the customer value indicates a customer-managed table bucket. V2 metadata configurations are stored in Amazon Web Services managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
Sourcepub fn get_table_bucket_type(&self) -> &Option<S3TablesBucketType>
pub fn get_table_bucket_type(&self) -> &Option<S3TablesBucketType>
The type of the table bucket where the metadata configuration is stored. The aws value indicates an Amazon Web Services managed table bucket, and the customer value indicates a customer-managed table bucket. V2 metadata configurations are stored in Amazon Web Services managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
Sourcepub fn table_bucket_arn(self, input: impl Into<String>) -> Self
pub fn table_bucket_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
Sourcepub fn set_table_bucket_arn(self, input: Option<String>) -> Self
pub fn set_table_bucket_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
Sourcepub fn get_table_bucket_arn(&self) -> &Option<String>
pub fn get_table_bucket_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
Sourcepub fn table_namespace(self, input: impl Into<String>) -> Self
pub fn table_namespace(self, input: impl Into<String>) -> Self
The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
Sourcepub fn set_table_namespace(self, input: Option<String>) -> Self
pub fn set_table_namespace(self, input: Option<String>) -> Self
The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
Sourcepub fn get_table_namespace(&self) -> &Option<String>
pub fn get_table_namespace(&self) -> &Option<String>
The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
Sourcepub fn build(self) -> DestinationResult
pub fn build(self) -> DestinationResult
Consumes the builder and constructs a DestinationResult.
Trait Implementations§
Source§impl Clone for DestinationResultBuilder
impl Clone for DestinationResultBuilder
Source§fn clone(&self) -> DestinationResultBuilder
fn clone(&self) -> DestinationResultBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DestinationResultBuilder
impl Debug for DestinationResultBuilder
Source§impl Default for DestinationResultBuilder
impl Default for DestinationResultBuilder
Source§fn default() -> DestinationResultBuilder
fn default() -> DestinationResultBuilder
Source§impl PartialEq for DestinationResultBuilder
impl PartialEq for DestinationResultBuilder
impl StructuralPartialEq for DestinationResultBuilder
Auto Trait Implementations§
impl Freeze for DestinationResultBuilder
impl RefUnwindSafe for DestinationResultBuilder
impl Send for DestinationResultBuilder
impl Sync for DestinationResultBuilder
impl Unpin for DestinationResultBuilder
impl UnwindSafe for DestinationResultBuilder
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§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