Interface AccessPointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AccessPointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:04.305Z")
@Stability(Stable)
public interface AccessPointAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes that can be specified when importing an 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 ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAccessPointAttributesstatic final classAn implementation forAccessPointAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the AccessPoint One of this, oraccessPointIdis required.default StringThe ID of the AccessPoint One of this, oraccessPointArnis required.default IFileSystemThe EFS file system.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessPointArn
The ARN of the AccessPoint One of this, oraccessPointIdis required.Default: - determined based on accessPointId
-
getAccessPointId
The ID of the AccessPoint One of this, oraccessPointArnis required.Default: - determined based on accessPointArn
-
getFileSystem
The EFS file system.Default: - no EFS file system
-
builder
- Returns:
- a
AccessPointAttributes.BuilderofAccessPointAttributes
-