interface CodeEditorAppImageConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnAppImageConfig.CodeEditorAppImageConfigProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAppImageConfig_CodeEditorAppImageConfigProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnAppImageConfig.CodeEditorAppImageConfigProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnAppImageConfig.CodeEditorAppImageConfigProperty | 
|  TypeScript | aws-cdk-lib»aws_sagemaker»CfnAppImageConfig»CodeEditorAppImageConfigProperty | 
The configuration for the file system and kernels in a SageMaker image running as a Code Editor app.
The FileSystemConfig object is not supported.
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 codeEditorAppImageConfigProperty: sagemaker.CfnAppImageConfig.CodeEditorAppImageConfigProperty = {
  containerConfig: {
    containerArguments: ['containerArguments'],
    containerEntrypoint: ['containerEntrypoint'],
    containerEnvironmentVariables: [{
      key: 'key',
      value: 'value',
    }],
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| container | IResolvable | Container | The container configuration for a SageMaker image. | 
containerConfig?
Type:
IResolvable | Container
(optional)
The container configuration for a SageMaker image.
