CfnAppImageConfigMixinProps
- class aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnAppImageConfigMixinProps(*, app_image_config_name=None, code_editor_app_image_config=None, jupyter_lab_app_image_config=None, kernel_gateway_image_config=None, tags=None)
Bases:
objectProperties for CfnAppImageConfigPropsMixin.
- Parameters:
app_image_config_name (
Optional[str]) – The name of the AppImageConfig. Must be unique to your account.code_editor_app_image_config (
Union[IResolvable,CodeEditorAppImageConfigProperty,Dict[str,Any],None]) – The configuration for the file system and the runtime, such as the environment variables and entry point.jupyter_lab_app_image_config (
Union[IResolvable,JupyterLabAppImageConfigProperty,Dict[str,Any],None]) – The configuration for the file system and the runtime, such as the environment variables and entry point.kernel_gateway_image_config (
Union[IResolvable,KernelGatewayImageConfigProperty,Dict[str,Any],None]) – The configuration for the file system and kernels in the SageMaker AI image.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_sagemaker import mixins as sagemaker_mixins cfn_app_image_config_mixin_props = sagemaker_mixins.CfnAppImageConfigMixinProps( app_image_config_name="appImageConfigName", code_editor_app_image_config=sagemaker_mixins.CfnAppImageConfigPropsMixin.CodeEditorAppImageConfigProperty( container_config=sagemaker_mixins.CfnAppImageConfigPropsMixin.ContainerConfigProperty( container_arguments=["containerArguments"], container_entrypoint=["containerEntrypoint"], container_environment_variables=[sagemaker_mixins.CfnAppImageConfigPropsMixin.CustomImageContainerEnvironmentVariableProperty( key="key", value="value" )] ) ), jupyter_lab_app_image_config=sagemaker_mixins.CfnAppImageConfigPropsMixin.JupyterLabAppImageConfigProperty( container_config=sagemaker_mixins.CfnAppImageConfigPropsMixin.ContainerConfigProperty( container_arguments=["containerArguments"], container_entrypoint=["containerEntrypoint"], container_environment_variables=[sagemaker_mixins.CfnAppImageConfigPropsMixin.CustomImageContainerEnvironmentVariableProperty( key="key", value="value" )] ) ), kernel_gateway_image_config=sagemaker_mixins.CfnAppImageConfigPropsMixin.KernelGatewayImageConfigProperty( file_system_config=sagemaker_mixins.CfnAppImageConfigPropsMixin.FileSystemConfigProperty( default_gid=123, default_uid=123, mount_path="mountPath" ), kernel_specs=[sagemaker_mixins.CfnAppImageConfigPropsMixin.KernelSpecProperty( display_name="displayName", name="name" )] ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- app_image_config_name
The name of the AppImageConfig.
Must be unique to your account.
- code_editor_app_image_config
The configuration for the file system and the runtime, such as the environment variables and entry point.
- jupyter_lab_app_image_config
The configuration for the file system and the runtime, such as the environment variables and entry point.
- kernel_gateway_image_config
The configuration for the file system and kernels in the SageMaker AI image.