[][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

The creation time of the global table.

The unique identifier of the global table.

The global table name.

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.

The regions where the global table has replicas.

Trait Implementations

impl Clone for GlobalTableDescription
[src]

Performs copy-assignment from source. Read more

impl Default for GlobalTableDescription
[src]

impl PartialEq<GlobalTableDescription> for GlobalTableDescription
[src]

impl Debug for GlobalTableDescription
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut 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 for T

Should always be Self

impl<T> Erased for T