interface AnalysisPacketHeaderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInsightsAnalysisPropsMixin.AnalysisPacketHeaderProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInsightsAnalysisPropsMixin_AnalysisPacketHeaderProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInsightsAnalysisPropsMixin.AnalysisPacketHeaderProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInsightsAnalysisPropsMixin.AnalysisPacketHeaderProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInsightsAnalysisPropsMixin » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const analysisPacketHeaderProperty: ec2_mixins.CfnNetworkInsightsAnalysisPropsMixin.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.

.NET
Go
Java
Python
TypeScript