/** *

Origination routes define call distribution properties for your SIP hosts to receive inbound calls using your Amazon Chime Voice Connector. Limit: 10 origination routes per Amazon Chime Voice Connector.

*/ export interface _OriginationRoute { /** *

The FODN or IP address to contact for origination traffic.

*/ Host?: string; /** *

The designated origination route port. Defaults to 5060.

*/ Port?: number; /** *

The protocol to use for the origination route. Encryption-enabled Amazon Chime Voice Connectors use TCP protocol by default.

*/ Protocol?: "TCP" | "UDP" | string; /** *

The priority associated with the host, with 1 being the highest priority. Higher priority hosts are attempted first.

*/ Priority?: number; /** *

The weight associated with the host. If hosts are equal in priority, calls are distributed among them based on their relative weight.

*/ Weight?: number; } export declare type _UnmarshalledOriginationRoute = _OriginationRoute;