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)


2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2069

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



2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2069

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



2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2069

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



2069
2070
2071
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2069

def unknown
  @unknown
end