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

PurchaseHostReservationRequest

import type { PurchaseHostReservationRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface PurchaseHostReservationRequest {
ClientToken?: string | null;
CurrencyCode?: CurrencyCodeValues | null;
HostIdSet: string[];
LimitPrice?: string | null;
OfferingId: string;
TagSpecifications?: TagSpecification[] | null;
}

§Properties

§
ClientToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

§
CurrencyCode?: CurrencyCodeValues | null
[src]

The currency in which the totalUpfrontPrice, LimitPrice, and totalHourlyPrice amounts are specified. At this time, the only supported currency is USD.

§
HostIdSet: string[]
[src]

The IDs of the Dedicated Hosts with which the reservation will be associated.

§
LimitPrice?: string | null
[src]

The specified limit is checked against the total upfront cost of the reservation (calculated as the offering's upfront cost multiplied by the host count). If the total upfront cost is greater than the specified price limit, the request fails. This is used to ensure that the purchase does not exceed the expected upfront cost of the purchase. At this time, the only supported currency is USD. For example, to indicate a limit price of USD 100, specify 100.00.

§
OfferingId: string
[src]

The ID of the offering.

§
TagSpecifications?: TagSpecification[] | null
[src]

The tags to apply to the Dedicated Host Reservation during purchase.