Class: Aws::ConnectCampaignsV2::Types::TelephonyOutboundMode

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb

Overview

Note:

TelephonyOutboundMode is a union - when making an API calls you must set exactly one of the members.

Note:

TelephonyOutboundMode is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TelephonyOutboundMode corresponding to the set member.

Telephony Outbound Mode

Direct Known Subclasses

Agentless, Predictive, Progressive, Unknown

Defined Under Namespace

Classes: Agentless, Predictive, Progressive, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#agentlessTypes::AgentlessConfig

Agentless config

Returns:

  • (Types::AgentlessConfig)


2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2135

class TelephonyOutboundMode < Struct.new(
  :progressive,
  :predictive,
  :agentless,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Progressive < TelephonyOutboundMode; end
  class Predictive < TelephonyOutboundMode; end
  class Agentless < TelephonyOutboundMode; end
  class Unknown < TelephonyOutboundMode; end
end

#predictiveTypes::PredictiveConfig

Predictive config



2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2135

class TelephonyOutboundMode < Struct.new(
  :progressive,
  :predictive,
  :agentless,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Progressive < TelephonyOutboundMode; end
  class Predictive < TelephonyOutboundMode; end
  class Agentless < TelephonyOutboundMode; end
  class Unknown < TelephonyOutboundMode; end
end

#progressiveTypes::ProgressiveConfig

Progressive config



2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2135

class TelephonyOutboundMode < Struct.new(
  :progressive,
  :predictive,
  :agentless,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Progressive < TelephonyOutboundMode; end
  class Predictive < TelephonyOutboundMode; end
  class Agentless < TelephonyOutboundMode; end
  class Unknown < TelephonyOutboundMode; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2135
2136
2137
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2135

def unknown
  @unknown
end