Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateSnapshotMessage

import type { CreateSnapshotMessage } from "https://aws-api.deno.dev/v0.3/services/elasticache.ts?docs=full";

Represents the input of a CreateSnapshot operation.

interface CreateSnapshotMessage {
CacheClusterId?: string | null;
KmsKeyId?: string | null;
ReplicationGroupId?: string | null;
SnapshotName: string;
Tags?: Tag[] | null;
}

§Properties

§
CacheClusterId?: string | null
[src]

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

§
KmsKeyId?: string | null
[src]

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

§
ReplicationGroupId?: string | null
[src]

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

§
SnapshotName: string
[src]

A name for the snapshot being created.

§
Tags?: Tag[] | null
[src]

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.