Interface CfnTLSInspectionConfiguration.PortRangeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTLSInspectionConfiguration.PortRangeProperty.Jsii$Proxy
Enclosing class:
CfnTLSInspectionConfiguration

@Stability(Stable) public static interface CfnTLSInspectionConfiguration.PortRangeProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.networkfirewall.*;
 PortRangeProperty portRangeProperty = PortRangeProperty.builder()
         .fromPort(123)
         .toPort(123)
         .build();
 

See Also: