Class: Aws::Connect::Types::PersistentConnectionConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#channelString

Configuration settings for persistent connection. **Only VOICE is supported for this data type.**

Returns:

  • (String)


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_connectionBoolean

Indicates whether persistent connection is enabled. When enabled, the agent’s connection is maintained after a call ends, enabling subsequent calls to connect faster.

Returns:

  • (Boolean)


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