@Stability(value=Stable)
public static interface CfnAccessPoint.PosixUserProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAccessPoint.PosixUserProperty.Builder
A builder for
CfnAccessPoint.PosixUserProperty |
static class |
CfnAccessPoint.PosixUserProperty.Jsii$Proxy
An implementation for
CfnAccessPoint.PosixUserProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAccessPoint.PosixUserProperty.Builder |
builder() |
String |
getGid()
The POSIX group ID used for all file system operations using this access point.
|
default List<String> |
getSecondaryGids()
Secondary POSIX group IDs used for all file system operations using this access point.
|
String |
getUid()
The POSIX user ID used for all file system operations using this access point.
|
@Stability(value=Stable) @NotNull String getGid()
@Stability(value=Stable) @NotNull String getUid()
@Stability(value=Stable) @Nullable default List<String> getSecondaryGids()
@Stability(value=Stable) static CfnAccessPoint.PosixUserProperty.Builder builder()
Copyright © 2022. All rights reserved.