[][src]Struct rusoto_dynamodb::RestoreTableToPointInTimeInput

pub struct RestoreTableToPointInTimeInput {
    pub billing_mode_override: Option<String>,
    pub global_secondary_index_override: Option<Vec<GlobalSecondaryIndex>>,
    pub local_secondary_index_override: Option<Vec<LocalSecondaryIndex>>,
    pub provisioned_throughput_override: Option<ProvisionedThroughput>,
    pub restore_date_time: Option<f64>,
    pub sse_specification_override: Option<SSESpecification>,
    pub source_table_arn: Option<String>,
    pub source_table_name: Option<String>,
    pub target_table_name: String,
    pub use_latest_restorable_time: Option<bool>,
}

Fields

billing_mode_override: Option<String>

The billing mode of the restored table.

global_secondary_index_override: Option<Vec<GlobalSecondaryIndex>>

List of global secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.

local_secondary_index_override: Option<Vec<LocalSecondaryIndex>>

List of local secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.

provisioned_throughput_override: Option<ProvisionedThroughput>

Provisioned throughput settings for the restored table.

restore_date_time: Option<f64>

Time in the past to restore the table to.

sse_specification_override: Option<SSESpecification>

The new server-side encryption settings for the restored table.

source_table_arn: Option<String>

The DynamoDB table that will be restored. This value is an Amazon Resource Name (ARN).

source_table_name: Option<String>

Name of the source table that is being restored.

target_table_name: String

The name of the new table to which it must be restored to.

use_latest_restorable_time: Option<bool>

Restore the table to the latest possible time. LatestRestorableDateTime is typically 5 minutes before the current time.

Trait Implementations

impl Clone for RestoreTableToPointInTimeInput[src]

impl Debug for RestoreTableToPointInTimeInput[src]

impl Default for RestoreTableToPointInTimeInput[src]

impl PartialEq<RestoreTableToPointInTimeInput> for RestoreTableToPointInTimeInput[src]

impl Serialize for RestoreTableToPointInTimeInput[src]

impl StructuralPartialEq for RestoreTableToPointInTimeInput[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> From<T> for T[src]

impl<T> Instrument 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> 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.