Interface CfnUserProfile.JupyterServerAppSettingsProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnUserProfile.JupyterServerAppSettingsProperty.Jsii$Proxy
- Enclosing class:
- CfnUserProfile
@Stability(Stable)
public static interface CfnUserProfile.JupyterServerAppSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The JupyterServer app settings.
 
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.*;
 JupyterServerAppSettingsProperty jupyterServerAppSettingsProperty = JupyterServerAppSettingsProperty.builder()
         .defaultResourceSpec(ResourceSpecProperty.builder()
                 .instanceType("instanceType")
                 .sageMakerImageArn("sageMakerImageArn")
                 .sageMakerImageVersionArn("sageMakerImageVersionArn")
                 .build())
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserProfile.JupyterServerAppSettingsPropertystatic final classAn implementation forCfnUserProfile.JupyterServerAppSettingsProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getDefaultResourceSpecThe default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterServer app.
- 
builder
 
-