Struct aws_sdk_athena::input::ListTableMetadataInput
source · #[non_exhaustive]pub struct ListTableMetadataInput { /* private fields */ }
Implementations§
source§impl ListTableMetadataInput
impl ListTableMetadataInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTableMetadata, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListTableMetadata, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListTableMetadata
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListTableMetadataInput
.
source§impl ListTableMetadataInput
impl ListTableMetadataInput
sourcepub fn catalog_name(&self) -> Option<&str>
pub fn catalog_name(&self) -> Option<&str>
The name of the data catalog for which table metadata should be returned.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the database for which table metadata should be returned.
sourcepub fn expression(&self) -> Option<&str>
pub fn expression(&self) -> Option<&str>
A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables are listed.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Specifies the maximum number of results to return.
Trait Implementations§
source§impl Clone for ListTableMetadataInput
impl Clone for ListTableMetadataInput
source§fn clone(&self) -> ListTableMetadataInput
fn clone(&self) -> ListTableMetadataInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListTableMetadataInput
impl Debug for ListTableMetadataInput
source§impl PartialEq<ListTableMetadataInput> for ListTableMetadataInput
impl PartialEq<ListTableMetadataInput> for ListTableMetadataInput
source§fn eq(&self, other: &ListTableMetadataInput) -> bool
fn eq(&self, other: &ListTableMetadataInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.