interface AccessPointReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EFS.AccessPointReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#AccessPointReference |
Java | software.amazon.awscdk.services.efs.AccessPointReference |
Python | aws_cdk.aws_efs.AccessPointReference |
TypeScript | aws-cdk-lib » aws_efs » AccessPointReference |
A reference to a AccessPoint resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_efs as efs } from 'aws-cdk-lib';
const accessPointReference: efs.AccessPointReference = {
accessPointArn: 'accessPointArn',
accessPointId: 'accessPointId',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The ARN of the AccessPoint resource. |
| access | string | The AccessPointId of the AccessPoint resource. |
accessPointArn
Type:
string
The ARN of the AccessPoint resource.
accessPointId
Type:
string
The AccessPointId of the AccessPoint resource.

.NET
Go
Java
Python
TypeScript