Show / Hide Table of Contents

Class CfnNetworkInsightsPath.PathFilterProperty

Describes a set of filters for a path analysis.

Inheritance
object
CfnNetworkInsightsPath.PathFilterProperty
Implements
CfnNetworkInsightsPath.IPathFilterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNetworkInsightsPath.PathFilterProperty : CfnNetworkInsightsPath.IPathFilterProperty
Syntax (vb)
Public Class CfnNetworkInsightsPath.PathFilterProperty Implements 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

Constructors

PathFilterProperty()

Describes a set of filters for a path analysis.

Properties

DestinationAddress

The destination IPv4 address.

DestinationPortRange

The destination port range.

SourceAddress

The source IPv4 address.

SourcePortRange

The source port range.

Constructors

PathFilterProperty()

Describes a set of filters for a path analysis.

public PathFilterProperty()
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
                 }
             };

Properties

DestinationAddress

The destination IPv4 address.

public string? DestinationAddress { get; set; }
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.

public object? DestinationPortRange { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnNetworkInsightsPath.IFilterPortRangeProperty

SourceAddress

The source IPv4 address.

public string? SourceAddress { get; set; }
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.

public object? SourcePortRange { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnNetworkInsightsPath.IFilterPortRangeProperty

Implements

CfnNetworkInsightsPath.IPathFilterProperty
Back to top Generated by DocFX