Show / Hide Table of Contents

Interface IAclPortRange

Properties to create PortRange.

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

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;

AclPortRange aclPortRange = new AclPortRange {
    From = 123,
    To = 123
};

Synopsis

Properties

From

The first port in the range.

To

The last port in the range.

Properties

From

The first port in the range.

virtual Nullable<double> From { get; }
Property Value

System.Nullable<System.Double>

Remarks

Required if you specify 6 (TCP) or 17 (UDP) for the protocol parameter.

To

The last port in the range.

virtual Nullable<double> To { get; }
Property Value

System.Nullable<System.Double>

Remarks

Required if you specify 6 (TCP) or 17 (UDP) for the protocol parameter.

Back to top Generated by DocFX