Struct aws_sdk_databrew::model::DataCatalogOutput
source · [−]#[non_exhaustive]pub struct DataCatalogOutput { /* private fields */ }
Expand description
Represents options that specify how and where in the Glue Data Catalog DataBrew writes the output generated by recipe jobs.
Implementations
sourceimpl DataCatalogOutput
impl DataCatalogOutput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of a database in the Data Catalog.
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of a table in the Data Catalog.
sourcepub fn s3_options(&self) -> Option<&S3TableOutputOptions>
pub fn s3_options(&self) -> Option<&S3TableOutputOptions>
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
sourcepub fn database_options(&self) -> Option<&DatabaseTableOutputOptions>
pub fn database_options(&self) -> Option<&DatabaseTableOutputOptions>
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
sourceimpl DataCatalogOutput
impl DataCatalogOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DataCatalogOutput
.
Trait Implementations
sourceimpl Clone for DataCatalogOutput
impl Clone for DataCatalogOutput
sourcefn clone(&self) -> DataCatalogOutput
fn clone(&self) -> DataCatalogOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DataCatalogOutput
impl Debug for DataCatalogOutput
sourceimpl PartialEq<DataCatalogOutput> for DataCatalogOutput
impl PartialEq<DataCatalogOutput> for DataCatalogOutput
sourcefn eq(&self, other: &DataCatalogOutput) -> bool
fn eq(&self, other: &DataCatalogOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DataCatalogOutput) -> bool
fn ne(&self, other: &DataCatalogOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DataCatalogOutput
Auto Trait Implementations
impl RefUnwindSafe for DataCatalogOutput
impl Send for DataCatalogOutput
impl Sync for DataCatalogOutput
impl Unpin for DataCatalogOutput
impl UnwindSafe for DataCatalogOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more