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§
source§impl 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.
source§impl DataCatalogOutput
impl DataCatalogOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DataCatalogOutput
.
Trait Implementations§
source§impl Clone for DataCatalogOutput
impl Clone for DataCatalogOutput
source§fn clone(&self) -> DataCatalogOutput
fn clone(&self) -> DataCatalogOutput
Returns a copy 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 Debug for DataCatalogOutput
impl Debug for DataCatalogOutput
source§impl PartialEq<DataCatalogOutput> for DataCatalogOutput
impl PartialEq<DataCatalogOutput> for DataCatalogOutput
source§fn 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 ==
.