Skip to content

DescribeAccessPoints

Source: src/AWS/EFS/DescribeAccessPoints.ts

Runtime binding for the DescribeAccessPoints operation (IAM action elasticfilesystem:DescribeAccessPoints on the file system ARN).

Lists the bound FileSystem’s access points — e.g. to enumerate the per-tenant entry points created at runtime with CreateAccessPoint. Provide the implementation with Effect.provide(AWS.EFS.DescribeAccessPointsHttp).

const describeAccessPoints = yield* AWS.EFS.DescribeAccessPoints(files);
const { AccessPoints } = yield* describeAccessPoints();
for (const accessPoint of AccessPoints ?? []) {
yield* Effect.log(`${accessPoint.Name}: ${accessPoint.AccessPointId}`);
}