InstanceInstanceMarketOptions constructor

const InstanceInstanceMarketOptions({
  1. Input<String?>? marketType,
  2. Input<InstanceInstanceMarketOptionsSpotOptions?>? spotOptions,
})

Creates a new InstanceInstanceMarketOptions. marketType Type of market for the instance. Valid values are spot, capacity-block, and interruptible-capacity-reservation. Use interruptible-capacity-reservation to launch instances into interruptible Capacity Reservations. Defaults to spot. Required if spotOptions is specified. spotOptions Block to configure the options for Spot Instances. See Spot Options below for details on attributes.

Implementation

const InstanceInstanceMarketOptions({
  this.marketType,
  this.spotOptions,
});