Interface CfnDomain.S3FileSystemConfigProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnDomain.S3FileSystemConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnDomain
@Stability(Stable)
public static interface CfnDomain.S3FileSystemConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for the custom Amazon S3 file system.
 
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.*;
 S3FileSystemConfigProperty s3FileSystemConfigProperty = S3FileSystemConfigProperty.builder()
         .mountPath("mountPath")
         .s3Uri("s3Uri")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.S3FileSystemConfigPropertystatic final classAn implementation forCfnDomain.S3FileSystemConfigProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getMountPathThe file system path where the Amazon S3 storage location will be mounted within the Amazon SageMaker Studio environment.- See Also:
 
- 
getS3UriThe Amazon S3 URI of the S3 file system configuration.- See Also:
 
- 
builder
 
-