Struct aws_sdk_databrew::model::DatabaseInputDefinition [−][src]
#[non_exhaustive]pub struct DatabaseInputDefinition {
pub glue_connection_name: Option<String>,
pub database_table_name: Option<String>,
pub temp_directory: Option<S3Location>,
pub query_string: Option<String>,
}
Expand description
Connection information for dataset input files stored in a database.
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.glue_connection_name: Option<String>
The Glue Connection that stores the connection information for the target database.
database_table_name: Option<String>
The table within the target database.
temp_directory: Option<S3Location>
Represents an Amazon S3 location (bucket name and object key) where DataBrew can read input data, or write output from a job.
query_string: Option<String>
Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs.
Implementations
The Glue Connection that stores the connection information for the target database.
The table within the target database.
Represents an Amazon S3 location (bucket name and object key) where DataBrew can read input data, or write output from a job.
Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs.
Creates a new builder-style object to manufacture DatabaseInputDefinition
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 DatabaseInputDefinition
impl Send for DatabaseInputDefinition
impl Sync for DatabaseInputDefinition
impl Unpin for DatabaseInputDefinition
impl UnwindSafe for DatabaseInputDefinition
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