#[non_exhaustive]pub struct TableAutoScalingDescription { /* private fields */ }Expand description
Represents the auto scaling configuration for a global table.
Implementations§
source§impl TableAutoScalingDescription
impl TableAutoScalingDescription
sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the table.
sourcepub fn table_status(&self) -> Option<&TableStatus>
pub fn table_status(&self) -> Option<&TableStatus>
The current state of the table:
-
CREATING- The table is being created. -
UPDATING- The table is being updated. -
DELETING- The table is being deleted. -
ACTIVE- The table is ready for use.
sourcepub fn replicas(&self) -> Option<&[ReplicaAutoScalingDescription]>
pub fn replicas(&self) -> Option<&[ReplicaAutoScalingDescription]>
Represents replicas of the global table.
source§impl TableAutoScalingDescription
impl TableAutoScalingDescription
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TableAutoScalingDescription.
Trait Implementations§
source§impl Clone for TableAutoScalingDescription
impl Clone for TableAutoScalingDescription
source§fn clone(&self) -> TableAutoScalingDescription
fn clone(&self) -> TableAutoScalingDescription
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 more