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/kinesis.ts?docs=full";

A uniquely identified group of data records in a Kinesis data stream.

interface Shard {
AdjacentParentShardId?: string | null;
HashKeyRange: HashKeyRange;
ParentShardId?: string | null;
SequenceNumberRange: SequenceNumberRange;
ShardId: string;
}

§Properties

§
AdjacentParentShardId?: string | null
[src]

The shard ID of the shard adjacent to the shard's parent.

§
HashKeyRange: HashKeyRange
[src]

The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers.

§
ParentShardId?: string | null
[src]

The shard ID of the shard's parent.

§
SequenceNumberRange: SequenceNumberRange
[src]

The range of possible sequence numbers for the shard.

§
ShardId: string
[src]

The unique identifier of the shard within the stream.