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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSpace.SpaceCodeEditorAppSettingsProperty
static final class
An 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.- See Also:
-
getDefaultResourceSpec
Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.- See Also:
-
builder
-