Interface CfnS3AccessPointAttachmentProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnS3AccessPointAttachmentProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-16T11:43:15.179Z") @Stability(Stable) public interface CfnS3AccessPointAttachmentProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnS3AccessPointAttachment.

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.*;
 Object policy;
 CfnS3AccessPointAttachmentProps cfnS3AccessPointAttachmentProps = CfnS3AccessPointAttachmentProps.builder()
         .name("name")
         .openZfsConfiguration(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())
         .type("type")
         // the properties below are optional
         .s3AccessPoint(S3AccessPointProperty.builder()
                 .alias("alias")
                 .policy(policy)
                 .resourceArn("resourceArn")
                 .vpcConfiguration(S3AccessPointVpcConfigurationProperty.builder()
                         .vpcId("vpcId")
                         .build())
                 .build())
         .build();
 

See Also: