Interface CfnAccessPoint.RootDirectoryProperty

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

@Stability(Stable) public static interface CfnAccessPoint.RootDirectoryProperty 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.*;
 RootDirectoryProperty rootDirectoryProperty = RootDirectoryProperty.builder()
         .creationPermissions(CreationPermissionsProperty.builder()
                 .ownerGid("ownerGid")
                 .ownerUid("ownerUid")
                 .permissions("permissions")
                 .build())
         .path("path")
         .build();
 

See Also: