AccessPointReference
- class aws_cdk.interfaces.aws_efs.AccessPointReference(*, access_point_arn, access_point_id)
Bases:
objectA 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.interfaces import aws_efs as interfaces_aws_efs access_point_reference = interfaces_aws_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.