Interface AccessPointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AccessPointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.109Z")
@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, oris required.invalid @link
accessPointIddefault StringThe ID of the AccessPoint One of this, oris required.invalid @link
accessPointArndefault 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, oris required.invalid @link
accessPointIdDefault: - determined based on accessPointId
-
getAccessPointId
The ID of the AccessPoint One of this, oris required.invalid @link
accessPointArnDefault: - determined based on accessPointArn
-
getFileSystem
The EFS file system.Default: - no EFS file system
-
builder
- Returns:
- a
AccessPointAttributes.BuilderofAccessPointAttributes
-