Class: Aws::RDS::Types::CreateDBSnapshotMessage

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_instance_identifierString

The identifier of the DB instance that you want to create the snapshot of.

Constraints:

  • Must match the identifier of an existing DBInstance.

^

Returns:

  • (String)


5830
5831
5832
5833
5834
5835
5836
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 5830

class CreateDBSnapshotMessage < Struct.new(
  :db_snapshot_identifier,
  :db_instance_identifier,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#db_snapshot_identifierString

The identifier for the DB snapshot.

Constraints:

  • Can't be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Can't end with a hyphen or contain two consecutive hyphens

Example: my-snapshot-id

Returns:

  • (String)


5830
5831
5832
5833
5834
5835
5836
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 5830

class CreateDBSnapshotMessage < Struct.new(
  :db_snapshot_identifier,
  :db_instance_identifier,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.

Returns:



5830
5831
5832
5833
5834
5835
5836
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 5830

class CreateDBSnapshotMessage < Struct.new(
  :db_snapshot_identifier,
  :db_instance_identifier,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end