Interface CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty

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

@Stability(Stable) public static interface CfnNetworkInsightsAnalysis.TransitGatewayRouteTableRouteProperty extends software.amazon.jsii.JsiiSerializable
Describes a route in a transit gateway route table.

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.*;
 TransitGatewayRouteTableRouteProperty transitGatewayRouteTableRouteProperty = TransitGatewayRouteTableRouteProperty.builder()
         .attachmentId("attachmentId")
         .destinationCidr("destinationCidr")
         .prefixListId("prefixListId")
         .resourceId("resourceId")
         .resourceType("resourceType")
         .routeOrigin("routeOrigin")
         .state("state")
         .build();
 

See Also: