Class: Aws::ChimeSDKVoice::Types::Origination
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::Origination
- Defined in:
- gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb
Overview
Origination settings enable your SIP hosts to receive inbound calls using your Amazon Chime SDK 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 SDK 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 SDK Voice Connector. This parameter is
not required, but you must specify this parameter or Routes
.
2143 2144 2145 2146 2147 2148 |
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2143 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
.
2143 2144 2145 2146 2147 2148 |
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2143 class Origination < Struct.new( :routes, :disabled) SENSITIVE = [] include Aws::Structure end |