Struct aws_sdk_dynamodb::model::restore_summary::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for RestoreSummary
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn source_backup_arn(self, input: impl Into<String>) -> Self
pub fn source_backup_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the backup from which the table was restored.
sourcepub fn set_source_backup_arn(self, input: Option<String>) -> Self
pub fn set_source_backup_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the backup from which the table was restored.
sourcepub fn source_table_arn(self, input: impl Into<String>) -> Self
pub fn source_table_arn(self, input: impl Into<String>) -> Self
The ARN of the source table of the backup that is being restored.
sourcepub fn set_source_table_arn(self, input: Option<String>) -> Self
pub fn set_source_table_arn(self, input: Option<String>) -> Self
The ARN of the source table of the backup that is being restored.
sourcepub fn restore_date_time(self, input: DateTime) -> Self
pub fn restore_date_time(self, input: DateTime) -> Self
Point in time or source backup time.
sourcepub fn set_restore_date_time(self, input: Option<DateTime>) -> Self
pub fn set_restore_date_time(self, input: Option<DateTime>) -> Self
Point in time or source backup time.
sourcepub fn restore_in_progress(self, input: bool) -> Self
pub fn restore_in_progress(self, input: bool) -> Self
Indicates if a restore is in progress or not.
sourcepub fn set_restore_in_progress(self, input: Option<bool>) -> Self
pub fn set_restore_in_progress(self, input: Option<bool>) -> Self
Indicates if a restore is in progress or not.
sourcepub fn build(self) -> RestoreSummary
pub fn build(self) -> RestoreSummary
Consumes the builder and constructs a RestoreSummary
.