Interface GpuInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GpuInfo.Builder,GpuInfo>,SdkBuilder<GpuInfo.Builder,GpuInfo>,SdkPojo
- Enclosing class:
- GpuInfo
public static interface GpuInfo.Builder extends SdkPojo, CopyableBuilder<GpuInfo.Builder,GpuInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GpuInfo.Buildergpus(Collection<Gpu> gpus)Describes the GPU accelerators for the instance type.GpuInfo.Buildergpus(Consumer<Gpu.Builder>... gpus)Describes the GPU accelerators for the instance type.GpuInfo.Buildergpus(Gpu... gpus)Describes the GPU accelerators for the instance type.-
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
-
gpus
GpuInfo.Builder gpus(Collection<Gpu> gpus)
Describes the GPU accelerators for the instance type.
- Parameters:
gpus- Describes the GPU accelerators for the instance type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gpus
GpuInfo.Builder gpus(Gpu... gpus)
Describes the GPU accelerators for the instance type.
- Parameters:
gpus- Describes the GPU accelerators for the instance type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gpus
GpuInfo.Builder gpus(Consumer<Gpu.Builder>... gpus)
Describes the GPU accelerators for the instance type.
This is a convenience method that creates an instance of theGpu.Builderavoiding the need to create one manually viaGpu.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#gpus(List.) - Parameters:
gpus- a consumer that will call methods onGpu.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#gpus(java.util.Collection)
-
-