Class: Aws::ChimeSDKVoice::Types::OriginationRoute
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::OriginationRoute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chimesdkvoice/types.rb
Overview
Origination routes define call distribution properties for your SIP hosts to receive inbound calls using an Amazon Chime SDK Voice Connector. Limit: Ten origination routes for each Voice Connector.
<note markdown=“1”> The parameters listed below are not required, but you must use at least one.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#host ⇒ String
The FQDN or IP address to contact for origination traffic.
-
#port ⇒ Integer
The designated origination route port.
-
#priority ⇒ Integer
The priority associated with the host, with 1 being the highest priority.
-
#protocol ⇒ String
The protocol to use for the origination route.
-
#weight ⇒ Integer
The weight assigned to an origination route.
Instance Attribute Details
#host ⇒ String
The FQDN or IP address to contact for origination traffic.
2093 2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2093 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The designated origination route port. Defaults to 5060.
2093 2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2093 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |
#priority ⇒ Integer
The priority associated with the host, with 1 being the highest priority. Higher priority hosts are attempted first.
2093 2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2093 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol to use for the origination route. Encryption-enabled Amazon Chime SDK Voice Connectors use TCP protocol by default.
2093 2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2093 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |
#weight ⇒ Integer
The weight assigned to an origination route. When hosts have equal priority, calls are distributed between them based on their relative weights.
2093 2094 2095 2096 2097 2098 2099 2100 2101 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2093 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |