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

InstanceFleetTimeline

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

Provides historical timestamps for the instance fleet, including the time of creation, the time it became ready to run jobs, and the time of termination.

Note: The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.

interface InstanceFleetTimeline {
CreationDateTime?: Date | number | null;
EndDateTime?: Date | number | null;
ReadyDateTime?: Date | number | null;
}

§Properties

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

The time and date the instance fleet was created.

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

The time and date the instance fleet terminated.

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

The time and date the instance fleet was ready to run jobs.