Interface KernelGatewayImageConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<KernelGatewayImageConfig.Builder,KernelGatewayImageConfig>
,SdkBuilder<KernelGatewayImageConfig.Builder,KernelGatewayImageConfig>
,SdkPojo
- Enclosing class:
- KernelGatewayImageConfig
public static interface KernelGatewayImageConfig.Builder extends SdkPojo, CopyableBuilder<KernelGatewayImageConfig.Builder,KernelGatewayImageConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default KernelGatewayImageConfig.Builder
fileSystemConfig(Consumer<FileSystemConfig.Builder> fileSystemConfig)
The Amazon Elastic File System storage configuration for a SageMaker AI image.KernelGatewayImageConfig.Builder
fileSystemConfig(FileSystemConfig fileSystemConfig)
The Amazon Elastic File System storage configuration for a SageMaker AI image.KernelGatewayImageConfig.Builder
kernelSpecs(Collection<KernelSpec> kernelSpecs)
The specification of the Jupyter kernels in the image.KernelGatewayImageConfig.Builder
kernelSpecs(Consumer<KernelSpec.Builder>... kernelSpecs)
The specification of the Jupyter kernels in the image.KernelGatewayImageConfig.Builder
kernelSpecs(KernelSpec... kernelSpecs)
The specification of the Jupyter kernels in the image.-
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
-
kernelSpecs
KernelGatewayImageConfig.Builder kernelSpecs(Collection<KernelSpec> kernelSpecs)
The specification of the Jupyter kernels in the image.
- Parameters:
kernelSpecs
- The specification of the Jupyter kernels in the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kernelSpecs
KernelGatewayImageConfig.Builder kernelSpecs(KernelSpec... kernelSpecs)
The specification of the Jupyter kernels in the image.
- Parameters:
kernelSpecs
- The specification of the Jupyter kernels in the image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kernelSpecs
KernelGatewayImageConfig.Builder kernelSpecs(Consumer<KernelSpec.Builder>... kernelSpecs)
The specification of the Jupyter kernels in the image.
This is a convenience method that creates an instance of theKernelSpec.Builder
avoiding the need to create one manually viaKernelSpec.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#kernelSpecs(List
.) - Parameters:
kernelSpecs
- a consumer that will call methods onKernelSpec.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#kernelSpecs(java.util.Collection
)
-
fileSystemConfig
KernelGatewayImageConfig.Builder fileSystemConfig(FileSystemConfig fileSystemConfig)
The Amazon Elastic File System storage configuration for a SageMaker AI image.
- Parameters:
fileSystemConfig
- The Amazon Elastic File System storage configuration for a SageMaker AI image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemConfig
default KernelGatewayImageConfig.Builder fileSystemConfig(Consumer<FileSystemConfig.Builder> fileSystemConfig)
The Amazon Elastic File System storage configuration for a SageMaker AI image.
This is a convenience method that creates an instance of theFileSystemConfig.Builder
avoiding the need to create one manually viaFileSystemConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofileSystemConfig(FileSystemConfig)
.- Parameters:
fileSystemConfig
- a consumer that will call methods onFileSystemConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fileSystemConfig(FileSystemConfig)
-
-