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

CloudwatchLogsExportConfiguration

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

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster.

The EnableLogTypes and DisableLogTypes arrays determine which logs will be exported (or not exported) to CloudWatch Logs.

interface CloudwatchLogsExportConfiguration {
DisableLogTypes?: string[] | null;
EnableLogTypes?: string[] | null;
}

§Properties

§
DisableLogTypes?: string[] | null
[src]

The list of log types to disable.

§
EnableLogTypes?: string[] | null
[src]

The list of log types to enable.