@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.852Z") @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()
An array of key-value pairs to apply to this resource.
|
default String |
getClientToken()
The opaque string specified in the request to ensure idempotent creation.
|
String |
getFileSystemId()
The ID of the EFS file system that the access point applies to.
|
default Object |
getPosixUser()
The full POSIX identity, including the user ID, group ID, and secondary group IDs on the access point that is used for all file operations by NFS clients using the access point.
|
default Object |
getRootDirectory()
The directory on the Amazon EFS file system that the access point exposes as the root directory to NFS clients using the access point.
|
@Stability(value=Stable) @NotNull String getFileSystemId()
Accepts only the ID format for input when specifying a file system, for example fs-0123456789abcedf2 .
@Stability(value=Stable) @Nullable default Object getAccessPointTags()
For more information, see Tag .
@Stability(value=Stable) @Nullable default String getClientToken()
@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 © 2022. All rights reserved.