Interface CfnS3AccessPointAttachmentPropsMixin.OpenZFSFileSystemIdentityProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnS3AccessPointAttachmentPropsMixin.OpenZFSFileSystemIdentityProperty.Jsii$Proxy
Enclosing class:
CfnS3AccessPointAttachmentPropsMixin

@Stability(Stable) public static interface CfnS3AccessPointAttachmentPropsMixin.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.cfnpropertymixins.services.fsx.*;
 OpenZFSFileSystemIdentityProperty openZFSFileSystemIdentityProperty = OpenZFSFileSystemIdentityProperty.builder()
         .posixUser(OpenZFSPosixFileSystemUserProperty.builder()
                 .gid(123)
                 .secondaryGids(List.of(FileSystemGIDProperty.builder()
                         .gid(123)
                         .build()))
                 .uid(123)
                 .build())
         .type("type")
         .build();
 

See Also: