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 AI 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:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppImageConfig.KernelGatewayImageConfigPropertystatic final classAn implementation forCfnAppImageConfig.KernelGatewayImageConfigProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getKernelSpecsThe specification of the Jupyter kernels in the image.Returns union: either IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAppImageConfig.KernelSpecProperty>- See Also:
 
- 
getFileSystemConfigThe Amazon Elastic File System storage configuration for a SageMaker AI image.Returns union: either IResolvableorCfnAppImageConfig.FileSystemConfigProperty- See Also:
 
- 
builder
 
-