You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DocDB::Types::CreateDBClusterSnapshotMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateDBClusterSnapshotMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  db_cluster_snapshot_identifier: "String", # required
  db_cluster_identifier: "String", # required
  tags: [
    {
      key: "String",
      value: "String",
    },
  ],
}

Represents the input of CreateDBClusterSnapshot.

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_identifierString

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

Constraints:

  • Must match the identifier of an existing DBCluster.

^

Example: my-cluster

Returns:

  • (String)

    The identifier of the cluster to create a snapshot for.

#db_cluster_snapshot_identifierString

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

Constraints:

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

  • The first character must be a letter.

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

Example: my-cluster-snapshot1

Returns:

  • (String)

    The identifier of the cluster snapshot.

#tagsArray<Types::Tag>

The tags to be assigned to the cluster snapshot.

Returns:

  • (Array<Types::Tag>)

    The tags to be assigned to the cluster snapshot.