Interface CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty

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

@Stability(Stable) public static interface CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty extends software.amazon.jsii.JsiiSerializable
Describes a header.

Reflects any changes made by a component as traffic passes through. The fields of an inbound header are null except for the first component of a path.

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.*;
 AnalysisPacketHeaderProperty analysisPacketHeaderProperty = AnalysisPacketHeaderProperty.builder()
         .destinationAddresses(List.of("destinationAddresses"))
         .destinationPortRanges(List.of(PortRangeProperty.builder()
                 .from(123)
                 .to(123)
                 .build()))
         .protocol("protocol")
         .sourceAddresses(List.of("sourceAddresses"))
         .sourcePortRanges(List.of(PortRangeProperty.builder()
                 .from(123)
                 .to(123)
                 .build()))
         .build();
 

See Also: