Struct aws_sdk_athena::input::get_table_metadata_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for GetTableMetadataInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn catalog_name(self, input: impl Into<String>) -> Self
pub fn catalog_name(self, input: impl Into<String>) -> Self
The name of the data catalog that contains the database and table metadata to return.
sourcepub fn set_catalog_name(self, input: Option<String>) -> Self
pub fn set_catalog_name(self, input: Option<String>) -> Self
The name of the data catalog that contains the database and table metadata to return.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the database that contains the table metadata to return.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the database that contains the table metadata to return.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table for which metadata is returned.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the table for which metadata is returned.
sourcepub fn build(self) -> Result<GetTableMetadataInput, BuildError>
pub fn build(self) -> Result<GetTableMetadataInput, BuildError>
Consumes the builder and constructs a GetTableMetadataInput
.