Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-tlsinspectionconfiguration-portrange.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.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

double?

Remarks

This must be less than or equal to the ToPort specification.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-tlsinspectionconfiguration-portrange.html#cfn-networkfirewall-tlsinspectionconfiguration-portrange-fromport

ToPort

The upper limit of the port range.

double? ToPort { get; }
Property Value

double?

Remarks

This must be greater than or equal to the FromPort specification.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-tlsinspectionconfiguration-portrange.html#cfn-networkfirewall-tlsinspectionconfiguration-portrange-toport

Back to top Generated by DocFX