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

GlobalTableDescription

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

Contains details about the global table.

interface GlobalTableDescription {
CreationDateTime?: Date | number | null;
GlobalTableArn?: string | null;
GlobalTableName?: string | null;
GlobalTableStatus?: GlobalTableStatus | null;
ReplicationGroup?: ReplicaDescription[] | null;
}

§Properties

§
CreationDateTime?: Date | number | null
[src]

The creation time of the global table.

§
GlobalTableArn?: string | null
[src]

The unique identifier of the global table.

§
GlobalTableName?: string | null
[src]

The global table name.

§
GlobalTableStatus?: GlobalTableStatus | null
[src]

The current state of the global table:

  • CREATING - The global table is being created.
  • UPDATING - The global table is being updated.
  • DELETING - The global table is being deleted.
  • ACTIVE - The global table is ready for use.
§
ReplicationGroup?: ReplicaDescription[] | null
[src]

The Regions where the global table has replicas.