@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.849Z") @Stability(value=Stable) public interface AccessPointProps extends software.amazon.jsii.JsiiSerializable, AccessPointOptions
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.efs.*;
FileSystem fileSystem;
AccessPointProps accessPointProps = AccessPointProps.builder()
.fileSystem(fileSystem)
// the properties below are optional
.createAcl(Acl.builder()
.ownerGid("ownerGid")
.ownerUid("ownerUid")
.permissions("permissions")
.build())
.path("path")
.posixUser(PosixUser.builder()
.gid("gid")
.uid("uid")
// the properties below are optional
.secondaryGids(List.of("secondaryGids"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
AccessPointProps.Builder
A builder for
AccessPointProps |
static class |
AccessPointProps.Jsii$Proxy
An implementation for
AccessPointProps |
| Modifier and Type | Method and Description |
|---|---|
static AccessPointProps.Builder |
builder() |
IFileSystem |
getFileSystem()
The efs filesystem.
|
getCreateAcl, getPath, getPosixUser@Stability(value=Stable) @NotNull IFileSystem getFileSystem()
@Stability(value=Stable) static AccessPointProps.Builder builder()
builder in interface AccessPointOptionsAccessPointProps.Builder of AccessPointPropsCopyright © 2022. All rights reserved.