Interface CfnAppImageConfigMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppImageConfigMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.853Z")
@Stability(Stable)
public interface CfnAppImageConfigMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAppImageConfigPropsMixin.
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.*;
CfnAppImageConfigMixinProps cfnAppImageConfigMixinProps = CfnAppImageConfigMixinProps.builder()
.appImageConfigName("appImageConfigName")
.codeEditorAppImageConfig(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())
.jupyterLabAppImageConfig(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())
.kernelGatewayImageConfig(KernelGatewayImageConfigProperty.builder()
.fileSystemConfig(FileSystemConfigProperty.builder()
.defaultGid(123)
.defaultUid(123)
.mountPath("mountPath")
.build())
.kernelSpecs(List.of(KernelSpecProperty.builder()
.displayName("displayName")
.name("name")
.build()))
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppImageConfigMixinPropsstatic final classAn implementation forCfnAppImageConfigMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the AppImageConfig.default ObjectThe configuration for the file system and the runtime, such as the environment variables and entry point.default ObjectThe configuration for the file system and the runtime, such as the environment variables and entry point.default ObjectThe configuration for the file system and kernels in the SageMaker AI image.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppImageConfigName
The name of the AppImageConfig.Must be unique to your account.
- See Also:
-
getCodeEditorAppImageConfig
The configuration for the file system and the runtime, such as the environment variables and entry point.Returns union: either
IResolvableorCfnAppImageConfigPropsMixin.CodeEditorAppImageConfigProperty- See Also:
-
getJupyterLabAppImageConfig
The configuration for the file system and the runtime, such as the environment variables and entry point.Returns union: either
IResolvableorCfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty- See Also:
-
getKernelGatewayImageConfig
The configuration for the file system and kernels in the SageMaker AI image.Returns union: either
IResolvableorCfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
-