Interface AccessPointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AccessPointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:01.299Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAccessPointAttributes
static final class
An implementation forAccessPointAttributes
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The ARN of the AccessPoint One of this, oraccessPointId
is required.default String
The ID of the AccessPoint One of this, oraccessPointArn
is required.default IFileSystem
The EFS file system.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessPointArn
The ARN of the AccessPoint One of this, oraccessPointId
is required.Default: - determined based on accessPointId
-
getAccessPointId
The ID of the AccessPoint One of this, oraccessPointArn
is required.Default: - determined based on accessPointArn
-
getFileSystem
The EFS file system.Default: - no EFS file system
-
builder
- Returns:
- a
AccessPointAttributes.Builder
ofAccessPointAttributes
-