#[non_exhaustive]pub struct RestoreTableToPointInTimeInput { /* private fields */ }
Implementations
sourceimpl RestoreTableToPointInTimeInput
impl RestoreTableToPointInTimeInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RestoreTableToPointInTime, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RestoreTableToPointInTime, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RestoreTableToPointInTime
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RestoreTableToPointInTimeInput
.
sourceimpl RestoreTableToPointInTimeInput
impl RestoreTableToPointInTimeInput
sourcepub fn source_table_arn(&self) -> Option<&str>
pub fn source_table_arn(&self) -> Option<&str>
The DynamoDB table that will be restored. This value is an Amazon Resource Name (ARN).
sourcepub fn source_table_name(&self) -> Option<&str>
pub fn source_table_name(&self) -> Option<&str>
Name of the source table that is being restored.
sourcepub fn target_table_name(&self) -> Option<&str>
pub fn target_table_name(&self) -> Option<&str>
The name of the new table to which it must be restored to.
sourcepub fn use_latest_restorable_time(&self) -> Option<bool>
pub fn use_latest_restorable_time(&self) -> Option<bool>
Restore the table to the latest possible time. LatestRestorableDateTime
is typically 5 minutes before the current time.
sourcepub fn restore_date_time(&self) -> Option<&DateTime>
pub fn restore_date_time(&self) -> Option<&DateTime>
Time in the past to restore the table to.
sourcepub fn billing_mode_override(&self) -> Option<&BillingMode>
pub fn billing_mode_override(&self) -> Option<&BillingMode>
The billing mode of the restored table.
sourcepub fn global_secondary_index_override(&self) -> Option<&[GlobalSecondaryIndex]>
pub fn global_secondary_index_override(&self) -> Option<&[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.
sourcepub fn local_secondary_index_override(&self) -> Option<&[LocalSecondaryIndex]>
pub fn local_secondary_index_override(&self) -> Option<&[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.
sourcepub fn provisioned_throughput_override(&self) -> Option<&ProvisionedThroughput>
pub fn provisioned_throughput_override(&self) -> Option<&ProvisionedThroughput>
Provisioned throughput settings for the restored table.
sourcepub fn sse_specification_override(&self) -> Option<&SseSpecification>
pub fn sse_specification_override(&self) -> Option<&SseSpecification>
The new server-side encryption settings for the restored table.
Trait Implementations
sourceimpl Clone for RestoreTableToPointInTimeInput
impl Clone for RestoreTableToPointInTimeInput
sourcefn clone(&self) -> RestoreTableToPointInTimeInput
fn clone(&self) -> RestoreTableToPointInTimeInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more