Class: Aws::Redshift::Types::BatchModifyClusterSnapshotsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::BatchModifyClusterSnapshotsMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#force ⇒ Boolean
A boolean value indicating whether to override an exception if the retention period has passed.
-
#manual_snapshot_retention_period ⇒ Integer
The number of days that a manual snapshot is retained.
-
#snapshot_identifier_list ⇒ Array<String>
A list of snapshot identifiers you want to modify.
Instance Attribute Details
#force ⇒ Boolean
A boolean value indicating whether to override an exception if the retention period has passed.
523 524 525 526 527 528 529 |
# File 'lib/aws-sdk-redshift/types.rb', line 523 class BatchModifyClusterSnapshotsMessage < Struct.new( :snapshot_identifier_list, :manual_snapshot_retention_period, :force) SENSITIVE = [] include Aws::Structure end |
#manual_snapshot_retention_period ⇒ Integer
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.
523 524 525 526 527 528 529 |
# File 'lib/aws-sdk-redshift/types.rb', line 523 class BatchModifyClusterSnapshotsMessage < Struct.new( :snapshot_identifier_list, :manual_snapshot_retention_period, :force) SENSITIVE = [] include Aws::Structure end |
#snapshot_identifier_list ⇒ Array<String>
A list of snapshot identifiers you want to modify.
523 524 525 526 527 528 529 |
# File 'lib/aws-sdk-redshift/types.rb', line 523 class BatchModifyClusterSnapshotsMessage < Struct.new( :snapshot_identifier_list, :manual_snapshot_retention_period, :force) SENSITIVE = [] include Aws::Structure end |