Show / Hide Table of Contents

Class CfnNetworkInsightsPath.FilterPortRangeProperty

Describes a port range.

Inheritance
object
CfnNetworkInsightsPath.FilterPortRangeProperty
Implements
CfnNetworkInsightsPath.IFilterPortRangeProperty
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.FilterPortRangeProperty : CfnNetworkInsightsPath.IFilterPortRangeProperty
Syntax (vb)
Public Class CfnNetworkInsightsPath.FilterPortRangeProperty Implements CfnNetworkInsightsPath.IFilterPortRangeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightspath-filterportrange.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 filterPortRangeProperty = new FilterPortRangeProperty {
                 FromPort = 123,
                 ToPort = 123
             };

Synopsis

Constructors

FilterPortRangeProperty()

Describes a port range.

Properties

FromPort

The first port in the range.

ToPort

The last port in the range.

Constructors

FilterPortRangeProperty()

Describes a port range.

public FilterPortRangeProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightspath-filterportrange.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 filterPortRangeProperty = new FilterPortRangeProperty {
                 FromPort = 123,
                 ToPort = 123
             };

Properties

FromPort

The first port in the range.

public double? FromPort { get; set; }
Property Value

double?

Remarks

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

ToPort

The last port in the range.

public double? ToPort { get; set; }
Property Value

double?

Remarks

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

Implements

CfnNetworkInsightsPath.IFilterPortRangeProperty
Back to top Generated by DocFX