Interface CfnUserProfile.JupyterLabAppSettingsProperty

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

@Stability(Stable) public static interface CfnUserProfile.JupyterLabAppSettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for the JupyterLab application.

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.*;
 JupyterLabAppSettingsProperty jupyterLabAppSettingsProperty = JupyterLabAppSettingsProperty.builder()
         .codeRepositories(List.of(CodeRepositoryProperty.builder()
                 .repositoryUrl("repositoryUrl")
                 .build()))
         .customImages(List.of(CustomImageProperty.builder()
                 .appImageConfigName("appImageConfigName")
                 .imageName("imageName")
                 // the properties below are optional
                 .imageVersionNumber(123)
                 .build()))
         .defaultResourceSpec(ResourceSpecProperty.builder()
                 .instanceType("instanceType")
                 .lifecycleConfigArn("lifecycleConfigArn")
                 .sageMakerImageArn("sageMakerImageArn")
                 .sageMakerImageVersionArn("sageMakerImageVersionArn")
                 .build())
         .lifecycleConfigArns(List.of("lifecycleConfigArns"))
         .build();
 

See Also: