Interface MemoryGiBPerVCpu.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<MemoryGiBPerVCpu.Builder,MemoryGiBPerVCpu>
,SdkBuilder<MemoryGiBPerVCpu.Builder,MemoryGiBPerVCpu>
,SdkPojo
- Enclosing class:
- MemoryGiBPerVCpu
public static interface MemoryGiBPerVCpu.Builder extends SdkPojo, CopyableBuilder<MemoryGiBPerVCpu.Builder,MemoryGiBPerVCpu>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MemoryGiBPerVCpu.Builder
max(Double max)
The maximum amount of memory per vCPU, in GiB.MemoryGiBPerVCpu.Builder
min(Double min)
The minimum amount of memory per vCPU, in GiB.-
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
-
min
MemoryGiBPerVCpu.Builder min(Double min)
The minimum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no minimum limit.
- Parameters:
min
- The minimum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no minimum limit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
MemoryGiBPerVCpu.Builder max(Double max)
The maximum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no maximum limit.
- Parameters:
max
- The maximum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no maximum limit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-