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

CreateKnowledgeBaseRequest

import type { CreateKnowledgeBaseRequest } from "https://aws-api.deno.dev/v0.3/services/wisdom.ts?docs=full";
interface CreateKnowledgeBaseRequest {
clientToken?: string | null;
description?: string | null;
knowledgeBaseType: KnowledgeBaseType;
name: string;
renderingConfiguration?: RenderingConfiguration | null;
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | null;
sourceConfiguration?: SourceConfiguration | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
clientToken?: string | null
[src]

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

§
description?: string | null
[src]

The description.

§
knowledgeBaseType: KnowledgeBaseType
[src]

The type of knowledge base. Only CUSTOM knowledge bases allow you to upload your own content. EXTERNAL knowledge bases support integrations with third-party systems whose content is synchronized automatically.

§
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]

The source of the knowledge base content. Only set this argument for EXTERNAL knowledge bases.

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

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