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

Class: Aws::ElastiCache::Types::CreateSnapshotMessage

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

Overview

Note:

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

{
  replication_group_id: "String",
  cache_cluster_id: "String",
  snapshot_name: "String", # required
  kms_key_id: "String",
}

Represents the input of a CreateSnapshot operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_cluster_idString

The identifier of an existing cluster. The snapshot is created from this cluster.

Returns:

  • (String)

    The identifier of an existing cluster.

#kms_key_idString

The ID of the KMS key used to encrypt the snapshot.

Returns:

  • (String)

    The ID of the KMS key used to encrypt the snapshot.

#replication_group_idString

The identifier of an existing replication group. The snapshot is created from this replication group.

Returns:

  • (String)

    The identifier of an existing replication group.

#snapshot_nameString

A name for the snapshot being created.

Returns:

  • (String)

    A name for the snapshot being created.