aws-cdk-lib.aws_sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty

interface KernelGatewayImageConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAppImageConfig_KernelGatewayImageConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnAppImageConfig.KernelGatewayImageConfigProperty
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
kernelSpecsIResolvable | IResolvable | KernelSpecProperty[]The specification of the Jupyter kernels in the image.
fileSystemConfig?IResolvable | FileSystemConfigPropertyThe Amazon Elastic File System (EFS) storage configuration for a SageMaker image.

kernelSpecs

Type: IResolvable | IResolvable | KernelSpecProperty[]

The specification of the Jupyter kernels in the image.


fileSystemConfig?

Type: IResolvable | FileSystemConfigProperty (optional)

The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.