Interface CfnAccessPointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.120Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPointPropsstatic final classAn implementation forCfnAccessPointProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAccessPointProps.Builderbuilder()default ObjectAn 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 Amazon 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. -
getAccessPointTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
getClientToken
The opaque string specified in the request to ensure idempotent creation. -
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. -
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. -
builder
- Returns:
- a
CfnAccessPointProps.BuilderofCfnAccessPointProps
-