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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSpace.SpaceJupyterLabAppSettingsProperty
static final class
An implementation forCfnSpace.SpaceJupyterLabAppSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Settings that are used to configure and manage the lifecycle of JupyterLab applications in a space.default Object
A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.default Object
Specifies 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.- See Also:
-
getCodeRepositories
A list of Git repositories that SageMaker automatically displays to users for cloning in the JupyterLab application.- 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
-