Interface CfnAccessPointProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:30.725Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessPointProps
static final class
An implementation forCfnAccessPointProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAccessPointProps.Builder
builder()
An array of key-value pairs to apply to this resource.default String
The opaque string specified in the request to ensure idempotent creation.The ID of the EFS file system that the access point applies to.default Object
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
The 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.- 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.- See Also:
-
builder
- Returns:
- a
CfnAccessPointProps.Builder
ofCfnAccessPointProps
-