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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUser.PosixProfileProperty
static final class
An implementation forCfnUser.PosixProfileProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGid
The POSIX group ID used for all EFS operations by this user.- See Also:
-
getUid
The POSIX user ID used for all EFS operations by this user.- See Also:
-
getSecondaryGids
The secondary POSIX group IDs used for all EFS operations by this user.- See Also:
-
builder
-