Reachability Analyzer enables you to analyze and debug network reachability between
two resources in your virtual private cloud (VPC). For more information, see
What is Reachability Analyzer.
example
Use a bare-bones client and the command you need to make an API call.
Creates a path to analyze for reachability.
Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see What is Reachability Analyzer.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, CreateNetworkInsightsPathCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, CreateNetworkInsightsPathCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new CreateNetworkInsightsPathCommand(input); const response = await client.send(command);
CreateNetworkInsightsPathCommandInput for command's
input
shape.CreateNetworkInsightsPathCommandOutput for command's
response
shape.config for EC2Client's
config
shape.