Class: Aws::ChimeSDKVoice::Types::OriginationRoute

Inherits:
Struct
  • Object
show all
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.

The parameters listed below are not required, but you must use at least one.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hostString

The FQDN or IP address to contact for origination traffic.

Returns:

  • (String)


2093
2094
2095
2096
2097
2098
2099
2100
2101
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2093

class OriginationRoute < Struct.new(
  :host,
  :port,
  :protocol,
  :priority,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end

#portInteger

The designated origination route port. Defaults to 5060.

Returns:

  • (Integer)


2093
2094
2095
2096
2097
2098
2099
2100
2101
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2093

class OriginationRoute < Struct.new(
  :host,
  :port,
  :protocol,
  :priority,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end

#priorityInteger

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

Returns:

  • (Integer)


2093
2094
2095
2096
2097
2098
2099
2100
2101
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2093

class OriginationRoute < Struct.new(
  :host,
  :port,
  :protocol,
  :priority,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end

#protocolString

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

Returns:

  • (String)


2093
2094
2095
2096
2097
2098
2099
2100
2101
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2093

class OriginationRoute < Struct.new(
  :host,
  :port,
  :protocol,
  :priority,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end

#weightInteger

The weight assigned to an origination route. When hosts have equal priority, calls are distributed between them based on their relative weights.

Returns:

  • (Integer)


2093
2094
2095
2096
2097
2098
2099
2100
2101
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2093

class OriginationRoute < Struct.new(
  :host,
  :port,
  :protocol,
  :priority,
  :weight)
  SENSITIVE = []
  include Aws::Structure
end