Struct aws_sdk_redshift::operation::batch_modify_cluster_snapshots::BatchModifyClusterSnapshotsInput
source · #[non_exhaustive]pub struct BatchModifyClusterSnapshotsInput {
pub snapshot_identifier_list: Option<Vec<String>>,
pub manual_snapshot_retention_period: Option<i32>,
pub force: bool,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.snapshot_identifier_list: Option<Vec<String>>
A list of snapshot identifiers you want to modify.
manual_snapshot_retention_period: Option<i32>
The number of days that a manual snapshot is retained. If you specify the value -1, the manual snapshot is retained indefinitely.
The number must be either -1 or an integer between 1 and 3,653.
If you decrease the manual snapshot retention period from its current value, existing manual snapshots that fall outside of the new retention period will return an error. If you want to suppress the errors and delete the snapshots, use the force option.
force: bool
A boolean value indicating whether to override an exception if the retention period has passed.
Implementations§
source§impl BatchModifyClusterSnapshotsInput
impl BatchModifyClusterSnapshotsInput
sourcepub fn snapshot_identifier_list(&self) -> Option<&[String]>
pub fn snapshot_identifier_list(&self) -> Option<&[String]>
A list of snapshot identifiers you want to modify.
sourcepub fn manual_snapshot_retention_period(&self) -> Option<i32>
pub fn manual_snapshot_retention_period(&self) -> Option<i32>
The number of days that a manual snapshot is retained. If you specify the value -1, the manual snapshot is retained indefinitely.
The number must be either -1 or an integer between 1 and 3,653.
If you decrease the manual snapshot retention period from its current value, existing manual snapshots that fall outside of the new retention period will return an error. If you want to suppress the errors and delete the snapshots, use the force option.
source§impl BatchModifyClusterSnapshotsInput
impl BatchModifyClusterSnapshotsInput
sourcepub fn builder() -> BatchModifyClusterSnapshotsInputBuilder
pub fn builder() -> BatchModifyClusterSnapshotsInputBuilder
Creates a new builder-style object to manufacture BatchModifyClusterSnapshotsInput
.
Trait Implementations§
source§impl Clone for BatchModifyClusterSnapshotsInput
impl Clone for BatchModifyClusterSnapshotsInput
source§fn clone(&self) -> BatchModifyClusterSnapshotsInput
fn clone(&self) -> BatchModifyClusterSnapshotsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<BatchModifyClusterSnapshotsInput> for BatchModifyClusterSnapshotsInput
impl PartialEq<BatchModifyClusterSnapshotsInput> for BatchModifyClusterSnapshotsInput
source§fn eq(&self, other: &BatchModifyClusterSnapshotsInput) -> bool
fn eq(&self, other: &BatchModifyClusterSnapshotsInput) -> bool
self
and other
values to be equal, and is used
by ==
.