Struct aws_sdk_glue::input::GetTablesInput
source · #[non_exhaustive]pub struct GetTablesInput { /* private fields */ }Implementations§
source§impl GetTablesInput
impl GetTablesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetTables, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetTables, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetTables>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetTablesInput.
source§impl GetTablesInput
impl GetTablesInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The database in the catalog whose tables to list. For Hive compatibility, this name is entirely lowercase.
sourcepub fn expression(&self) -> Option<&str>
pub fn expression(&self) -> Option<&str>
A regular expression pattern. If present, only those tables whose names match the pattern are returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, included if this is a continuation call.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of tables to return in a single response.
sourcepub fn transaction_id(&self) -> Option<&str>
pub fn transaction_id(&self) -> Option<&str>
The transaction ID at which to read the table contents.
sourcepub fn query_as_of_time(&self) -> Option<&DateTime>
pub fn query_as_of_time(&self) -> Option<&DateTime>
The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with TransactionId.
Trait Implementations§
source§impl Clone for GetTablesInput
impl Clone for GetTablesInput
source§fn clone(&self) -> GetTablesInput
fn clone(&self) -> GetTablesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetTablesInput
impl Debug for GetTablesInput
source§impl PartialEq<GetTablesInput> for GetTablesInput
impl PartialEq<GetTablesInput> for GetTablesInput
source§fn eq(&self, other: &GetTablesInput) -> bool
fn eq(&self, other: &GetTablesInput) -> bool
self and other values to be equal, and is used
by ==.