interface KernelGatewayImageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAppImageConfig_KernelGatewayImageConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnAppImageConfig » KernelGatewayImageConfigProperty |
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
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 storage configuration for a SageMaker AI 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 storage configuration for a SageMaker AI image.

.NET
Go
Java
Python
TypeScript