Class: Aws::DocDB::Types::DeleteDBClusterSnapshotMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::DeleteDBClusterSnapshotMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-docdb/types.rb
Overview
Note:
When making an API call, you may pass DeleteDBClusterSnapshotMessage data as a hash:
{
db_cluster_snapshot_identifier: "String", # required
}
Represents the input to DeleteDBClusterSnapshot.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_snapshot_identifier ⇒ String
The identifier of the cluster snapshot to delete.
Instance Attribute Details
#db_cluster_snapshot_identifier ⇒ String
The identifier of the cluster snapshot to delete.
Constraints: Must be the name of an existing cluster snapshot in the `available` state.
2453 2454 2455 2456 2457 |
# File 'lib/aws-sdk-docdb/types.rb', line 2453 class DeleteDBClusterSnapshotMessage < Struct.new( :db_cluster_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |