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

IngestionStatus

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

A table showing information about the most recent successful and failed attempts to ingest events.

interface IngestionStatus {
LatestIngestionAttemptEventID?: string | null;
LatestIngestionAttemptTime?: Date | number | null;
LatestIngestionErrorCode?: string | null;
LatestIngestionSuccessEventID?: string | null;
LatestIngestionSuccessTime?: Date | number | null;
}

§Properties

§
LatestIngestionAttemptEventID?: string | null
[src]

The event ID of the most recent attempt to ingest events.

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

The time stamp of the most recent attempt to ingest events on the channel.

§
LatestIngestionErrorCode?: string | null
[src]

The error code for the most recent failure to ingest events.

§
LatestIngestionSuccessEventID?: string | null
[src]

The event ID of the most recent successful ingestion of events.

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

The time stamp of the most recent successful ingestion of events for the channel.