#[non_exhaustive]pub struct RestoreTableFromBackupInput { /* private fields */ }
Implementations
sourceimpl RestoreTableFromBackupInput
impl RestoreTableFromBackupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RestoreTableFromBackup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RestoreTableFromBackup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RestoreTableFromBackup
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RestoreTableFromBackupInput
.
sourceimpl RestoreTableFromBackupInput
impl RestoreTableFromBackupInput
sourcepub fn target_table_name(&self) -> Option<&str>
pub fn target_table_name(&self) -> Option<&str>
The name of the new table to which the backup must be restored.
sourcepub fn backup_arn(&self) -> Option<&str>
pub fn backup_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) associated with the backup.
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 RestoreTableFromBackupInput
impl Clone for RestoreTableFromBackupInput
sourcefn clone(&self) -> RestoreTableFromBackupInput
fn clone(&self) -> RestoreTableFromBackupInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more