Interface CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty.Jsii$Proxy
- Enclosing class:
CfnAppImageConfigPropsMixin
@Stability(Stable)
public static interface CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for the file system and kernels in a SageMaker AI image running as a JupyterLab app.
The FileSystemConfig object is not supported.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
JupyterLabAppImageConfigProperty jupyterLabAppImageConfigProperty = JupyterLabAppImageConfigProperty.builder()
.containerConfig(ContainerConfigProperty.builder()
.containerArguments(List.of("containerArguments"))
.containerEntrypoint(List.of("containerEntrypoint"))
.containerEnvironmentVariables(List.of(CustomImageContainerEnvironmentVariableProperty.builder()
.key("key")
.value("value")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerConfig
The configuration used to run the application image container.Returns union: either
IResolvableorCfnAppImageConfigPropsMixin.ContainerConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty.Builder builder()
-