Struct rusoto_dynamodb::GlobalTableDescription [] [src]

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 Default for GlobalTableDescription
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for GlobalTableDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GlobalTableDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations