interface JupyterLabAppImageConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnAppImageConfigPropsMixin_JupyterLabAppImageConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnAppImageConfigPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const jupyterLabAppImageConfigProperty: sagemaker_mixins.CfnAppImageConfigPropsMixin.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