Creates a route table for the specified VPC. After you create a route table, you can add routes and associate the table with a subnet.
For more information, see Route tables in the Amazon Virtual Private Cloud User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, CreateRouteTableCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, CreateRouteTableCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new CreateRouteTableCommand(input); const response = await client.send(command);
CreateRouteTableCommandInput for command's input shape.
input
CreateRouteTableCommandOutput for command's response shape.
response
config for EC2Client's config shape.
config
Creates a route table for the specified VPC. After you create a route table, you can add routes and associate the table with a subnet.
For more information, see Route tables in the Amazon Virtual Private Cloud User Guide.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, CreateRouteTableCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, CreateRouteTableCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new CreateRouteTableCommand(input); const response = await client.send(command);
CreateRouteTableCommandInput for command's
input
shape.CreateRouteTableCommandOutput for command's
response
shape.config for EC2Client's
config
shape.