Interface ComputeConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComputeConfiguration.Builder,ComputeConfiguration>,SdkBuilder<ComputeConfiguration.Builder,ComputeConfiguration>,SdkPojo
- Enclosing class:
- ComputeConfiguration
public static interface ComputeConfiguration.Builder extends SdkPojo, CopyableBuilder<ComputeConfiguration.Builder,ComputeConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComputeConfiguration.Builderdisk(Long disk)The amount of disk space of the instance type included in your fleet.ComputeConfiguration.BuildermachineType(String machineType)The machine type of the instance type included in your fleet.ComputeConfiguration.BuildermachineType(MachineType machineType)The machine type of the instance type included in your fleet.ComputeConfiguration.Buildermemory(Long memory)The amount of memory of the instance type included in your fleet.ComputeConfiguration.BuildervCpu(Long vCpu)The number of vCPUs of the instance type included in your fleet.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
vCpu
ComputeConfiguration.Builder vCpu(Long vCpu)
The number of vCPUs of the instance type included in your fleet.
- Parameters:
vCpu- The number of vCPUs of the instance type included in your fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memory
ComputeConfiguration.Builder memory(Long memory)
The amount of memory of the instance type included in your fleet.
- Parameters:
memory- The amount of memory of the instance type included in your fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
disk
ComputeConfiguration.Builder disk(Long disk)
The amount of disk space of the instance type included in your fleet.
- Parameters:
disk- The amount of disk space of the instance type included in your fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
machineType
ComputeConfiguration.Builder machineType(String machineType)
The machine type of the instance type included in your fleet.
- Parameters:
machineType- The machine type of the instance type included in your fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MachineType,MachineType
-
machineType
ComputeConfiguration.Builder machineType(MachineType machineType)
The machine type of the instance type included in your fleet.
- Parameters:
machineType- The machine type of the instance type included in your fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MachineType,MachineType
-
-