interface KernelGatewayImageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnAppImageConfigPropsMixin_KernelGatewayImageConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const kernelGatewayImageConfigProperty: sagemaker.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