Struct aws_sdk_athena::model::TableMetadata
source · #[non_exhaustive]pub struct TableMetadata { /* private fields */ }
Expand description
Contains metadata for a table.
Implementations§
source§impl TableMetadata
impl TableMetadata
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The time that the table was created.
sourcepub fn last_access_time(&self) -> Option<&DateTime>
pub fn last_access_time(&self) -> Option<&DateTime>
The last time the table was accessed.
sourcepub fn table_type(&self) -> Option<&str>
pub fn table_type(&self) -> Option<&str>
The type of table. In Athena, only EXTERNAL_TABLE
is supported.
sourcepub fn partition_keys(&self) -> Option<&[Column]>
pub fn partition_keys(&self) -> Option<&[Column]>
A list of the partition keys in the table.
source§impl TableMetadata
impl TableMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TableMetadata
.
Trait Implementations§
source§impl Clone for TableMetadata
impl Clone for TableMetadata
source§fn clone(&self) -> TableMetadata
fn clone(&self) -> TableMetadata
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 TableMetadata
impl Debug for TableMetadata
source§impl PartialEq<TableMetadata> for TableMetadata
impl PartialEq<TableMetadata> for TableMetadata
source§fn eq(&self, other: &TableMetadata) -> bool
fn eq(&self, other: &TableMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.