Interface CfnNetworkInsightsAnalysis.AnalysisRouteTableRouteProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNetworkInsightsAnalysis.AnalysisRouteTableRouteProperty.Jsii$Proxy
Enclosing class:
CfnNetworkInsightsAnalysis

@Stability(Stable) public static interface CfnNetworkInsightsAnalysis.AnalysisRouteTableRouteProperty extends software.amazon.jsii.JsiiSerializable
Describes a route table route.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 AnalysisRouteTableRouteProperty analysisRouteTableRouteProperty = AnalysisRouteTableRouteProperty.builder()
         .destinationCidr("destinationCidr")
         .destinationPrefixListId("destinationPrefixListId")
         .egressOnlyInternetGatewayId("egressOnlyInternetGatewayId")
         .gatewayId("gatewayId")
         .instanceId("instanceId")
         .natGatewayId("natGatewayId")
         .networkInterfaceId("networkInterfaceId")
         .origin("origin")
         .state("state")
         .transitGatewayId("transitGatewayId")
         .vpcPeeringConnectionId("vpcPeeringConnectionId")
         .build();
 

See Also: