Deletes the specified access point. After deletion is complete, new clients can no
longer connect to the access points. Clients connected to the access point at the time of
deletion will continue to function until they terminate their connection.
This operation requires permissions for the elasticfilesystem:DeleteAccessPoint action.
example
Use a bare-bones client and the command you need to make an API call.
Deletes the specified access point. After deletion is complete, new clients can no longer connect to the access points. Clients connected to the access point at the time of deletion will continue to function until they terminate their connection.
This operation requires permissions for the
elasticfilesystem:DeleteAccessPoint
action.Use a bare-bones client and the command you need to make an API call.
import { EFSClient, DeleteAccessPointCommand } from "@aws-sdk/client-efs"; // ES Modules import // const { EFSClient, DeleteAccessPointCommand } = require("@aws-sdk/client-efs"); // CommonJS import const client = new EFSClient(config); const command = new DeleteAccessPointCommand(input); const response = await client.send(command);
DeleteAccessPointCommandInput for command's
input
shape.DeleteAccessPointCommandOutput for command's
response
shape.config for EFSClient's
config
shape.