Interface CfnAccessPoint.PosixUserProperty

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

@Stability(Stable) public static interface CfnAccessPoint.PosixUserProperty extends software.amazon.jsii.JsiiSerializable
The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.

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.efs.*;
 PosixUserProperty posixUserProperty = PosixUserProperty.builder()
         .gid("gid")
         .uid("uid")
         // the properties below are optional
         .secondaryGids(List.of("secondaryGids"))
         .build();
 

See Also: