GetFleetComputeConfiguration constructor

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

Creates a new GetFleetComputeConfiguration. disk Amount of disk space of the instance type included in the fleet. instanceType EC2 instance type in the fleet. machineType Machine type of the instance type included in the fleet. memory Amount of memory of the instance type included in the fleet. vcpu Number of vCPUs of the instance type included in the fleet.

Implementation

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