DeleteCustomRoutingEndpointGroupCommand

Delete an endpoint group from a listener for a custom routing accelerator.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { GlobalAcceleratorClient, DeleteCustomRoutingEndpointGroupCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import
// const { GlobalAcceleratorClient, DeleteCustomRoutingEndpointGroupCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import
const client = new GlobalAcceleratorClient(config);
const input = { // DeleteCustomRoutingEndpointGroupRequest
  EndpointGroupArn: "STRING_VALUE", // required
};
const command = new DeleteCustomRoutingEndpointGroupCommand(input);
const response = await client.send(command);
// {};

DeleteCustomRoutingEndpointGroupCommand Input

Parameter
Type
Description
EndpointGroupArn
Required
string | undefined

The Amazon Resource Name (ARN) of the endpoint group to delete.

DeleteCustomRoutingEndpointGroupCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.

Throws

Name
Fault
Details
EndpointGroupNotFoundException
client

The endpoint group that you specified doesn't exist.

InternalServiceErrorException
server

There was an internal error for Global Accelerator.

InvalidArgumentException
client

An argument that you specified is invalid.

GlobalAcceleratorServiceException
Base exception class for all service exceptions from GlobalAccelerator service.