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 moresourceimpl 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
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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