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

DeleteReplicationGroupMessage

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

Represents the input of a DeleteReplicationGroup operation.

interface DeleteReplicationGroupMessage {
FinalSnapshotIdentifier?: string | null;
ReplicationGroupId: string;
RetainPrimaryCluster?: boolean | null;
}

§Properties

§
FinalSnapshotIdentifier?: string | null
[src]

The name of a final node group (shard) snapshot. ElastiCache creates the snapshot from the primary node in the cluster, rather than one of the replicas; this is to ensure that it captures the freshest data. After the final snapshot is taken, the replication group is immediately deleted.

§
ReplicationGroupId: string
[src]

The identifier for the cluster to be deleted. This parameter is not case sensitive.

§
RetainPrimaryCluster?: boolean | null
[src]

If set to true, all of the read replicas are deleted, but the primary node is retained.