Class CfnAppImageConfigMixinProps
Properties for CfnAppImageConfigPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAppImageConfigMixinProps : ICfnAppImageConfigMixinProps
Syntax (vb)
Public Class CfnAppImageConfigMixinProps Implements ICfnAppImageConfigMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var cfnAppImageConfigMixinProps = new CfnAppImageConfigMixinProps {
AppImageConfigName = "appImageConfigName",
CodeEditorAppImageConfig = new CodeEditorAppImageConfigProperty {
ContainerConfig = new ContainerConfigProperty {
ContainerArguments = new [] { "containerArguments" },
ContainerEntrypoint = new [] { "containerEntrypoint" },
ContainerEnvironmentVariables = new [] { new CustomImageContainerEnvironmentVariableProperty {
Key = "key",
Value = "value"
} }
}
},
JupyterLabAppImageConfig = new JupyterLabAppImageConfigProperty {
ContainerConfig = new ContainerConfigProperty {
ContainerArguments = new [] { "containerArguments" },
ContainerEntrypoint = new [] { "containerEntrypoint" },
ContainerEnvironmentVariables = new [] { new CustomImageContainerEnvironmentVariableProperty {
Key = "key",
Value = "value"
} }
}
},
KernelGatewayImageConfig = new KernelGatewayImageConfigProperty {
FileSystemConfig = new FileSystemConfigProperty {
DefaultGid = 123,
DefaultUid = 123,
MountPath = "mountPath"
},
KernelSpecs = new [] { new KernelSpecProperty {
DisplayName = "displayName",
Name = "name"
} }
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnAppImageConfigMixinProps() | Properties for CfnAppImageConfigPropsMixin. |
Properties
| AppImageConfigName | The name of the AppImageConfig. |
| CodeEditorAppImageConfig | The configuration for the file system and the runtime, such as the environment variables and entry point. |
| JupyterLabAppImageConfig | The configuration for the file system and the runtime, such as the environment variables and entry point. |
| KernelGatewayImageConfig | The configuration for the file system and kernels in the SageMaker AI image. |
| Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnAppImageConfigMixinProps()
Properties for CfnAppImageConfigPropsMixin.
public CfnAppImageConfigMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var cfnAppImageConfigMixinProps = new CfnAppImageConfigMixinProps {
AppImageConfigName = "appImageConfigName",
CodeEditorAppImageConfig = new CodeEditorAppImageConfigProperty {
ContainerConfig = new ContainerConfigProperty {
ContainerArguments = new [] { "containerArguments" },
ContainerEntrypoint = new [] { "containerEntrypoint" },
ContainerEnvironmentVariables = new [] { new CustomImageContainerEnvironmentVariableProperty {
Key = "key",
Value = "value"
} }
}
},
JupyterLabAppImageConfig = new JupyterLabAppImageConfigProperty {
ContainerConfig = new ContainerConfigProperty {
ContainerArguments = new [] { "containerArguments" },
ContainerEntrypoint = new [] { "containerEntrypoint" },
ContainerEnvironmentVariables = new [] { new CustomImageContainerEnvironmentVariableProperty {
Key = "key",
Value = "value"
} }
}
},
KernelGatewayImageConfig = new KernelGatewayImageConfigProperty {
FileSystemConfig = new FileSystemConfigProperty {
DefaultGid = 123,
DefaultUid = 123,
MountPath = "mountPath"
},
KernelSpecs = new [] { new KernelSpecProperty {
DisplayName = "displayName",
Name = "name"
} }
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
AppImageConfigName
The name of the AppImageConfig.
public string? AppImageConfigName { get; set; }
Property Value
Remarks
CodeEditorAppImageConfig
The configuration for the file system and the runtime, such as the environment variables and entry point.
public object? CodeEditorAppImageConfig { get; set; }
Property Value
Remarks
JupyterLabAppImageConfig
The configuration for the file system and the runtime, such as the environment variables and entry point.
public object? JupyterLabAppImageConfig { get; set; }
Property Value
Remarks
KernelGatewayImageConfig
The configuration for the file system and kernels in the SageMaker AI image.
public object? KernelGatewayImageConfig { get; set; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]