Struct aws_sdk_databrew::model::database_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DatabaseOutput
.
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_options(self, input: DatabaseTableOutputOptions) -> Self
pub fn database_options(self, input: DatabaseTableOutputOptions) -> Self
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
sourcepub fn set_database_options(
self,
input: Option<DatabaseTableOutputOptions>
) -> Self
pub fn set_database_options(
self,
input: Option<DatabaseTableOutputOptions>
) -> Self
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
sourcepub fn database_output_mode(self, input: DatabaseOutputMode) -> Self
pub fn database_output_mode(self, input: DatabaseOutputMode) -> Self
The output mode to write into the database. Currently supported option: NEW_TABLE.
sourcepub fn set_database_output_mode(self, input: Option<DatabaseOutputMode>) -> Self
pub fn set_database_output_mode(self, input: Option<DatabaseOutputMode>) -> Self
The output mode to write into the database. Currently supported option: NEW_TABLE.
sourcepub fn build(self) -> DatabaseOutput
pub fn build(self) -> DatabaseOutput
Consumes the builder and constructs a DatabaseOutput
.