Class: Aws::Chime::Types::OriginationRoute

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

Instance Attribute Details

#hostString

The FQDN or IP address to contact for origination traffic.

Returns:

  • (String)


6388
6389
6390
6391
6392
6393
6394
6395
6396
# File 'lib/aws-sdk-chime/types.rb', line 6388

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)


6388
6389
6390
6391
6392
6393
6394
6395
6396
# File 'lib/aws-sdk-chime/types.rb', line 6388

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)


6388
6389
6390
6391
6392
6393
6394
6395
6396
# File 'lib/aws-sdk-chime/types.rb', line 6388

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 Voice Connectors use TCP protocol by default.

Returns:

  • (String)


6388
6389
6390
6391
6392
6393
6394
6395
6396
# File 'lib/aws-sdk-chime/types.rb', line 6388

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

#weightInteger

The weight associated with the host. If hosts are equal in priority, calls are redistributed among them based on their relative weight.

Returns:

  • (Integer)


6388
6389
6390
6391
6392
6393
6394
6395
6396
# File 'lib/aws-sdk-chime/types.rb', line 6388

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