Show / Hide Table of Contents

Interface CfnNetworkInsightsAnalysis.IAnalysisPacketHeaderProperty

Describes a header.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.AWS.EC2.dll
Syntax (csharp)
public interface IAnalysisPacketHeaderProperty
Syntax (vb)
Public Interface IAnalysisPacketHeaderProperty
Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysispacketheader.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;

AnalysisPacketHeaderProperty analysisPacketHeaderProperty = new AnalysisPacketHeaderProperty {
    DestinationAddresses = new [] { "destinationAddresses" },
    DestinationPortRanges = new [] { new PortRangeProperty {
        From = 123,
        To = 123
    } },
    Protocol = "protocol",
    SourceAddresses = new [] { "sourceAddresses" },
    SourcePortRanges = new [] { new PortRangeProperty {
        From = 123,
        To = 123
    } }
};

Synopsis

Properties

DestinationAddresses

The destination addresses.

DestinationPortRanges

The destination port ranges.

Protocol

The protocol.

SourceAddresses

The source addresses.

SourcePortRanges

The source port ranges.

Properties

DestinationAddresses

The destination addresses.

virtual string[] DestinationAddresses { get; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysispacketheader.html#cfn-ec2-networkinsightsanalysis-analysispacketheader-destinationaddresses

DestinationPortRanges

The destination port ranges.

virtual object DestinationPortRanges { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysispacketheader.html#cfn-ec2-networkinsightsanalysis-analysispacketheader-destinationportranges

Protocol

The protocol.

virtual string Protocol { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysispacketheader.html#cfn-ec2-networkinsightsanalysis-analysispacketheader-protocol

SourceAddresses

The source addresses.

virtual string[] SourceAddresses { get; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysispacketheader.html#cfn-ec2-networkinsightsanalysis-analysispacketheader-sourceaddresses

SourcePortRanges

The source port ranges.

virtual object SourcePortRanges { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsanalysis-analysispacketheader.html#cfn-ec2-networkinsightsanalysis-analysispacketheader-sourceportranges

Back to top Generated by DocFX