aws-cdk-lib.aws_ec2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty

interface AnalysisPacketHeaderProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnNetworkInsightsAnalysis_AnalysisPacketHeaderProperty
Javasoftware.amazon.awscdk.services.ec2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty
Pythonaws_cdk.aws_ec2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnNetworkInsightsAnalysis » AnalysisPacketHeaderProperty

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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const analysisPacketHeaderProperty: ec2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty = {
  destinationAddresses: ['destinationAddresses'],
  destinationPortRanges: [{
    from: 123,
    to: 123,
  }],
  protocol: 'protocol',
  sourceAddresses: ['sourceAddresses'],
  sourcePortRanges: [{
    from: 123,
    to: 123,
  }],
};

Properties

NameTypeDescription
destinationAddresses?string[]The destination addresses.
destinationPortRanges?IResolvable | IResolvable | PortRangeProperty[]The destination port ranges.
protocol?stringThe protocol.
sourceAddresses?string[]The source addresses.
sourcePortRanges?IResolvable | IResolvable | PortRangeProperty[]The source port ranges.

destinationAddresses?

Type: string[] (optional)

The destination addresses.


destinationPortRanges?

Type: IResolvable | IResolvable | PortRangeProperty[] (optional)

The destination port ranges.


protocol?

Type: string (optional)

The protocol.


sourceAddresses?

Type: string[] (optional)

The source addresses.


sourcePortRanges?

Type: IResolvable | IResolvable | PortRangeProperty[] (optional)

The source port ranges.