Interface CfnAccessPointMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-14T18:32:18.705Z") @Stability(Stable) public interface CfnAccessPointMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnAccessPointPropsMixin.

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.s3files.*;
 CfnAccessPointMixinProps cfnAccessPointMixinProps = CfnAccessPointMixinProps.builder()
         .clientToken("clientToken")
         .fileSystemId("fileSystemId")
         .posixUser(PosixUserProperty.builder()
                 .gid("gid")
                 .secondaryGids(List.of("secondaryGids"))
                 .uid("uid")
                 .build())
         .rootDirectory(RootDirectoryProperty.builder()
                 .creationPermissions(CreationPermissionsProperty.builder()
                         .ownerGid("ownerGid")
                         .ownerUid("ownerUid")
                         .permissions("permissions")
                         .build())
                 .path("path")
                 .build())
         .tags(List.of(AccessPointTagProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: