- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
StartRouteAnalysisCommand
Starts analyzing the routing path between the specified source and destination. For more information, see Route Analyzer .
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { NetworkManagerClient, StartRouteAnalysisCommand } from "@aws-sdk/client-networkmanager"; // ES Modules import
// const { NetworkManagerClient, StartRouteAnalysisCommand } = require("@aws-sdk/client-networkmanager"); // CommonJS import
const client = new NetworkManagerClient(config);
const input = { // StartRouteAnalysisRequest
GlobalNetworkId: "STRING_VALUE", // required
Source: { // RouteAnalysisEndpointOptionsSpecification
TransitGatewayAttachmentArn: "STRING_VALUE",
IpAddress: "STRING_VALUE",
},
Destination: {
TransitGatewayAttachmentArn: "STRING_VALUE",
IpAddress: "STRING_VALUE",
},
IncludeReturnPath: true || false,
UseMiddleboxes: true || false,
};
const command = new StartRouteAnalysisCommand(input);
const response = await client.send(command);
// { // StartRouteAnalysisResponse
// RouteAnalysis: { // RouteAnalysis
// GlobalNetworkId: "STRING_VALUE",
// OwnerAccountId: "STRING_VALUE",
// RouteAnalysisId: "STRING_VALUE",
// StartTimestamp: new Date("TIMESTAMP"),
// Status: "RUNNING" || "COMPLETED" || "FAILED",
// Source: { // RouteAnalysisEndpointOptions
// TransitGatewayAttachmentArn: "STRING_VALUE",
// TransitGatewayArn: "STRING_VALUE",
// IpAddress: "STRING_VALUE",
// },
// Destination: {
// TransitGatewayAttachmentArn: "STRING_VALUE",
// TransitGatewayArn: "STRING_VALUE",
// IpAddress: "STRING_VALUE",
// },
// IncludeReturnPath: true || false,
// UseMiddleboxes: true || false,
// ForwardPath: { // RouteAnalysisPath
// CompletionStatus: { // RouteAnalysisCompletion
// ResultCode: "CONNECTED" || "NOT_CONNECTED",
// ReasonCode: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND" || "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY" || "CYCLIC_PATH_DETECTED" || "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND" || "ROUTE_NOT_FOUND" || "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND" || "INACTIVE_ROUTE_FOR_DESTINATION_FOUND" || "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH" || "MAX_HOPS_EXCEEDED" || "POSSIBLE_MIDDLEBOX" || "NO_DESTINATION_ARN_PROVIDED",
// ReasonContext: { // ReasonContextMap
// "<keys>": "STRING_VALUE",
// },
// },
// Path: [ // PathComponentList
// { // PathComponent
// Sequence: Number("int"),
// Resource: { // NetworkResourceSummary
// RegisteredGatewayArn: "STRING_VALUE",
// ResourceArn: "STRING_VALUE",
// ResourceType: "STRING_VALUE",
// Definition: "STRING_VALUE",
// NameTag: "STRING_VALUE",
// IsMiddlebox: true || false,
// },
// DestinationCidrBlock: "STRING_VALUE",
// },
// ],
// },
// ReturnPath: {
// CompletionStatus: {
// ResultCode: "CONNECTED" || "NOT_CONNECTED",
// ReasonCode: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND" || "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY" || "CYCLIC_PATH_DETECTED" || "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND" || "ROUTE_NOT_FOUND" || "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND" || "INACTIVE_ROUTE_FOR_DESTINATION_FOUND" || "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH" || "MAX_HOPS_EXCEEDED" || "POSSIBLE_MIDDLEBOX" || "NO_DESTINATION_ARN_PROVIDED",
// ReasonContext: {
// "<keys>": "STRING_VALUE",
// },
// },
// Path: [
// {
// Sequence: Number("int"),
// Resource: {
// RegisteredGatewayArn: "STRING_VALUE",
// ResourceArn: "STRING_VALUE",
// ResourceType: "STRING_VALUE",
// Definition: "STRING_VALUE",
// NameTag: "STRING_VALUE",
// IsMiddlebox: true || false,
// },
// DestinationCidrBlock: "STRING_VALUE",
// },
// ],
// },
// },
// };
StartRouteAnalysisCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
Destination Required | RouteAnalysisEndpointOptionsSpecification | undefined | The destination. |
GlobalNetworkId Required | string | undefined | The ID of the global network. |
Source Required | RouteAnalysisEndpointOptionsSpecification | undefined | The source from which traffic originates. |
IncludeReturnPath | boolean | undefined | Indicates whether to analyze the return path. The default is |
UseMiddleboxes | boolean | undefined | Indicates whether to include the location of middlebox appliances in the route analysis. The default is |
StartRouteAnalysisCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
RouteAnalysis | RouteAnalysis | undefined | The route analysis. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | You do not have sufficient access to perform this action. |
ConflictException | client | There was a conflict processing the request. Updating or deleting the resource can cause an inconsistent state. |
InternalServerException | server | The request has failed due to an internal error. |
ResourceNotFoundException | client | The specified resource could not be found. |
ThrottlingException | client | The request was denied due to request throttling. |
ValidationException | client | The input fails to satisfy the constraints. |
NetworkManagerServiceException | Base exception class for all service exceptions from NetworkManager service. |