Interface CfnAccessPointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:04.319Z")
@Stability(Stable)
public interface CfnAccessPointProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAccessPoint.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPointPropsstatic final classAn implementation forCfnAccessPointProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAccessPointProps.Builderbuilder()An array of key-value pairs to apply to this resource.default StringThe opaque string specified in the request to ensure idempotent creation.The ID of the EFS file system that the access point applies to.default ObjectThe 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 ObjectThe directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFileSystemId
The ID of the EFS file system that the access point applies to.Accepts only the ID format for input when specifying a file system, for example
fs-0123456789abcedf2.- See Also:
-
getAccessPointTags
@Stability(Stable) @Nullable default List<CfnAccessPoint.AccessPointTagProperty> getAccessPointTags()An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
getClientToken
The opaque string specified in the request to ensure idempotent creation.- See Also:
-
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.Returns union: either
IResolvableorCfnAccessPoint.PosixUserProperty- See Also:
-
getRootDirectory
The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.Returns union: either
IResolvableorCfnAccessPoint.RootDirectoryProperty- See Also:
-
builder
- Returns:
- a
CfnAccessPointProps.BuilderofCfnAccessPointProps
-