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

.NET
Go
Java
Python
TypeScript