Interface CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty.Jsii$Proxy
- Enclosing class:
CfnS3AccessPointAttachment
@Stability(Stable)
public static interface CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the file system user identity that will be 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.*; OpenZFSFileSystemIdentityProperty openZFSFileSystemIdentityProperty = OpenZFSFileSystemIdentityProperty.builder() .posixUser(OpenZFSPosixFileSystemUserProperty.builder() .gid(123) .uid(123) // the properties below are optional .secondaryGids(List.of(FileSystemGIDProperty.builder() .gid(123) .build())) .build()) .type("type") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPosixUser
Specifies the UID and GIDs of the file system POSIX user.- See Also:
-
getType
Specifies the FSx for OpenZFS user identity type, accepts onlyPOSIX
.- See Also:
-
builder
@Stability(Stable) static CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty.Builder builder()
-