Show / Hide Table of Contents

Class CfnAppImageConfig.KernelGatewayImageConfigProperty

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

Inheritance
System.Object
CfnAppImageConfig.KernelGatewayImageConfigProperty
Implements
CfnAppImageConfig.IKernelGatewayImageConfigProperty
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.AWS.Sagemaker.dll
Syntax (csharp)
public class KernelGatewayImageConfigProperty : Object, CfnAppImageConfig.IKernelGatewayImageConfigProperty
Syntax (vb)
Public Class KernelGatewayImageConfigProperty
    Inherits Object
    Implements CfnAppImageConfig.IKernelGatewayImageConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-kernelgatewayimageconfig.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 kernelGatewayImageConfigProperty = new KernelGatewayImageConfigProperty {
    KernelSpecs = new [] { new KernelSpecProperty {
        Name = "name",

        // the properties below are optional
        DisplayName = "displayName"
    } },

    // the properties below are optional
    FileSystemConfig = new FileSystemConfigProperty {
        DefaultGid = 123,
        DefaultUid = 123,
        MountPath = "mountPath"
    }
};

Synopsis

Constructors

KernelGatewayImageConfigProperty()

Properties

FileSystemConfig

The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.

KernelSpecs

The specification of the Jupyter kernels in the image.

Constructors

KernelGatewayImageConfigProperty()

public KernelGatewayImageConfigProperty()

Properties

FileSystemConfig

The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.

public object FileSystemConfig { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-kernelgatewayimageconfig.html#cfn-sagemaker-appimageconfig-kernelgatewayimageconfig-filesystemconfig

KernelSpecs

The specification of the Jupyter kernels in the image.

public object KernelSpecs { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-kernelgatewayimageconfig.html#cfn-sagemaker-appimageconfig-kernelgatewayimageconfig-kernelspecs

Implements

CfnAppImageConfig.IKernelGatewayImageConfigProperty
Back to top Generated by DocFX