interface AccessPointAttributes
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.EFS.AccessPointAttributes | 
  Java | software.amazon.awscdk.services.efs.AccessPointAttributes | 
  Python | aws_cdk.aws_efs.AccessPointAttributes | 
  TypeScript (source) | @aws-cdk/aws-efs » AccessPointAttributes | 
Attributes that can be specified when importing an AccessPoint.
Example
efs.AccessPoint.fromAccessPointAttributes(this, 'ap', {
  accessPointId: 'fsap-1293c4d9832fo0912',
  fileSystem: efs.FileSystem.fromFileSystemAttributes(this, 'efs', {
    fileSystemId: 'fs-099d3e2f',
    securityGroup: ec2.SecurityGroup.fromSecurityGroupId(this, 'sg', 'sg-51530134'),
  }),
});
Properties
| Name | Type | Description | 
|---|---|---|
| access | string | The ARN of the AccessPoint One of this, or {@link accessPointId} is required. | 
| access | string | The ID of the AccessPoint One of this, or {@link accessPointArn} is required. | 
| file | IFile | The EFS file system. | 
accessPointArn?
Type:
string
(optional, default: determined based on accessPointId)
The ARN of the AccessPoint One of this, or {@link accessPointId} is required.
accessPointId?
Type:
string
(optional, default: determined based on accessPointArn)
The ID of the AccessPoint One of this, or {@link accessPointArn} is required.
fileSystem?
Type:
IFile
(optional, default: no EFS file system)
The EFS file system.

 .NET
 Java
 Python
 TypeScript (