Interface CfnS3AccessPointAttachmentMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:59.537Z") @Stability(Stable) public interface CfnS3AccessPointAttachmentMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnS3AccessPointAttachmentPropsMixin.

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.*;
 Object policy;
 CfnS3AccessPointAttachmentMixinProps cfnS3AccessPointAttachmentMixinProps = CfnS3AccessPointAttachmentMixinProps.builder()
         .name("name")
         .ontapConfiguration(S3AccessPointOntapConfigurationProperty.builder()
                 .fileSystemIdentity(OntapFileSystemIdentityProperty.builder()
                         .type("type")
                         .unixUser(OntapUnixFileSystemUserProperty.builder()
                                 .name("name")
                                 .build())
                         .windowsUser(OntapWindowsFileSystemUserProperty.builder()
                                 .name("name")
                                 .build())
                         .build())
                 .volumeId("volumeId")
                 .build())
         .openZfsConfiguration(S3AccessPointOpenZFSConfigurationProperty.builder()
                 .fileSystemIdentity(OpenZFSFileSystemIdentityProperty.builder()
                         .posixUser(OpenZFSPosixFileSystemUserProperty.builder()
                                 .gid(123)
                                 .secondaryGids(List.of(FileSystemGIDProperty.builder()
                                         .gid(123)
                                         .build()))
                                 .uid(123)
                                 .build())
                         .type("type")
                         .build())
                 .volumeId("volumeId")
                 .build())
         .s3AccessPoint(S3AccessPointProperty.builder()
                 .alias("alias")
                 .policy(policy)
                 .resourceArn("resourceArn")
                 .vpcConfiguration(S3AccessPointVpcConfigurationProperty.builder()
                         .vpcId("vpcId")
                         .build())
                 .build())
         .type("type")
         .build();
 

See Also: