Class: Aws::ChimeSDKVoice::Types::OriginationRoute
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::OriginationRoute
- Defined in:
- gems/aws-sdk-chimesdkvoice/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.
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.
2185 2186 2187 2188 2189 2190 2191 2192 2193 |
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2185 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The designated origination route port. Defaults to 5060.
2185 2186 2187 2188 2189 2190 2191 2192 2193 |
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2185 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.
2185 2186 2187 2188 2189 2190 2191 2192 2193 |
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2185 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.
2185 2186 2187 2188 2189 2190 2191 2192 2193 |
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2185 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.
2185 2186 2187 2188 2189 2190 2191 2192 2193 |
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2185 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |