Interface CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty

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

@Stability(Stable) public static interface CfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.

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.*;
 S3AccessPointOpenZFSConfigurationProperty s3AccessPointOpenZFSConfigurationProperty = S3AccessPointOpenZFSConfigurationProperty.builder()
         .fileSystemIdentity(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())
         .volumeId("volumeId")
         .build();
 

See Also: