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

ExportTask

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

Represents an export task.

interface ExportTask {
destination?: string | null;
destinationPrefix?: string | null;
executionInfo?: ExportTaskExecutionInfo | null;
from?: number | null;
logGroupName?: string | null;
status?: ExportTaskStatus | null;
taskId?: string | null;
taskName?: string | null;
to?: number | null;
}

§Properties

§
destination?: string | null
[src]

The name of the S3 bucket to which the log data was exported.

§
destinationPrefix?: string | null
[src]

The prefix that was used as the start of Amazon S3 key for every object exported.

§
executionInfo?: ExportTaskExecutionInfo | null
[src]

Execution information about the export task.

§
from?: number | null
[src]

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

§
logGroupName?: string | null
[src]

The name of the log group from which logs data was exported.

§
status?: ExportTaskStatus | null
[src]

The status of the export task.

§
taskId?: string | null
[src]

The ID of the export task.

§
taskName?: string | null
[src]

The name of the export task.

§
to?: number | null
[src]

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