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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessPoint.PosixUserProperty
static final class
An implementation forCfnAccessPoint.PosixUserProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
getGid()
The POSIX group ID used for all file system operations using this access point.Secondary POSIX group IDs used for all file system operations using this access point.getUid()
The POSIX user ID used for all file system operations using this access point.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGid
The POSIX group ID used for all file system operations using this access point.- See Also:
-
getUid
The POSIX user ID used for all file system operations using this access point.- See Also:
-
getSecondaryGids
Secondary POSIX group IDs used for all file system operations using this access point.- See Also:
-
builder
-