Interface CfnAppImageConfig.CodeEditorAppImageConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppImageConfig.CodeEditorAppImageConfigProperty.Jsii$Proxy
- Enclosing class:
CfnAppImageConfig
@Stability(Stable)
public static interface CfnAppImageConfig.CodeEditorAppImageConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for the file system and kernels in a SageMaker image running as a Code Editor 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.services.sagemaker.*;
CodeEditorAppImageConfigProperty codeEditorAppImageConfigProperty = CodeEditorAppImageConfigProperty.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 classA builder forCfnAppImageConfig.CodeEditorAppImageConfigPropertystatic final classAn implementation forCfnAppImageConfig.CodeEditorAppImageConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerConfig
The container configuration for a SageMaker image.Returns union: either
IResolvableorCfnAppImageConfig.ContainerConfigProperty- See Also:
-
builder
-