Interface CfnAppImageConfig.KernelGatewayImageConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppImageConfig.KernelGatewayImageConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnAppImageConfig
@Stability(Stable)
public static interface CfnAppImageConfig.KernelGatewayImageConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for the file system and kernels in a SageMaker image running as a KernelGateway app.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAppImageConfig.KernelGatewayImageConfigProperty
static final class
An implementation forCfnAppImageConfig.KernelGatewayImageConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKernelSpecs
The specification of the Jupyter kernels in the image. -
getFileSystemConfig
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image. -
builder
-