/** *
A complex type for a range of ports for a listener.
*/ export interface _PortRange { /** *The first port in the range of ports, inclusive.
*/ FromPort?: number; /** *The last port in the range of ports, inclusive.
*/ ToPort?: number; } export declare type _UnmarshalledPortRange = _PortRange;