interface SpaceJupyterLabAppSettingsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnSpace.SpaceJupyterLabAppSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnSpace_SpaceJupyterLabAppSettingsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnSpace.SpaceJupyterLabAppSettingsProperty |
Python | aws_cdk.aws_sagemaker.CfnSpace.SpaceJupyterLabAppSettingsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnSpace » SpaceJupyterLabAppSettingsProperty |
The settings for the JupyterLab application within a space.
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 spaceJupyterLabAppSettingsProperty: sagemaker.CfnSpace.SpaceJupyterLabAppSettingsProperty = {
appLifecycleManagement: {
idleSettings: {
idleTimeoutInMinutes: 123,
},
},
codeRepositories: [{
repositoryUrl: 'repositoryUrl',
}],
defaultResourceSpec: {
instanceType: 'instanceType',
lifecycleConfigArn: 'lifecycleConfigArn',
sageMakerImageArn: 'sageMakerImageArn',
sageMakerImageVersionArn: 'sageMakerImageVersionArn',
},
};
Properties
Name | Type | Description |
---|---|---|
app | IResolvable | Space | Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space. |
code | IResolvable | IResolvable | Code [] | A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application. |
default | IResolvable | Resource | Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on. |
appLifecycleManagement?
Type:
IResolvable
|
Space
(optional)
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space.
codeRepositories?
Type:
IResolvable
|
IResolvable
|
Code
[]
(optional)
A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.
defaultResourceSpec?
Type:
IResolvable
|
Resource
(optional)
Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.