Show / Hide Table of Contents

Class CfnAppImageConfig.CodeEditorAppImageConfigProperty

The configuration for the file system and kernels in a SageMaker image running as a Code Editor app.

Inheritance
object
CfnAppImageConfig.CodeEditorAppImageConfigProperty
Implements
CfnAppImageConfig.ICodeEditorAppImageConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAppImageConfig.CodeEditorAppImageConfigProperty : CfnAppImageConfig.ICodeEditorAppImageConfigProperty
Syntax (vb)
Public Class CfnAppImageConfig.CodeEditorAppImageConfigProperty Implements CfnAppImageConfig.ICodeEditorAppImageConfigProperty
Remarks

The FileSystemConfig object is not supported.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-codeeditorappimageconfig.html

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.AWS.Sagemaker;

             var codeEditorAppImageConfigProperty = new CodeEditorAppImageConfigProperty {
                 ContainerConfig = new ContainerConfigProperty {
                     ContainerArguments = new [] { "containerArguments" },
                     ContainerEntrypoint = new [] { "containerEntrypoint" },
                     ContainerEnvironmentVariables = new [] { new CustomImageContainerEnvironmentVariableProperty {
                         Key = "key",
                         Value = "value"
                     } }
                 }
             };

Synopsis

Constructors

CodeEditorAppImageConfigProperty()

The configuration for the file system and kernels in a SageMaker image running as a Code Editor app.

Properties

ContainerConfig

The container configuration for a SageMaker image.

Constructors

CodeEditorAppImageConfigProperty()

The configuration for the file system and kernels in a SageMaker image running as a Code Editor app.

public CodeEditorAppImageConfigProperty()
Remarks

The FileSystemConfig object is not supported.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-codeeditorappimageconfig.html

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.AWS.Sagemaker;

             var codeEditorAppImageConfigProperty = new CodeEditorAppImageConfigProperty {
                 ContainerConfig = new ContainerConfigProperty {
                     ContainerArguments = new [] { "containerArguments" },
                     ContainerEntrypoint = new [] { "containerEntrypoint" },
                     ContainerEnvironmentVariables = new [] { new CustomImageContainerEnvironmentVariableProperty {
                         Key = "key",
                         Value = "value"
                     } }
                 }
             };

Properties

ContainerConfig

The container configuration for a SageMaker image.

public object? ContainerConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-codeeditorappimageconfig.html#cfn-sagemaker-appimageconfig-codeeditorappimageconfig-containerconfig

Implements

CfnAppImageConfig.ICodeEditorAppImageConfigProperty
Back to top Generated by DocFX