interface JupyterLabAppSettingsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnDomain.JupyterLabAppSettingsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnDomain_JupyterLabAppSettingsProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnDomain.JupyterLabAppSettingsProperty |
![]() | aws_cdk.aws_sagemaker.CfnDomain.JupyterLabAppSettingsProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnDomain » JupyterLabAppSettingsProperty |
The settings for the JupyterLab application.
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 jupyterLabAppSettingsProperty: sagemaker.CfnDomain.JupyterLabAppSettingsProperty = {
appLifecycleManagement: {
idleSettings: {
idleTimeoutInMinutes: 123,
lifecycleManagement: 'lifecycleManagement',
maxIdleTimeoutInMinutes: 123,
minIdleTimeoutInMinutes: 123,
},
},
codeRepositories: [{
repositoryUrl: 'repositoryUrl',
}],
customImages: [{
appImageConfigName: 'appImageConfigName',
imageName: 'imageName',
// the properties below are optional
imageVersionNumber: 123,
}],
defaultResourceSpec: {
instanceType: 'instanceType',
lifecycleConfigArn: 'lifecycleConfigArn',
sageMakerImageArn: 'sageMakerImageArn',
sageMakerImageVersionArn: 'sageMakerImageVersionArn',
},
lifecycleConfigArns: ['lifecycleConfigArns'],
};
Properties
Name | Type | Description |
---|---|---|
app | IResolvable | App | Indicates whether idle shutdown is activated for JupyterLab applications. |
code | IResolvable | IResolvable | Code [] | A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application. |
custom | IResolvable | IResolvable | Custom [] | A list of custom SageMaker images that are configured to run as a JupyterLab app. |
default | IResolvable | Resource | The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app. |
lifecycle | string[] | The Amazon Resource Name (ARN) of the lifecycle configurations attached to the user profile or domain. |
appLifecycleManagement?
Type:
IResolvable
|
App
(optional)
Indicates whether idle shutdown is activated for JupyterLab applications.
codeRepositories?
Type:
IResolvable
|
IResolvable
|
Code
[]
(optional)
A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.
customImages?
Type:
IResolvable
|
IResolvable
|
Custom
[]
(optional)
A list of custom SageMaker images that are configured to run as a JupyterLab app.
defaultResourceSpec?
Type:
IResolvable
|
Resource
(optional)
The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
lifecycleConfigArns?
Type:
string[]
(optional)
The Amazon Resource Name (ARN) of the lifecycle configurations attached to the user profile or domain.
To remove a lifecycle config, you must set LifecycleConfigArns
to an empty list.