FleetComputeConfiguration constructor

const FleetComputeConfiguration({
  1. Input<int?>? disk,
  2. Input<String?>? instanceType,
  3. Input<String?>? machineType,
  4. Input<int?>? memory,
  5. Input<int?>? vcpu,
})

Creates a new FleetComputeConfiguration. disk Amount of disk space of the instance type included in the fleet. instanceType EC2 instance type to be launched in the fleet. Specify only if computeType is set to CUSTOM_INSTANCE_TYPE. See Supported instance families. machineType Machine type of the instance type included in the fleet. Valid values: GENERAL, NVME. Specify only if computeType is set to ATTRIBUTE_BASED_COMPUTE. memory Amount of memory of the instance type included in the fleet. Specify only if computeType is set to ATTRIBUTE_BASED_COMPUTE. vcpu Number of vCPUs of the instance type included in the fleet. Specify only if computeType is set to ATTRIBUTE_BASED_COMPUTE.

Implementation

const FleetComputeConfiguration({
  this.disk,
  this.instanceType,
  this.machineType,
  this.memory,
  this.vcpu,
});