Interface CfnUserPropsMixin.PosixProfileProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPropsMixin.PosixProfileProperty.Jsii$Proxy
- Enclosing class:
CfnUserPropsMixin
@Stability(Stable)
public static interface CfnUserPropsMixin.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.cfnpropertymixins.services.transfer.*;
PosixProfileProperty posixProfileProperty = PosixProfileProperty.builder()
.gid(123)
.secondaryGids(List.of(123))
.uid(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPropsMixin.PosixProfilePropertystatic final classAn implementation forCfnUserPropsMixin.PosixProfileProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumbergetGid()The POSIX group ID used for all EFS operations by this user.default ObjectThe secondary POSIX group IDs used for all EFS operations by this user.default NumbergetUid()The POSIX user ID used for all EFS operations by this user.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:
-
getSecondaryGids
The secondary POSIX group IDs used for all EFS operations by this user.Returns union: either Listinvalid input: '<'
Number> orIResolvable- See Also:
-
getUid
The POSIX user ID used for all EFS operations by this user.- See Also:
-
builder
-