Class: Aws::Connect::Types::PersistentConnectionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::PersistentConnectionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Configuration settings for persistent connection for a specific channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel ⇒ String
Configuration settings for persistent connection.
-
#persistent_connection ⇒ Boolean
Indicates whether persistent connection is enabled.
Instance Attribute Details
#channel ⇒ String
Configuration settings for persistent connection. **Only VOICE is supported for this data type.**
24523 24524 24525 24526 24527 24528 |
# File 'lib/aws-sdk-connect/types.rb', line 24523 class PersistentConnectionConfig < Struct.new( :channel, :persistent_connection) SENSITIVE = [] include Aws::Structure end |
#persistent_connection ⇒ Boolean
Indicates whether persistent connection is enabled. When enabled, the agent’s connection is maintained after a call ends, enabling subsequent calls to connect faster.
24523 24524 24525 24526 24527 24528 |
# File 'lib/aws-sdk-connect/types.rb', line 24523 class PersistentConnectionConfig < Struct.new( :channel, :persistent_connection) SENSITIVE = [] include Aws::Structure end |