Class: Aws::RDS::Types::ModifyDBSnapshotMessage

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 ModifyDBSnapshotMessage data as a hash:

{
  db_snapshot_identifier: "String", # required
  engine_version: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_snapshot_identifierString

The identifier of the DB snapshot to modify.

Returns:

  • (String)


9207
9208
9209
9210
9211
# File 'lib/aws-sdk-rds/types.rb', line 9207

class ModifyDBSnapshotMessage < Struct.new(
  :db_snapshot_identifier,
  :engine_version)
  include Aws::Structure
end

#engine_versionString

The engine version to update the DB snapshot to.

Returns:

  • (String)


9207
9208
9209
9210
9211
# File 'lib/aws-sdk-rds/types.rb', line 9207

class ModifyDBSnapshotMessage < Struct.new(
  :db_snapshot_identifier,
  :engine_version)
  include Aws::Structure
end