Update App Image Config
sagemaker_update_app_image_config | R Documentation |
Updates the properties of an AppImageConfig¶
Description¶
Updates the properties of an AppImageConfig.
Usage¶
sagemaker_update_app_image_config(AppImageConfigName,
KernelGatewayImageConfig, JupyterLabAppImageConfig,
CodeEditorAppImageConfig)
Arguments¶
AppImageConfigName |
[required] The name of the AppImageConfig to update. |
KernelGatewayImageConfig |
The new KernelGateway app to run on the image. |
JupyterLabAppImageConfig |
The JupyterLab app running on the image. |
CodeEditorAppImageConfig |
The Code Editor app running on the image. |
Value¶
A list with the following syntax:
list(
AppImageConfigArn = "string"
)
Request syntax¶
svc$update_app_image_config(
AppImageConfigName = "string",
KernelGatewayImageConfig = list(
KernelSpecs = list(
list(
Name = "string",
DisplayName = "string"
)
),
FileSystemConfig = list(
MountPath = "string",
DefaultUid = 123,
DefaultGid = 123
)
),
JupyterLabAppImageConfig = list(
FileSystemConfig = list(
MountPath = "string",
DefaultUid = 123,
DefaultGid = 123
),
ContainerConfig = list(
ContainerArguments = list(
"string"
),
ContainerEntrypoint = list(
"string"
),
ContainerEnvironmentVariables = list(
"string"
)
)
),
CodeEditorAppImageConfig = list(
FileSystemConfig = list(
MountPath = "string",
DefaultUid = 123,
DefaultGid = 123
),
ContainerConfig = list(
ContainerArguments = list(
"string"
),
ContainerEntrypoint = list(
"string"
),
ContainerEnvironmentVariables = list(
"string"
)
)
)
)