Struct aws_sdk_databrew::model::DataCatalogOutput
source · [−]#[non_exhaustive]pub struct DataCatalogOutput {
pub catalog_id: Option<String>,
pub database_name: Option<String>,
pub table_name: Option<String>,
pub s3_options: Option<S3TableOutputOptions>,
pub database_options: Option<DatabaseTableOutputOptions>,
pub overwrite: bool,
}
Expand description
Represents options that specify how and where in the Glue Data Catalog DataBrew writes the output generated by recipe jobs.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.catalog_id: Option<String>
The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.
database_name: Option<String>
The name of a database in the Data Catalog.
table_name: Option<String>
The name of a table in the Data Catalog.
s3_options: Option<S3TableOutputOptions>
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
database_options: Option<DatabaseTableOutputOptions>
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
overwrite: bool
A value that, if true, means that any data in the location specified for output is overwritten with new output. Not supported with DatabaseOptions.
Implementations
The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.
The name of a database in the Data Catalog.
The name of a table in the Data Catalog.
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
Creates a new builder-style object to manufacture DataCatalogOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more