Class: Aws::ChimeSDKVoice::Types::Origination
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::Origination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chimesdkvoice/types.rb
Overview
Origination settings enable your SIP hosts to receive inbound calls using your Amazon Chime SDK 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
-
#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`.
2051 2052 2053 2054 2055 2056 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2051 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`.
2051 2052 2053 2054 2055 2056 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2051 class Origination < Struct.new( :routes, :disabled) SENSITIVE = [] include Aws::Structure end |