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

ConfigExportDeliveryInfo

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

Provides status of the delivery of the snapshot or the configuration history to the specified Amazon S3 bucket. Also provides the status of notifications about the Amazon S3 delivery to the specified Amazon SNS topic.

interface ConfigExportDeliveryInfo {
lastAttemptTime?: Date | number | null;
lastErrorCode?: string | null;
lastErrorMessage?: string | null;
lastStatus?: DeliveryStatus | null;
lastSuccessfulTime?: Date | number | null;
nextDeliveryTime?: Date | number | null;
}

§Properties

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

The time of the last attempted delivery.

§
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.

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

The time of the last successful delivery.

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

The time that the next delivery occurs.