Interface CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty.Jsii$Proxy
- Enclosing class:
CfnS3AccessPointAttachment
@Stability(Stable)
public static interface CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty
extends software.amazon.jsii.JsiiSerializable
The FSx for OpenZFS file system user that is used for authorizing all file access requests that are made using the S3 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.fsx.*;
OpenZFSPosixFileSystemUserProperty openZFSPosixFileSystemUserProperty = OpenZFSPosixFileSystemUserProperty.builder()
.gid(123)
.uid(123)
// the properties below are optional
.secondaryGids(List.of(FileSystemGIDProperty.builder()
.gid(123)
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGid
The GID of the file system user.- See Also:
-
getUid
The UID of the file system user.- See Also:
-
getSecondaryGids
The list of secondary GIDs for the file system user.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnS3AccessPointAttachment.FileSystemGIDProperty>- See Also:
-
builder
@Stability(Stable) static CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty.Builder builder()
-