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