Interface CfnSpace.SpaceCodeEditorAppSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSpace.SpaceCodeEditorAppSettingsProperty.Jsii$Proxy
Enclosing class:
CfnSpace

@Stability(Stable) public static interface CfnSpace.SpaceCodeEditorAppSettingsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 SpaceCodeEditorAppSettingsProperty spaceCodeEditorAppSettingsProperty = SpaceCodeEditorAppSettingsProperty.builder()
         .appLifecycleManagement(SpaceAppLifecycleManagementProperty.builder()
                 .idleSettings(SpaceIdleSettingsProperty.builder()
                         .idleTimeoutInMinutes(123)
                         .build())
                 .build())
         .defaultResourceSpec(ResourceSpecProperty.builder()
                 .instanceType("instanceType")
                 .lifecycleConfigArn("lifecycleConfigArn")
                 .sageMakerImageArn("sageMakerImageArn")
                 .sageMakerImageVersionArn("sageMakerImageVersionArn")
                 .build())
         .build();
 

See Also: