InstanceTypeConfig constructor

InstanceTypeConfig({
  1. required String instanceType,
  2. String? bidPrice,
  3. double? bidPriceAsPercentageOfOnDemandPrice,
  4. List<Configuration>? configurations,
  5. EbsConfiguration? ebsConfiguration,
  6. int? weightedCapacity,
})

Implementation

InstanceTypeConfig({
  required this.instanceType,
  this.bidPrice,
  this.bidPriceAsPercentageOfOnDemandPrice,
  this.configurations,
  this.ebsConfiguration,
  this.weightedCapacity,
});