#[non_exhaustive]pub struct DeleteDataCatalogOutputBuilder { /* private fields */ }Expand description
A builder for DeleteDataCatalogOutput.
Implementations§
Source§impl DeleteDataCatalogOutputBuilder
impl DeleteDataCatalogOutputBuilder
Sourcepub fn data_catalog(self, input: DataCatalog) -> Self
pub fn data_catalog(self, input: DataCatalog) -> Self
Contains information about a data catalog in an Amazon Web Services account.
In the Athena console, data catalogs are listed as "data sources" on the Data sources page under the Data source name column.
Sourcepub fn set_data_catalog(self, input: Option<DataCatalog>) -> Self
pub fn set_data_catalog(self, input: Option<DataCatalog>) -> Self
Contains information about a data catalog in an Amazon Web Services account.
In the Athena console, data catalogs are listed as "data sources" on the Data sources page under the Data source name column.
Sourcepub fn get_data_catalog(&self) -> &Option<DataCatalog>
pub fn get_data_catalog(&self) -> &Option<DataCatalog>
Contains information about a data catalog in an Amazon Web Services account.
In the Athena console, data catalogs are listed as "data sources" on the Data sources page under the Data source name column.
Sourcepub fn build(self) -> DeleteDataCatalogOutput
pub fn build(self) -> DeleteDataCatalogOutput
Consumes the builder and constructs a DeleteDataCatalogOutput.
Trait Implementations§
Source§impl Clone for DeleteDataCatalogOutputBuilder
impl Clone for DeleteDataCatalogOutputBuilder
Source§fn clone(&self) -> DeleteDataCatalogOutputBuilder
fn clone(&self) -> DeleteDataCatalogOutputBuilder
Returns a duplicate 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 DeleteDataCatalogOutputBuilder
impl Default for DeleteDataCatalogOutputBuilder
Source§fn default() -> DeleteDataCatalogOutputBuilder
fn default() -> DeleteDataCatalogOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteDataCatalogOutputBuilder
impl PartialEq for DeleteDataCatalogOutputBuilder
Source§fn eq(&self, other: &DeleteDataCatalogOutputBuilder) -> bool
fn eq(&self, other: &DeleteDataCatalogOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteDataCatalogOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteDataCatalogOutputBuilder
impl RefUnwindSafe for DeleteDataCatalogOutputBuilder
impl Send for DeleteDataCatalogOutputBuilder
impl Sync for DeleteDataCatalogOutputBuilder
impl Unpin for DeleteDataCatalogOutputBuilder
impl UnsafeUnpin for DeleteDataCatalogOutputBuilder
impl UnwindSafe for DeleteDataCatalogOutputBuilder
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> 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>
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.