Class: Aws::Neptune::Types::CreateDBClusterSnapshotMessage

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_identifierString

The identifier of the DB cluster to create a snapshot for. This parameter is not case-sensitive.

Constraints:

  • Must match the identifier of an existing DBCluster.

^

Example: my-cluster1

Returns:

  • (String)


1075
1076
1077
1078
1079
1080
1081
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 1075

class CreateDBClusterSnapshotMessage < Struct.new(
  :db_cluster_snapshot_identifier,
  :db_cluster_identifier,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#db_cluster_snapshot_identifierString

The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1-snapshot1

Returns:

  • (String)


1075
1076
1077
1078
1079
1080
1081
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 1075

class CreateDBClusterSnapshotMessage < Struct.new(
  :db_cluster_snapshot_identifier,
  :db_cluster_identifier,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

The tags to be assigned to the DB cluster snapshot.

Returns:



1075
1076
1077
1078
1079
1080
1081
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 1075

class CreateDBClusterSnapshotMessage < Struct.new(
  :db_cluster_snapshot_identifier,
  :db_cluster_identifier,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end