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

ConfigStreamDeliveryInfo

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

A list that contains the status of the delivery of the configuration stream notification to the Amazon SNS topic.

interface ConfigStreamDeliveryInfo {
lastErrorCode?: string | null;
lastErrorMessage?: string | null;
lastStatus?: DeliveryStatus | null;
lastStatusChangeTime?: Date | number | null;
}

§Properties

§
lastErrorCode?: string | null
[src]

The error code from the last attempted delivery.

§
lastErrorMessage?: string | null
[src]

The error message from the last attempted delivery.

§
lastStatus?: DeliveryStatus | null
[src]

Status of the last attempted delivery.

Note Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.

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

The time from the last status change.