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

PartitionIndexDescriptor

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

A descriptor for a partition index in a table.

interface PartitionIndexDescriptor {
BackfillErrors?: BackfillError[] | null;
IndexName: string;
IndexStatus: PartitionIndexStatus;
}

§Properties

§
BackfillErrors?: BackfillError[] | null
[src]

A list of errors that can occur when registering partition indexes for an existing table.

§
IndexName: string
[src]

The name of the partition index.

§

The status of the partition index.

The possible statuses are:

  • CREATING: The index is being created. When an index is in a CREATING state, the index or its table cannot be deleted.
  • ACTIVE: The index creation succeeds.
  • FAILED: The index creation fails.
  • DELETING: The index is deleted from the list of indexes.
§

A list of one or more keys, as KeySchemaElement structures, for the partition index.