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

KnowledgeBaseData

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

Information about the knowledge base.

interface KnowledgeBaseData {
description?: string | null;
knowledgeBaseArn: string;
knowledgeBaseId: string;
knowledgeBaseType: KnowledgeBaseType;
lastContentModificationTime?: Date | number | null;
name: string;
renderingConfiguration?: RenderingConfiguration | null;
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | null;
sourceConfiguration?: SourceConfiguration | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
description?: string | null
[src]

The description.

§
knowledgeBaseArn: string
[src]

The Amazon Resource Name (ARN) of the knowledge base.

§
knowledgeBaseId: string
[src]

The identifier of the knowledge base.

§
knowledgeBaseType: KnowledgeBaseType
[src]

The type of knowledge base.

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

An epoch timestamp indicating the most recent content modification inside the knowledge base. If no content exists in a knowledge base, this value is unset.

§
name: string
[src]

The name of the knowledge base.

§
renderingConfiguration?: RenderingConfiguration | null
[src]

Information about how to render the content.

§
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | null
[src]

The KMS key used for encryption.

§
sourceConfiguration?: SourceConfiguration | null
[src]

Source configuration information about the knowledge base.

§

The status of the knowledge base.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags used to organize, track, or control access for this resource.