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

Shard

import type { Shard } from "https://aws-api.deno.dev/v0.4/services/memorydb.ts?docs=full";

Represents a collection of nodes in a cluster. One node in the node group is the read/write primary node. All the other nodes are read-only Replica nodes.

interface Shard {
Name?: string | null;
Nodes?: Node[] | null;
NumberOfNodes?: number | null;
Slots?: string | null;
Status?: string | null;
}

§Properties

§
Name?: string | null
[src]

The name of the shard

§
Nodes?: Node[] | null
[src]

A list containing information about individual nodes within the shard

§
NumberOfNodes?: number | null
[src]

The number of nodes in the shard

§
Slots?: string | null
[src]

The keyspace for this shard.

§
Status?: string | null
[src]

The current state of this replication group - creating, available, modifying, deleting.