interface KernelGatewayImageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnAppImageConfigPropsMixin_KernelGatewayImageConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnAppImageConfigPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const kernelGatewayImageConfigProperty: sagemaker_mixins.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty = {
fileSystemConfig: {
defaultGid: 123,
defaultUid: 123,
mountPath: 'mountPath',
},
kernelSpecs: [{
displayName: 'displayName',
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| file | IResolvable | File | The Amazon Elastic File System storage configuration for a SageMaker AI image. |
| kernel | 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.
kernelSpecs?
Type:
IResolvable | (IResolvable | Kernel)[]
(optional)
The specification of the Jupyter kernels in the image.

.NET
Go
Java
Python
TypeScript