[][src]Struct rusoto_dynamodb::GlobalTableDescription

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>>,
}

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

impl PartialEq<GlobalTableDescription> for GlobalTableDescription[src]

impl Default for GlobalTableDescription[src]

impl Clone for GlobalTableDescription[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for GlobalTableDescription[src]

impl<'de> Deserialize<'de> for GlobalTableDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T