@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:06.319Z") @Stability(value=Stable) public interface CfnAccessPointProps 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.efs.*;
CfnAccessPointProps cfnAccessPointProps = CfnAccessPointProps.builder()
.fileSystemId("fileSystemId")
// the properties below are optional
.accessPointTags(List.of(AccessPointTagProperty.builder()
.key("key")
.value("value")
.build()))
.clientToken("clientToken")
.posixUser(PosixUserProperty.builder()
.gid("gid")
.uid("uid")
// the properties below are optional
.secondaryGids(List.of("secondaryGids"))
.build())
.rootDirectory(RootDirectoryProperty.builder()
.creationInfo(CreationInfoProperty.builder()
.ownerGid("ownerGid")
.ownerUid("ownerUid")
.permissions("permissions")
.build())
.path("path")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAccessPointProps.Builder
A builder for
CfnAccessPointProps |
static class |
CfnAccessPointProps.Jsii$Proxy
An implementation for
CfnAccessPointProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAccessPointProps.Builder |
builder() |
default Object |
getAccessPointTags()
`AWS::EFS::AccessPoint.AccessPointTags`.
|
default String |
getClientToken()
`AWS::EFS::AccessPoint.ClientToken`.
|
String |
getFileSystemId()
`AWS::EFS::AccessPoint.FileSystemId`.
|
default Object |
getPosixUser()
`AWS::EFS::AccessPoint.PosixUser`.
|
default Object |
getRootDirectory()
`AWS::EFS::AccessPoint.RootDirectory`.
|
@Stability(value=Stable) @Nullable default Object getAccessPointTags()
@Stability(value=Stable) @Nullable default String getClientToken()
@Stability(value=Stable) @NotNull String getFileSystemId()
@Stability(value=Stable) @Nullable default Object getPosixUser()
@Stability(value=Stable) @Nullable default Object getRootDirectory()
@Stability(value=Stable) static CfnAccessPointProps.Builder builder()
CfnAccessPointProps.Builder of CfnAccessPointPropsCopyright © 2021. All rights reserved.