public static interface CfnAppImageConfig.KernelGatewayImageConfigProperty
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 java.lang.Object |
getFileSystemConfig()
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.
|
java.lang.Object |
getKernelSpecs()
The specification of the Jupyter kernels in the image.
|