Class: Aws::Connect::Types::AutoAcceptConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::AutoAcceptConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Configuration settings for auto-accept for a specific channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_first_callback_auto_accept ⇒ Boolean
Indicates whether auto-accept is enabled for agent-first callbacks.
-
#auto_accept ⇒ Boolean
Indicates whether auto-accept is enabled for this channel.
-
#channel ⇒ String
The channel for this auto-accept configuration.
Instance Attribute Details
#agent_first_callback_auto_accept ⇒ Boolean
Indicates whether auto-accept is enabled for agent-first callbacks. This setting only applies to the VOICE channel.
2086 2087 2088 2089 2090 2091 2092 |
# File 'lib/aws-sdk-connect/types.rb', line 2086 class AutoAcceptConfig < Struct.new( :channel, :auto_accept, :agent_first_callback_auto_accept) SENSITIVE = [] include Aws::Structure end |
#auto_accept ⇒ Boolean
Indicates whether auto-accept is enabled for this channel. When enabled, available agents are automatically connected to contacts from this channel.
2086 2087 2088 2089 2090 2091 2092 |
# File 'lib/aws-sdk-connect/types.rb', line 2086 class AutoAcceptConfig < Struct.new( :channel, :auto_accept, :agent_first_callback_auto_accept) SENSITIVE = [] include Aws::Structure end |
#channel ⇒ String
The channel for this auto-accept configuration. Valid values: VOICE, CHAT, TASK, EMAIL.
2086 2087 2088 2089 2090 2091 2092 |
# File 'lib/aws-sdk-connect/types.rb', line 2086 class AutoAcceptConfig < Struct.new( :channel, :auto_accept, :agent_first_callback_auto_accept) SENSITIVE = [] include Aws::Structure end |