Interface CfnAccessPoint.PosixUserProperty

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

@Stability(Stable) public static interface CfnAccessPoint.PosixUserProperty extends software.amazon.jsii.JsiiSerializable
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.s3files.*;
 PosixUserProperty posixUserProperty = PosixUserProperty.builder()
         .gid("gid")
         .uid("uid")
         // the properties below are optional
         .secondaryGids(List.of("secondaryGids"))
         .build();
 

See Also: