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

CapacityReservationSpecificationResponse

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

Describes the instance's Capacity Reservation targeting preferences. The action returns the capacityReservationPreference response element if the instance is configured to run in On-Demand capacity, or if it is configured in run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). The action returns the capacityReservationTarget response element if the instance explicily targets a specific Capacity Reservation or Capacity Reservation group.

interface CapacityReservationSpecificationResponse {
CapacityReservationPreference?: CapacityReservationPreference | null;
CapacityReservationTarget?: CapacityReservationTargetResponse | null;
}

§Properties

§
CapacityReservationPreference?: CapacityReservationPreference | null
[src]

Describes the instance's Capacity Reservation preferences. Possible preferences include:

  • open - The instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).
  • none - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.
§
CapacityReservationTarget?: CapacityReservationTargetResponse | null
[src]

Information about the targeted Capacity Reservation or Capacity Reservation group.