Class: Aws::DocDB::Types::DeleteDBClusterSnapshotMessage

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_snapshot_identifierString

The identifier of the DB cluster snapshot to delete.

Constraints: Must be the name of an existing DB cluster snapshot in the available state.

Returns:

  • (String)


1931
1932
1933
1934
# File 'lib/aws-sdk-docdb/types.rb', line 1931

class DeleteDBClusterSnapshotMessage < Struct.new(
  :db_cluster_snapshot_identifier)
  include Aws::Structure
end