Class: Aws::RDS::Types::DeleteDBSnapshotMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Note:

When making an API call, you may pass DeleteDBSnapshotMessage data as a hash:

{
  db_snapshot_identifier: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_snapshot_identifierString

The DB snapshot identifier.

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

Returns:

  • (String)


6311
6312
6313
6314
# File 'lib/aws-sdk-rds/types.rb', line 6311

class DeleteDBSnapshotMessage < Struct.new(
  :db_snapshot_identifier)
  include Aws::Structure
end