Struct rusoto_dynamodb::RestoreTableToPointInTimeInput[][src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.