AccessPointAttributes

class aws_cdk.aws_efs.AccessPointAttributes(*, access_point_arn=None, access_point_id=None, file_system=None)

Bases: object

Attributes that can be specified when importing an AccessPoint.

Parameters:
  • access_point_arn (Optional[str]) – The ARN of the AccessPoint One of this, or accessPointId is required. Default: - determined based on accessPointId

  • access_point_id (Optional[str]) – The ID of the AccessPoint One of this, or accessPointArn is required. Default: - determined based on accessPointArn

  • file_system (Optional[IFileSystem]) – The EFS file system. Default: - no EFS file system

ExampleMetadata:

infused

Example:

efs.AccessPoint.from_access_point_attributes(self, "ap",
    access_point_id="fsap-1293c4d9832fo0912",
    file_system=efs.FileSystem.from_file_system_attributes(self, "efs",
        file_system_id="fs-099d3e2f",
        security_group=ec2.SecurityGroup.from_security_group_id(self, "sg", "sg-51530134")
    )
)

Attributes

access_point_arn

The ARN of the AccessPoint One of this, or accessPointId is required.

Default:
  • determined based on accessPointId

access_point_id

The ID of the AccessPoint One of this, or accessPointArn is required.

Default:
  • determined based on accessPointArn

file_system

The EFS file system.

Default:
  • no EFS file system