interface KernelGatewayImageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnAppImageConfig » KernelGatewayImageConfigProperty |
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const kernelGatewayImageConfigProperty: sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty = {
kernelSpecs: [{
name: 'name',
// the properties below are optional
displayName: 'displayName',
}],
// the properties below are optional
fileSystemConfig: {
defaultGid: 123,
defaultUid: 123,
mountPath: 'mountPath',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| kernel | IResolvable | IResolvable | Kernel[] | The specification of the Jupyter kernels in the image. |
| file | IResolvable | File | The Amazon Elastic File System (EFS) storage configuration for a SageMaker image. |
kernelSpecs
Type:
IResolvable | IResolvable | Kernel[]
The specification of the Jupyter kernels in the image.
fileSystemConfig?
Type:
IResolvable | File
(optional)
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.

.NET
Java
Python
TypeScript