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

ReplicaUpdate

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

Represents one of the following:

  • A new replica to be added to an existing global table.
  • New parameters for an existing replica.
  • An existing replica to be removed from an existing global table.
interface ReplicaUpdate {
Create?: CreateReplicaAction | null;
Delete?: DeleteReplicaAction | null;
}

§Properties

§
Create?: CreateReplicaAction | null
[src]

The parameters required for creating a replica on an existing global table.

§
Delete?: DeleteReplicaAction | null
[src]

The name of the existing replica to be removed.