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();
 

See Also: