Interface CfnProject.ProjectFileSystemLocationProperty

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

@Stability(Stable) public static interface CfnProject.ProjectFileSystemLocationProperty extends software.amazon.jsii.JsiiSerializable
Information about a file system created by Amazon Elastic File System (EFS).

For more information, see What Is Amazon Elastic 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.codebuild.*;
 ProjectFileSystemLocationProperty projectFileSystemLocationProperty = ProjectFileSystemLocationProperty.builder()
         .identifier("identifier")
         .location("location")
         .mountPoint("mountPoint")
         .type("type")
         // the properties below are optional
         .mountOptions("mountOptions")
         .build();
 

See Also: