Struct aws_sdk_redshift::input::BatchModifyClusterSnapshotsInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchModifyClusterSnapshots, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchModifyClusterSnapshots, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<BatchModifyClusterSnapshots
>
Creates a new builder-style object to manufacture BatchModifyClusterSnapshotsInput
A list of snapshot identifiers you want to modify.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for BatchModifyClusterSnapshotsInput
impl Sync for BatchModifyClusterSnapshotsInput
impl Unpin for BatchModifyClusterSnapshotsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more