Interface CfnAppImageConfig.FileSystemConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAppImageConfig.FileSystemConfigProperty.Jsii$Proxy
Enclosing class:
CfnAppImageConfig

@Stability(Stable) public static interface CfnAppImageConfig.FileSystemConfigProperty extends software.amazon.jsii.JsiiSerializable
The Amazon Elastic File System storage configuration for a SageMaker image.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 FileSystemConfigProperty fileSystemConfigProperty = FileSystemConfigProperty.builder()
         .defaultGid(123)
         .defaultUid(123)
         .mountPath("mountPath")
         .build();
 

See Also: