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

CreateExportTaskRequest

import type { CreateExportTaskRequest } from "https://aws-api.deno.dev/v0.3/services/cloudwatchlogs.ts?docs=full";
interface CreateExportTaskRequest {
destination: string;
destinationPrefix?: string | null;
from: number;
logGroupName: string;
logStreamNamePrefix?: string | null;
taskName?: string | null;
to: number;
}

§Properties

§
destination: string
[src]

The name of S3 bucket for the exported log data. The bucket must be in the same Amazon Web Services region.

§
destinationPrefix?: string | null
[src]

The prefix used as the start of the key for every object exported. If you don't specify a value, the default is exportedlogs.

§
from: number
[src]

The start time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp earlier than this time are not exported.

§
logGroupName: string
[src]

The name of the log group.

§
logStreamNamePrefix?: string | null
[src]

Export only log streams that match the provided prefix. If you don't specify a value, no prefix filter is applied.

§
taskName?: string | null
[src]

The name of the export task.

§
to: number
[src]

The end time of the range for the request, expreswatchlogsdocused as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are not exported.