interface PortRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NetworkFirewall.CfnRuleGroupPropsMixin.PortRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnetworkfirewall#CfnRuleGroupPropsMixin_PortRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.networkfirewall.CfnRuleGroupPropsMixin.PortRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_networkfirewall.CfnRuleGroupPropsMixin.PortRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_networkfirewall » CfnRuleGroupPropsMixin » PortRangeProperty |
A single port range specification.
This is used for source and destination port ranges in the stateless match attributes.
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.CfnRuleGroupPropsMixin.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