Interface CfnAccessPointPropsMixin.PosixUserProperty

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

@Stability(Stable) public static interface CfnAccessPointPropsMixin.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.cfnpropertymixins.services.efs.*;
 PosixUserProperty posixUserProperty = PosixUserProperty.builder()
         .gid("gid")
         .secondaryGids(List.of("secondaryGids"))
         .uid("uid")
         .build();
 

See Also: