Create a listener to process inbound connections from clients to a custom routing accelerator.
Connections arrive to assigned static IP addresses on the port range that you specify.
example
Use a bare-bones client and the command you need to make an API call.
Create a listener to process inbound connections from clients to a custom routing accelerator. Connections arrive to assigned static IP addresses on the port range that you specify.
Use a bare-bones client and the command you need to make an API call.
import { GlobalAcceleratorClient, CreateCustomRoutingListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import // const { GlobalAcceleratorClient, CreateCustomRoutingListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import const client = new GlobalAcceleratorClient(config); const command = new CreateCustomRoutingListenerCommand(input); const response = await client.send(command);
CreateCustomRoutingListenerCommandInput for command's
input
shape.CreateCustomRoutingListenerCommandOutput for command's
response
shape.config for GlobalAcceleratorClient's
config
shape.