Show / Hide Table of Contents

Class CfnDomain.EFSFileSystemConfigProperty

The settings for assigning a custom Amazon EFS file system to a user profile or space for an Amazon SageMaker AI Domain.

Inheritance
object
CfnDomain.EFSFileSystemConfigProperty
Implements
CfnDomain.IEFSFileSystemConfigProperty
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 CfnDomain.EFSFileSystemConfigProperty : CfnDomain.IEFSFileSystemConfigProperty
Syntax (vb)
Public Class CfnDomain.EFSFileSystemConfigProperty Implements CfnDomain.IEFSFileSystemConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-efsfilesystemconfig.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 eFSFileSystemConfigProperty = new EFSFileSystemConfigProperty {
                 FileSystemId = "fileSystemId",

                 // the properties below are optional
                 FileSystemPath = "fileSystemPath"
             };

Synopsis

Constructors

EFSFileSystemConfigProperty()

The settings for assigning a custom Amazon EFS file system to a user profile or space for an Amazon SageMaker AI Domain.

Properties

FileSystemId

The ID of your Amazon EFS file system.

FileSystemPath

The path to the file system directory that is accessible in Amazon SageMaker AI Studio.

Constructors

EFSFileSystemConfigProperty()

The settings for assigning a custom Amazon EFS file system to a user profile or space for an Amazon SageMaker AI Domain.

public EFSFileSystemConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-efsfilesystemconfig.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 eFSFileSystemConfigProperty = new EFSFileSystemConfigProperty {
                 FileSystemId = "fileSystemId",

                 // the properties below are optional
                 FileSystemPath = "fileSystemPath"
             };

Properties

FileSystemId

The ID of your Amazon EFS file system.

public string FileSystemId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-efsfilesystemconfig.html#cfn-sagemaker-domain-efsfilesystemconfig-filesystemid

FileSystemPath

The path to the file system directory that is accessible in Amazon SageMaker AI Studio.

public string? FileSystemPath { get; set; }
Property Value

string

Remarks

Permitted users can access only this directory and below.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-efsfilesystemconfig.html#cfn-sagemaker-domain-efsfilesystemconfig-filesystempath

Implements

CfnDomain.IEFSFileSystemConfigProperty
Back to top Generated by DocFX