pub struct Builder { /* private fields */ }
Expand description
A builder for DatabaseTableOutputOptions
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn temp_directory(self, input: S3Location) -> Self
pub fn temp_directory(self, input: S3Location) -> Self
Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.
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 and object key) where DataBrew can store intermediate results.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
A prefix for the name of a table DataBrew will create in the database.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
A prefix for the name of a table DataBrew will create in the database.
sourcepub fn build(self) -> DatabaseTableOutputOptions
pub fn build(self) -> DatabaseTableOutputOptions
Consumes the builder and constructs a DatabaseTableOutputOptions
.