interface SpaceCodeEditorAppSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnSpace.SpaceCodeEditorAppSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnSpace_SpaceCodeEditorAppSettingsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnSpace.SpaceCodeEditorAppSettingsProperty |
Python | aws_cdk.aws_sagemaker.CfnSpace.SpaceCodeEditorAppSettingsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnSpace » SpaceCodeEditorAppSettingsProperty |
The application settings for a Code Editor 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 spaceCodeEditorAppSettingsProperty: sagemaker.CfnSpace.SpaceCodeEditorAppSettingsProperty = {
appLifecycleManagement: {
idleSettings: {
idleTimeoutInMinutes: 123,
},
},
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 CodeEditor applications in a space. |
| 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 CodeEditor applications in a space.
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.

.NET
Go
Java
Python
TypeScript