Interface CfnSpace.SpaceJupyterLabAppSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSpace.SpaceJupyterLabAppSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnSpace
@Stability(Stable)
public static interface CfnSpace.SpaceJupyterLabAppSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The settings for the JupyterLab application within a 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.*;
SpaceJupyterLabAppSettingsProperty spaceJupyterLabAppSettingsProperty = SpaceJupyterLabAppSettingsProperty.builder()
.appLifecycleManagement(SpaceAppLifecycleManagementProperty.builder()
.idleSettings(SpaceIdleSettingsProperty.builder()
.idleTimeoutInMinutes(123)
.build())
.build())
.codeRepositories(List.of(CodeRepositoryProperty.builder()
.repositoryUrl("repositoryUrl")
.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.SpaceJupyterLabAppSettingsPropertystatic final classAn implementation forCfnSpace.SpaceJupyterLabAppSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSettings that are used to configure and manage the lifecycle of JupyterLab applications in a space.default ObjectA list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.default ObjectSpecifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppLifecycleManagement
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space.Returns union: either
IResolvableorCfnSpace.SpaceAppLifecycleManagementProperty- See Also:
-
getCodeRepositories
A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSpace.CodeRepositoryProperty>- 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
-