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.4/services/docdb.ts?docs=full";

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

The EnableLogTypes and DisableLogTypes arrays determine which logs are exported (or not exported) to CloudWatch Logs. The values within these arrays depend on the engine that is being used.

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.