Interface CpuOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CpuOptions.Builder,CpuOptions>,SdkBuilder<CpuOptions.Builder,CpuOptions>,SdkPojo
- Enclosing class:
- CpuOptions
public static interface CpuOptions.Builder extends SdkPojo, CopyableBuilder<CpuOptions.Builder,CpuOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CpuOptions.BuildercoreCount(Integer coreCount)The number of cores that the CPU can use.CpuOptions.BuilderthreadsPerCore(Integer threadsPerCore)The number of threads per core in the CPU.-
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, sdkFields
-
-
-
-
Method Detail
-
coreCount
CpuOptions.Builder coreCount(Integer coreCount)
The number of cores that the CPU can use.
- Parameters:
coreCount- The number of cores that the CPU can use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
threadsPerCore
CpuOptions.Builder threadsPerCore(Integer threadsPerCore)
The number of threads per core in the CPU.
- Parameters:
threadsPerCore- The number of threads per core in the CPU.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-