[][src]Struct rusoto_dynamodb::SourceTableDetails

pub struct SourceTableDetails {
    pub billing_mode: Option<String>,
    pub item_count: Option<i64>,
    pub key_schema: Vec<KeySchemaElement>,
    pub provisioned_throughput: ProvisionedThroughput,
    pub table_arn: Option<String>,
    pub table_creation_date_time: f64,
    pub table_id: String,
    pub table_name: String,
    pub table_size_bytes: Option<i64>,
}

Contains the details of the table when the backup was created.

Fields

billing_mode: Option<String>

Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later.

  • PROVISIONED - Sets the read/write capacity mode to PROVISIONED. We recommend using PROVISIONED for predictable workloads.

  • PAYPERREQUEST - Sets the read/write capacity mode to PAYPERREQUEST. We recommend using PAYPERREQUEST for unpredictable workloads.

item_count: Option<i64>

Number of items in the table. Note that this is an approximate value.

key_schema: Vec<KeySchemaElement>

Schema of the table.

provisioned_throughput: ProvisionedThroughput

Read IOPs and Write IOPS on the table when the backup was created.

table_arn: Option<String>

ARN of the table for which backup was created.

table_creation_date_time: f64

Time when the source table was created.

table_id: String

Unique identifier for the table for which the backup was created.

table_name: String

The name of the table for which the backup was created.

table_size_bytes: Option<i64>

Size of the table in bytes. Note that this is an approximate value.

Trait Implementations

impl Clone for SourceTableDetails[src]

impl Debug for SourceTableDetails[src]

impl Default for SourceTableDetails[src]

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

impl PartialEq<SourceTableDetails> for SourceTableDetails[src]

impl StructuralPartialEq for SourceTableDetails[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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

type Owned = T

The resulting type after obtaining ownership.

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.