Create a listener to process inbound connections from clients to an accelerator. Connections arrive to assigned static
IP addresses on a port, port range, or list of port ranges 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 an accelerator. Connections arrive to assigned static IP addresses on a port, port range, or list of port ranges that you specify.
Use a bare-bones client and the command you need to make an API call.
import { GlobalAcceleratorClient, CreateListenerCommand } from "@aws-sdk/client-global-accelerator"; // ES Modules import // const { GlobalAcceleratorClient, CreateListenerCommand } = require("@aws-sdk/client-global-accelerator"); // CommonJS import const client = new GlobalAcceleratorClient(config); const command = new CreateListenerCommand(input); const response = await client.send(command);
CreateListenerCommandInput for command's
input
shape.CreateListenerCommandOutput for command's
response
shape.config for GlobalAcceleratorClient's
config
shape.