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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSpace.SpaceCodeEditorAppSettingsPropertystatic final classAn implementation forCfnSpace.SpaceCodeEditorAppSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of CodeEditor applications in a space.Returns union: either
IResolvableorCfnSpace.SpaceAppLifecycleManagementProperty- See Also:
-
getDefaultResourceSpec
Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.Returns union: either
IResolvableorCfnSpace.ResourceSpecProperty- See Also:
-
builder
-