interface AnalysisPacketHeaderProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty |
![]() | software.amazon.awscdk.services.ec2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty |
![]() | aws_cdk.aws_ec2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty |
![]() | @aws-cdk/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 * as ec2 from '@aws-cdk/aws-ec2';
const analysisPacketHeaderProperty: ec2.CfnNetworkInsightsAnalysis.AnalysisPacketHeaderProperty = {
destinationAddresses: ['destinationAddresses'],
destinationPortRanges: [{
from: 123,
to: 123,
}],
protocol: 'protocol',
sourceAddresses: ['sourceAddresses'],
sourcePortRanges: [{
from: 123,
to: 123,
}],
};
Properties
Name | Type | Description |
---|---|---|
destination | string[] | The destination addresses. |
destination | IResolvable | IResolvable | Port [] | The destination port ranges. |
protocol? | string | The protocol. |
source | string[] | The source addresses. |
source | IResolvable | IResolvable | Port [] | The source port ranges. |
destinationAddresses?
Type:
string[]
(optional)
The destination addresses.
destinationPortRanges?
Type:
IResolvable
|
IResolvable
|
Port
[]
(optional)
The destination port ranges.
protocol?
Type:
string
(optional)
The protocol.
sourceAddresses?
Type:
string[]
(optional)
The source addresses.
sourcePortRanges?
Type:
IResolvable
|
IResolvable
|
Port
[]
(optional)
The source port ranges.