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

GrammarSlotTypeSource

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

Describes the Amazon S3 bucket name and location for the grammar that is the source for the slot type.

interface GrammarSlotTypeSource {
kmsKeyArn?: string | null;
s3BucketName: string;
s3ObjectKey: string;
}

§Properties

§
kmsKeyArn?: string | null
[src]

The Amazon KMS key required to decrypt the contents of the grammar, if any.

§
s3BucketName: string
[src]

The name of the S3 bucket that contains the grammar source.

§
s3ObjectKey: string
[src]

The path to the grammar in the S3 bucket.