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

Stream

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

Represents all of the data describing a particular stream.

interface Stream {
StreamArn?: string | null;
StreamLabel?: string | null;
TableName?: string | null;
}

§Properties

§
StreamArn?: string | null
[src]

The Amazon Resource Name (ARN) for the stream.

§
StreamLabel?: string | null
[src]

A timestamp, in ISO 8601 format, for this stream.

Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:

  • the AWS customer ID.
  • the table name
  • the StreamLabel
§
TableName?: string | null
[src]

The DynamoDB table with which the stream is associated.