Class: Aws::Chime::Types::OriginationRoute
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::OriginationRoute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chime/types.rb
Overview
Origination routes define call distribution properties for your SIP hosts to receive inbound calls using your Amazon Chime Voice Connector. Limit: Ten origination routes for each Amazon Chime 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 associated with the host.
Instance Attribute Details
#host ⇒ String
The FQDN or IP address to contact for origination traffic.
6222 6223 6224 6225 6226 6227 6228 6229 6230 |
# File 'lib/aws-sdk-chime/types.rb', line 6222 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The designated origination route port. Defaults to 5060.
6222 6223 6224 6225 6226 6227 6228 6229 6230 |
# File 'lib/aws-sdk-chime/types.rb', line 6222 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.
6222 6223 6224 6225 6226 6227 6228 6229 6230 |
# File 'lib/aws-sdk-chime/types.rb', line 6222 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 Voice Connectors use TCP protocol by default.
6222 6223 6224 6225 6226 6227 6228 6229 6230 |
# File 'lib/aws-sdk-chime/types.rb', line 6222 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |
#weight ⇒ Integer
The weight associated with the host. If hosts are equal in priority, calls are redistributed among them based on their relative weight.
6222 6223 6224 6225 6226 6227 6228 6229 6230 |
# File 'lib/aws-sdk-chime/types.rb', line 6222 class OriginationRoute < Struct.new( :host, :port, :protocol, :priority, :weight) SENSITIVE = [] include Aws::Structure end |