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§
Source§impl Clone for RestoreTableToPointInTimeInput
impl Clone for RestoreTableToPointInTimeInput
Source§fn clone(&self) -> RestoreTableToPointInTimeInput
fn clone(&self) -> RestoreTableToPointInTimeInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for RestoreTableToPointInTimeInput
impl Default for RestoreTableToPointInTimeInput
Source§fn default() -> RestoreTableToPointInTimeInput
fn default() -> RestoreTableToPointInTimeInput
Source§impl PartialEq for RestoreTableToPointInTimeInput
impl PartialEq for RestoreTableToPointInTimeInput
Source§fn eq(&self, other: &RestoreTableToPointInTimeInput) -> bool
fn eq(&self, other: &RestoreTableToPointInTimeInput) -> bool
self
and other
values to be equal, and is used by ==
.