pub struct TableAutoScalingDescription {
pub replicas: Option<Vec<ReplicaAutoScalingDescription>>,
pub table_name: Option<String>,
pub table_status: Option<String>,
}
Expand description
Represents the auto scaling configuration for a global table.
Fields§
§replicas: Option<Vec<ReplicaAutoScalingDescription>>
Represents replicas of the global table.
table_name: Option<String>
The name of the table.
table_status: Option<String>
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.
Trait Implementations§
Source§impl Clone for TableAutoScalingDescription
impl Clone for TableAutoScalingDescription
Source§fn clone(&self) -> TableAutoScalingDescription
fn clone(&self) -> TableAutoScalingDescription
Returns a duplicate 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 TableAutoScalingDescription
impl Debug for TableAutoScalingDescription
Source§impl Default for TableAutoScalingDescription
impl Default for TableAutoScalingDescription
Source§fn default() -> TableAutoScalingDescription
fn default() -> TableAutoScalingDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableAutoScalingDescription
impl<'de> Deserialize<'de> for TableAutoScalingDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TableAutoScalingDescription
Auto Trait Implementations§
impl Freeze for TableAutoScalingDescription
impl RefUnwindSafe for TableAutoScalingDescription
impl Send for TableAutoScalingDescription
impl Sync for TableAutoScalingDescription
impl Unpin for TableAutoScalingDescription
impl UnwindSafe for TableAutoScalingDescription
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more