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

Archive

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

An Archive object that contains details about an archive.

interface Archive {
ArchiveName?: string | null;
CreationTime?: Date | number | null;
EventCount?: number | null;
EventSourceArn?: string | null;
RetentionDays?: number | null;
SizeBytes?: number | null;
State?: ArchiveState | null;
StateReason?: string | null;
}

§Properties

§
ArchiveName?: string | null
[src]

The name of the archive.

§
CreationTime?: Date | number | null
[src]

The time stamp for the time that the archive was created.

§
EventCount?: number | null
[src]

The number of events in the archive.

§
EventSourceArn?: string | null
[src]

The ARN of the event bus associated with the archive. Only events from this event bus are sent to the archive.

§
RetentionDays?: number | null
[src]

The number of days to retain events in the archive before they are deleted.

§
SizeBytes?: number | null
[src]

The size of the archive, in bytes.

§
State?: ArchiveState | null
[src]

The current state of the archive.

§
StateReason?: string | null
[src]

A description for the reason that the archive is in the current state.