AccessPointReference

class aws_cdk.aws_efs.AccessPointReference(*, access_point_arn, access_point_id)

Bases: object

A reference to a AccessPoint resource.

Parameters:
  • access_point_arn (str) – The ARN of the AccessPoint resource.

  • access_point_id (str) – The AccessPointId of the AccessPoint resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_efs as efs

access_point_reference = efs.AccessPointReference(
    access_point_arn="accessPointArn",
    access_point_id="accessPointId"
)

Attributes

access_point_arn

The ARN of the AccessPoint resource.

access_point_id

The AccessPointId of the AccessPoint resource.