interface PortRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NetworkFirewall.CfnTLSInspectionConfigurationPropsMixin.PortRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnetworkfirewall#CfnTLSInspectionConfigurationPropsMixin_PortRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.networkfirewall.CfnTLSInspectionConfigurationPropsMixin.PortRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_networkfirewall.CfnTLSInspectionConfigurationPropsMixin.PortRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_networkfirewall » CfnTLSInspectionConfigurationPropsMixin » PortRangeProperty |
A single port range specification.
This is used for source and destination port ranges in the stateless rule MatchAttributes , SourcePorts , and DestinationPorts settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkfirewall as networkfirewall } from '@aws-cdk/cfn-property-mixins';
const portRangeProperty: networkfirewall.CfnTLSInspectionConfigurationPropsMixin.PortRangeProperty = {
fromPort: 123,
toPort: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| from | number | The lower limit of the port range. |
| to | number | The upper limit of the port range. |
fromPort?
Type:
number
(optional)
The lower limit of the port range.
This must be less than or equal to the ToPort specification.
toPort?
Type:
number
(optional)
The upper limit of the port range.
This must be greater than or equal to the FromPort specification.

.NET
Go
Java
Python
TypeScript