Creates a managed prefix list. You can specify one or more entries for the prefix list. Each entry consists of a CIDR block and an optional description.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, CreateManagedPrefixListCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, CreateManagedPrefixListCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new CreateManagedPrefixListCommand(input); const response = await client.send(command);
CreateManagedPrefixListCommandInput for command's input shape.
input
CreateManagedPrefixListCommandOutput for command's response shape.
response
config for EC2Client's config shape.
config
Creates a managed prefix list. You can specify one or more entries for the prefix list. Each entry consists of a CIDR block and an optional description.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, CreateManagedPrefixListCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, CreateManagedPrefixListCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new CreateManagedPrefixListCommand(input); const response = await client.send(command);
CreateManagedPrefixListCommandInput for command's
input
shape.CreateManagedPrefixListCommandOutput for command's
response
shape.config for EC2Client's
config
shape.