pub struct GlobalTableDescription {
pub creation_date_time: Option<f64>,
pub global_table_arn: Option<String>,
pub global_table_name: Option<String>,
pub global_table_status: Option<String>,
pub replication_group: Option<Vec<ReplicaDescription>>,
}
Expand description
Contains details about the global table.
Fields§
§creation_date_time: Option<f64>
The creation time of the global table.
global_table_arn: Option<String>
The unique identifier of the global table.
global_table_name: Option<String>
The global table name.
global_table_status: Option<String>
The current state of the global table:
-
CREATING
- The global table is being created. -
UPDATING
- The global table is being updated. -
DELETING
- The global table is being deleted. -
ACTIVE
- The global table is ready for use.
replication_group: Option<Vec<ReplicaDescription>>
The Regions where the global table has replicas.
Trait Implementations§
Source§impl Clone for GlobalTableDescription
impl Clone for GlobalTableDescription
Source§fn clone(&self) -> GlobalTableDescription
fn clone(&self) -> GlobalTableDescription
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 GlobalTableDescription
impl Debug for GlobalTableDescription
Source§impl Default for GlobalTableDescription
impl Default for GlobalTableDescription
Source§fn default() -> GlobalTableDescription
fn default() -> GlobalTableDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GlobalTableDescription
impl<'de> Deserialize<'de> for GlobalTableDescription
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
Source§impl PartialEq for GlobalTableDescription
impl PartialEq for GlobalTableDescription
impl StructuralPartialEq for GlobalTableDescription
Auto Trait Implementations§
impl Freeze for GlobalTableDescription
impl RefUnwindSafe for GlobalTableDescription
impl Send for GlobalTableDescription
impl Sync for GlobalTableDescription
impl Unpin for GlobalTableDescription
impl UnwindSafe for GlobalTableDescription
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