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

IndexConfigurationSummary

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

A summary of information about an index.

interface IndexConfigurationSummary {
CreatedAt: Date | number;
Edition?: IndexEdition | null;
Id?: string | null;
Name?: string | null;
Status: IndexStatus;
UpdatedAt: Date | number;
}

§Properties

§
CreatedAt: Date | number
[src]

The Unix timestamp when the index was created.

§
Edition?: IndexEdition | null
[src]

Indicates whether the index is a enterprise edition index or a developer edition index.

§
Id?: string | null
[src]

A unique identifier for the index. Use this to identify the index when you are using operations such as Query, DescribeIndex, UpdateIndex, and DeleteIndex.

§
Name?: string | null
[src]

The name of the index.

§

The current status of the index. When the status is ACTIVE, the index is ready to search.

§
UpdatedAt: Date | number
[src]

The Unix timestamp when the index was last updated by the UpdateIndex operation.