Class: Aws::Chime::Types::Origination
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::Origination
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Origination settings enable your SIP hosts to receive inbound calls using your Amazon Chime Voice Connector.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#disabled ⇒ Boolean
When origination settings are disabled, inbound calls are not enabled for your Amazon Chime Voice Connector.
-
#routes ⇒ Array<Types::OriginationRoute>
The call distribution properties defined for your SIP hosts.
Instance Attribute Details
#disabled ⇒ Boolean
When origination settings are disabled, inbound calls are not
enabled for your Amazon Chime Voice Connector. This parameter is not
required, but you must specify this parameter or Routes
.
6346 6347 6348 6349 6350 6351 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 6346 class Origination < Struct.new( :routes, :disabled) SENSITIVE = [] include Aws::Structure end |
#routes ⇒ Array<Types::OriginationRoute>
The call distribution properties defined for your SIP hosts. Valid
range: Minimum value of 1. Maximum value of 20. This parameter is
not required, but you must specify this parameter or Disabled
.
6346 6347 6348 6349 6350 6351 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 6346 class Origination < Struct.new( :routes, :disabled) SENSITIVE = [] include Aws::Structure end |