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

LogSettingsRequest

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

Settings used to configure delivery mode and destination for conversation logs.

interface LogSettingsRequest {
destination: Destination;
kmsKeyArn?: string | null;
logType: LogType;
resourceArn: string;
}

§Properties

§
destination: Destination
[src]

Where the logs will be delivered. Text logs are delivered to a CloudWatch Logs log group. Audio logs are delivered to an S3 bucket.

§
kmsKeyArn?: string | null
[src]

The Amazon Resource Name (ARN) of the AWS KMS customer managed key for encrypting audio logs delivered to an S3 bucket. The key does not apply to CloudWatch Logs and is optional for S3 buckets.

§
logType: LogType
[src]

The type of logging to enable. Text logs are delivered to a CloudWatch Logs log group. Audio logs are delivered to an S3 bucket.

§
resourceArn: string
[src]

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or S3 bucket where the logs should be delivered.