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

CwLog

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

A structure that contains the information about whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs. If it does, this structure also contains the name of the log group.

interface CwLog {
CwLogEnabled?: boolean | null;
CwLogGroup?: string | null;
}

§Properties

§
CwLogEnabled?: boolean | null
[src]

Indicated whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs.

§
CwLogGroup?: string | null
[src]

The name of the log group where the copies are stored.