/** *

Termination settings enable your SIP hosts to make outbound calls using your Amazon Chime Voice Connector.

*/ export interface _Termination { /** *

The limit on calls per second. Max value based on account service limit. Default value of 1.

*/ CpsLimit?: number; /** *

The default caller ID phone number.

*/ DefaultPhoneNumber?: string; /** *

The countries to which calls are allowed.

*/ CallingRegions?: Array | Iterable; /** *

The IP addresses allowed to make calls, in CIDR format.

*/ CidrAllowedList?: Array | Iterable; /** *

When termination settings are disabled, outbound calls can not be made.

*/ Disabled?: boolean; } export interface _UnmarshalledTermination extends _Termination { /** *

The countries to which calls are allowed.

*/ CallingRegions?: Array; /** *

The IP addresses allowed to make calls, in CIDR format.

*/ CidrAllowedList?: Array; }