Show / Hide Table of Contents

Interface CfnNetworkInsightsPath.IPathFilterProperty

Describes a set of filters for a path analysis.

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

Use path filters to scope the analysis when there can be multiple resulting paths.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightspath-pathfilter.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;

             var pathFilterProperty = new PathFilterProperty {
                 DestinationAddress = "destinationAddress",
                 DestinationPortRange = new FilterPortRangeProperty {
                     FromPort = 123,
                     ToPort = 123
                 },
                 SourceAddress = "sourceAddress",
                 SourcePortRange = new FilterPortRangeProperty {
                     FromPort = 123,
                     ToPort = 123
                 }
             };

Synopsis

Properties

DestinationAddress

The destination IPv4 address.

DestinationPortRange

The destination port range.

SourceAddress

The source IPv4 address.

SourcePortRange

The source port range.

Properties

DestinationAddress

The destination IPv4 address.

string? DestinationAddress { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightspath-pathfilter.html#cfn-ec2-networkinsightspath-pathfilter-destinationaddress

DestinationPortRange

The destination port range.

object? DestinationPortRange { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightspath-pathfilter.html#cfn-ec2-networkinsightspath-pathfilter-destinationportrange

SourceAddress

The source IPv4 address.

string? SourceAddress { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightspath-pathfilter.html#cfn-ec2-networkinsightspath-pathfilter-sourceaddress

SourcePortRange

The source port range.

object? SourcePortRange { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightspath-pathfilter.html#cfn-ec2-networkinsightspath-pathfilter-sourceportrange

Back to top Generated by DocFX