Interface CfnProjectPropsMixin.ProjectFileSystemLocationProperty

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

@Stability(Stable) public static interface CfnProjectPropsMixin.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.cfnpropertymixins.services.codebuild.*;
 ProjectFileSystemLocationProperty projectFileSystemLocationProperty = ProjectFileSystemLocationProperty.builder()
         .identifier("identifier")
         .location("location")
         .mountOptions("mountOptions")
         .mountPoint("mountPoint")
         .type("type")
         .build();
 

See Also: