Class: Aws::Chime::Types::VoiceConnectorItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::VoiceConnectorItem
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass VoiceConnectorItem data as a hash:
{
voice_connector_id: "NonEmptyString", # required
priority: 1, # required
}
For Amazon Chime Voice Connector groups, the Amazon Chime Voice
Connectors to which to route inbound calls. Includes priority
configuration settings. Limit: 3 VoiceConnectorItems
per Amazon
Chime Voice Connector group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#priority ⇒ Integer
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority.
-
#voice_connector_id ⇒ String
The Amazon Chime Voice Connector ID.
Instance Attribute Details
#priority ⇒ Integer
The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
10190 10191 10192 10193 10194 10195 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 10190 class VoiceConnectorItem < Struct.new( :voice_connector_id, :priority) SENSITIVE = [] include Aws::Structure end |
#voice_connector_id ⇒ String
The Amazon Chime Voice Connector ID.
10190 10191 10192 10193 10194 10195 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 10190 class VoiceConnectorItem < Struct.new( :voice_connector_id, :priority) SENSITIVE = [] include Aws::Structure end |