Struct aws_sdk_keyspaces::output::GetTableOutput
source · [−]#[non_exhaustive]pub struct GetTableOutput { /* private fields */ }
Implementations
sourceimpl GetTableOutput
impl GetTableOutput
sourcepub fn keyspace_name(&self) -> Option<&str>
pub fn keyspace_name(&self) -> Option<&str>
The name of the keyspace that the specified table is stored in.
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the specified table.
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the specified table.
sourcepub fn creation_timestamp(&self) -> Option<&DateTime>
pub fn creation_timestamp(&self) -> Option<&DateTime>
The creation timestamp of the specified table.
sourcepub fn status(&self) -> Option<&TableStatus>
pub fn status(&self) -> Option<&TableStatus>
The current status of the specified table.
sourcepub fn schema_definition(&self) -> Option<&SchemaDefinition>
pub fn schema_definition(&self) -> Option<&SchemaDefinition>
The schema definition of the specified table.
sourcepub fn capacity_specification(&self) -> Option<&CapacitySpecificationSummary>
pub fn capacity_specification(&self) -> Option<&CapacitySpecificationSummary>
The read/write throughput capacity mode for a table. The options are:
• throughputMode:PAY_PER_REQUEST
• throughputMode:PROVISIONED
sourcepub fn encryption_specification(&self) -> Option<&EncryptionSpecification>
pub fn encryption_specification(&self) -> Option<&EncryptionSpecification>
The encryption settings of the specified table.
sourcepub fn point_in_time_recovery(&self) -> Option<&PointInTimeRecoverySummary>
pub fn point_in_time_recovery(&self) -> Option<&PointInTimeRecoverySummary>
The point-in-time recovery status of the specified table.
sourcepub fn ttl(&self) -> Option<&TimeToLive>
pub fn ttl(&self) -> Option<&TimeToLive>
The custom Time to Live settings of the specified table.
sourcepub fn default_time_to_live(&self) -> Option<i32>
pub fn default_time_to_live(&self) -> Option<i32>
The default Time to Live settings of the specified table.
sourceimpl GetTableOutput
impl GetTableOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetTableOutput
.
Trait Implementations
sourceimpl Clone for GetTableOutput
impl Clone for GetTableOutput
sourcefn clone(&self) -> GetTableOutput
fn clone(&self) -> GetTableOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for GetTableOutput
impl Debug for GetTableOutput
sourceimpl PartialEq<GetTableOutput> for GetTableOutput
impl PartialEq<GetTableOutput> for GetTableOutput
sourcefn eq(&self, other: &GetTableOutput) -> bool
fn eq(&self, other: &GetTableOutput) -> bool
impl StructuralPartialEq for GetTableOutput
Auto Trait Implementations
impl RefUnwindSafe for GetTableOutput
impl Send for GetTableOutput
impl Sync for GetTableOutput
impl Unpin for GetTableOutput
impl UnwindSafe for GetTableOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more