Class CfnAccessPoint
- All Implemented Interfaces:
IInspectable,IAccessPointRef,IEnvironmentAware,ITaggable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
AWS::EFS::AccessPoint resource creates an EFS access point.
An access point is an application-specific view into an EFS file system that applies an operating system user and group, and a file system path, to any file system request made through the access point. The operating system user and group override any identity information provided by the NFS client. The file system path is exposed as the access point's root directory. Applications using the access point can only access data in its own directory and below. To learn more, see Mounting a file system using EFS access points .
This operation requires permissions for the elasticfilesystem:CreateAccessPoint action.
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.*;
CfnAccessPoint cfnAccessPoint = CfnAccessPoint.Builder.create(this, "MyCfnAccessPoint")
.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 TypeClassDescriptionstatic interfaceA tag is a key-value pair attached to a file system.static final classA fluent builder forCfnAccessPoint.static interfaceRequired if theRootDirectory>Pathspecified does not exist.static interfaceThe full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.static interfaceSpecifies the directory on the Amazon EFS file system that the access point provides access to.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.efs.IAccessPointRef
IAccessPointRef.Jsii$Default, IAccessPointRef.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnAccessPoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnAccessPoint(software.amazon.jsii.JsiiObjectRef objRef) CfnAccessPoint(software.constructs.Construct scope, String id, CfnAccessPointProps props) Create a newAWS::EFS::AccessPoint. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringarnForAccessPoint(IAccessPointRef resource) static IAccessPointReffromAccessPointArn(software.constructs.Construct scope, String id, String arn) Creates a new IAccessPointRef from an ARN.static IAccessPointReffromAccessPointId(software.constructs.Construct scope, String id, String accessPointId) Creates a new IAccessPointRef from a accessPointId.A reference to a AccessPoint resource.An array of key-value pairs to apply to this resource.The ID of the EFS access point.The Amazon Resource Name (ARN) of the access point.The opaque string specified in the request to ensure idempotent creation.The ID of the EFS file system that the access point applies to.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.The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.getTags()Tag Manager which manages the tags for this resource.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidAn array of key-value pairs to apply to this resource.voidsetClientToken(String value) The opaque string specified in the request to ensure idempotent creation.voidsetFileSystemId(String value) The ID of the EFS file system that the access point applies to.voidsetPosixUser(IResolvable value) 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.voidThe 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.voidsetRootDirectory(IResolvable value) The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.voidThe 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 class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnAccessPoint
protected CfnAccessPoint(software.amazon.jsii.JsiiObjectRef objRef) -
CfnAccessPoint
protected CfnAccessPoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnAccessPoint
@Stability(Stable) public CfnAccessPoint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAccessPointProps props) Create a newAWS::EFS::AccessPoint.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
arnForAccessPoint
@Stability(Stable) @NotNull public static String arnForAccessPoint(@NotNull IAccessPointRef resource) - Parameters:
resource- This parameter is required.
-
fromAccessPointArn
@Stability(Stable) @NotNull public static IAccessPointRef fromAccessPointArn(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String arn) Creates a new IAccessPointRef from an ARN.- Parameters:
scope- This parameter is required.id- This parameter is required.arn- This parameter is required.
-
fromAccessPointId
@Stability(Stable) @NotNull public static IAccessPointRef fromAccessPointId(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String accessPointId) Creates a new IAccessPointRef from a accessPointId.- Parameters:
scope- This parameter is required.id- This parameter is required.accessPointId- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAccessPointRef
A reference to a AccessPoint resource.- Specified by:
getAccessPointRefin interfaceIAccessPointRef
-
getAttrAccessPointId
The ID of the EFS access point. -
getAttrArn
The Amazon Resource Name (ARN) of the access point. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getFileSystemId
The ID of the EFS file system that the access point applies to. -
setFileSystemId
The ID of the EFS file system that the access point applies to. -
getAccessPointTagsRaw
@Stability(Stable) @Nullable public List<CfnAccessPoint.AccessPointTagProperty> getAccessPointTagsRaw()An array of key-value pairs to apply to this resource. -
setAccessPointTagsRaw
@Stability(Stable) public void setAccessPointTagsRaw(@Nullable List<CfnAccessPoint.AccessPointTagProperty> value) An array of key-value pairs to apply to this resource. -
getClientToken
The opaque string specified in the request to ensure idempotent creation. -
setClientToken
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.Returns union: either
IResolvableorCfnAccessPoint.PosixUserProperty -
setPosixUser
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. -
setPosixUser
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 EFS file system that the access point exposes as the root directory to NFS clients using the access point.Returns union: either
IResolvableorCfnAccessPoint.RootDirectoryProperty -
setRootDirectory
The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point. -
setRootDirectory
@Stability(Stable) public void setRootDirectory(@Nullable CfnAccessPoint.RootDirectoryProperty value) The directory on the EFS file system that the access point exposes as the root directory to NFS clients using the access point.
-