Interface CfnUser.PosixProfileProperty

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

@Stability(Stable) public static interface CfnUser.PosixProfileProperty extends software.amazon.jsii.JsiiSerializable
The full POSIX identity, including user ID ( Uid ), group ID ( Gid ), and any secondary groups IDs ( SecondaryGids ), that controls your users' access to your Amazon EFS file systems.

The POSIX permissions that are set on files and directories in your file system determine the level of access your users get when transferring files into and out of your Amazon EFS file systems.

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.transfer.*;
 PosixProfileProperty posixProfileProperty = PosixProfileProperty.builder()
         .gid(123)
         .uid(123)
         // the properties below are optional
         .secondaryGids(List.of(123))
         .build();
 

See Also: