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

CloudWatchLoggingOptions

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

Describes the Amazon CloudWatch logging options for your delivery stream.

interface CloudWatchLoggingOptions {
Enabled?: boolean | null;
LogGroupName?: string | null;
LogStreamName?: string | null;
}

§Properties

§
Enabled?: boolean | null
[src]

Enables or disables CloudWatch logging.

§
LogGroupName?: string | null
[src]

The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.

§
LogStreamName?: string | null
[src]

The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.