@Stability(value=Stable)
public static interface CfnAppImageConfig.KernelGatewayImageConfigProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
KernelGatewayImageConfigProperty kernelGatewayImageConfigProperty = KernelGatewayImageConfigProperty.builder()
.kernelSpecs(List.of(KernelSpecProperty.builder()
.name("name")
// the properties below are optional
.displayName("displayName")
.build()))
// the properties below are optional
.fileSystemConfig(FileSystemConfigProperty.builder()
.defaultGid(123)
.defaultUid(123)
.mountPath("mountPath")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAppImageConfig.KernelGatewayImageConfigProperty.Builder
A builder for
CfnAppImageConfig.KernelGatewayImageConfigProperty |
static class |
CfnAppImageConfig.KernelGatewayImageConfigProperty.Jsii$Proxy
An implementation for
CfnAppImageConfig.KernelGatewayImageConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAppImageConfig.KernelGatewayImageConfigProperty.Builder |
builder() |
default Object |
getFileSystemConfig()
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.
|
Object |
getKernelSpecs()
The specification of the Jupyter kernels in the image.
|
@Stability(value=Stable) @NotNull Object getKernelSpecs()
@Stability(value=Stable) @Nullable default Object getFileSystemConfig()
@Stability(value=Stable) static CfnAppImageConfig.KernelGatewayImageConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.