Struct aws_sdk_databrew::model::database_input_definition::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DatabaseInputDefinition
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn glue_connection_name(self, input: impl Into<String>) -> Self
pub fn glue_connection_name(self, input: impl Into<String>) -> Self
The Glue Connection that stores the connection information for the target database.
sourcepub fn set_glue_connection_name(self, input: Option<String>) -> Self
pub fn set_glue_connection_name(self, input: Option<String>) -> Self
The Glue Connection that stores the connection information for the target database.
sourcepub fn database_table_name(self, input: impl Into<String>) -> Self
pub fn database_table_name(self, input: impl Into<String>) -> Self
The table within the target database.
sourcepub fn set_database_table_name(self, input: Option<String>) -> Self
pub fn set_database_table_name(self, input: Option<String>) -> Self
The table within the target database.
sourcepub fn temp_directory(self, input: S3Location) -> Self
pub fn temp_directory(self, input: S3Location) -> Self
Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.
sourcepub fn set_temp_directory(self, input: Option<S3Location>) -> Self
pub fn set_temp_directory(self, input: Option<S3Location>) -> Self
Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.
sourcepub fn query_string(self, input: impl Into<String>) -> Self
pub fn query_string(self, input: impl Into<String>) -> Self
Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs.
sourcepub fn set_query_string(self, input: Option<String>) -> Self
pub fn set_query_string(self, input: Option<String>) -> Self
Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs.
sourcepub fn build(self) -> DatabaseInputDefinition
pub fn build(self) -> DatabaseInputDefinition
Consumes the builder and constructs a DatabaseInputDefinition
.