/** *

Describes the port state.

*/ export interface _InstancePortState { /** *

The first port in the range.

*/ fromPort?: number; /** *

The last port in the range.

*/ toPort?: number; /** *

The protocol being used. Can be one of the following.

*/ protocol?: "tcp" | "all" | "udp" | string; /** *

Specifies whether the instance port is open or closed.

*/ state?: "open" | "closed" | string; } export declare type _UnmarshalledInstancePortState = _InstancePortState;