/** *

Describes information about the instance ports.

*/ export interface _InstancePortInfo { /** *

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; /** *

The location from which access is allowed (e.g., Anywhere (0.0.0.0/0)).

*/ accessFrom?: string; /** *

The type of access (Public or Private).

*/ accessType?: "Public" | "Private" | string; /** *

The common name.

*/ commonName?: string; /** *

The access direction (inbound or outbound).

*/ accessDirection?: "inbound" | "outbound" | string; } export declare type _UnmarshalledInstancePortInfo = _InstancePortInfo;