pub struct Builder { /* private fields */ }
Expand description
A builder for PointInTimeRecoveryDescription
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn point_in_time_recovery_status(
self,
input: PointInTimeRecoveryStatus
) -> Self
pub fn point_in_time_recovery_status(
self,
input: PointInTimeRecoveryStatus
) -> Self
The current state of point in time recovery:
-
ENABLED
- Point in time recovery is enabled. -
DISABLED
- Point in time recovery is disabled.
sourcepub fn set_point_in_time_recovery_status(
self,
input: Option<PointInTimeRecoveryStatus>
) -> Self
pub fn set_point_in_time_recovery_status(
self,
input: Option<PointInTimeRecoveryStatus>
) -> Self
The current state of point in time recovery:
-
ENABLED
- Point in time recovery is enabled. -
DISABLED
- Point in time recovery is disabled.
sourcepub fn earliest_restorable_date_time(self, input: DateTime) -> Self
pub fn earliest_restorable_date_time(self, input: DateTime) -> Self
Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.
sourcepub fn set_earliest_restorable_date_time(self, input: Option<DateTime>) -> Self
pub fn set_earliest_restorable_date_time(self, input: Option<DateTime>) -> Self
Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.
sourcepub fn latest_restorable_date_time(self, input: DateTime) -> Self
pub fn latest_restorable_date_time(self, input: DateTime) -> Self
LatestRestorableDateTime
is typically 5 minutes before the current time.
sourcepub fn set_latest_restorable_date_time(self, input: Option<DateTime>) -> Self
pub fn set_latest_restorable_date_time(self, input: Option<DateTime>) -> Self
LatestRestorableDateTime
is typically 5 minutes before the current time.
sourcepub fn build(self) -> PointInTimeRecoveryDescription
pub fn build(self) -> PointInTimeRecoveryDescription
Consumes the builder and constructs a PointInTimeRecoveryDescription
.