Class AccessPoint
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.efs.AccessPoint
- All Implemented Interfaces:
IConstruct
,IDependable
,IResource
,IAccessPoint
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.088Z")
@Stability(Stable)
public class AccessPoint
extends Resource
implements IAccessPoint
Represents the AccessPoint.
Example:
AccessPoint.fromAccessPointAttributes(this, "ap", AccessPointAttributes.builder() .accessPointId("fsap-1293c4d9832fo0912") .fileSystem(FileSystem.fromFileSystemAttributes(this, "efs", FileSystemAttributes.builder() .fileSystemId("fs-099d3e2f") .securityGroup(SecurityGroup.fromSecurityGroupId(this, "sg", "sg-51530134")) .build())) .build());
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.efs.IAccessPoint
IAccessPoint.Jsii$Default, IAccessPoint.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
AccessPoint
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
AccessPoint
(software.amazon.jsii.JsiiObjectRef objRef) AccessPoint
(software.constructs.Construct scope, String id, AccessPointProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic IAccessPoint
fromAccessPointAttributes
(software.constructs.Construct scope, String id, AccessPointAttributes attrs) Import an existing Access Point by attributes.static IAccessPoint
fromAccessPointId
(software.constructs.Construct scope, String id, String accessPointId) Import an existing Access Point by id.The ARN of the Access Point.The ID of the Access Point.The file system of the access point.Methods inherited from class software.amazon.awscdk.core.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResource
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.constructs.Construct
toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.core.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
AccessPoint
protected AccessPoint(software.amazon.jsii.JsiiObjectRef objRef) -
AccessPoint
protected AccessPoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
AccessPoint
@Stability(Stable) public AccessPoint(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull AccessPointProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromAccessPointAttributes
@Stability(Stable) @NotNull public static IAccessPoint fromAccessPointAttributes(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull AccessPointAttributes attrs) Import an existing Access Point by attributes.- Parameters:
scope
- This parameter is required.id
- This parameter is required.attrs
- This parameter is required.
-
fromAccessPointId
@Stability(Stable) @NotNull public static IAccessPoint fromAccessPointId(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String accessPointId) Import an existing Access Point by id.- Parameters:
scope
- This parameter is required.id
- This parameter is required.accessPointId
- This parameter is required.
-
getAccessPointArn
The ARN of the Access Point.- Specified by:
getAccessPointArn
in interfaceIAccessPoint
-
getAccessPointId
The ID of the Access Point.- Specified by:
getAccessPointId
in interfaceIAccessPoint
-
getFileSystem
The file system of the access point.- Specified by:
getFileSystem
in interfaceIAccessPoint
-