Interface CfnTLSInspectionConfigurationPropsMixin.IPortRangeProperty
A single port range specification.
Namespace: Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnTLSInspectionConfigurationPropsMixin.IPortRangeProperty
Syntax (vb)
Public Interface CfnTLSInspectionConfigurationPropsMixin.IPortRangeProperty
Remarks
This is used for source and destination port ranges in the stateless rule MatchAttributes , SourcePorts , and DestinationPorts settings.
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.Mixins.Preview.AWS.NetworkFirewall.Mixins;
var portRangeProperty = new PortRangeProperty {
FromPort = 123,
ToPort = 123
};
Synopsis
Properties
| FromPort | The lower limit of the port range. |
| ToPort | The upper limit of the port range. |
Properties
FromPort
The lower limit of the port range.
double? FromPort { get; }
Property Value
Remarks
This must be less than or equal to the ToPort specification.
ToPort
The upper limit of the port range.
double? ToPort { get; }
Property Value
Remarks
This must be greater than or equal to the FromPort specification.