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

ReservationValue

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

The cost associated with the Reserved Instance.

interface ReservationValue {
HourlyPrice?: string | null;
RemainingTotalValue?: string | null;
RemainingUpfrontValue?: string | null;
}

§Properties

§
HourlyPrice?: string | null
[src]

The hourly rate of the reservation.

§
RemainingTotalValue?: string | null
[src]

The balance of the total value (the sum of remainingUpfrontValue + hourlyPrice * number of hours remaining).

§
RemainingUpfrontValue?: string | null
[src]

The remaining upfront cost of the reservation.