Class: Aws::ConnectCampaignsV2::Types::ChannelSubtypeParameters

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-connectcampaignsv2/types.rb

Overview

Note:

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

ChannelSubtypeParameters for an outbound request

Defined Under Namespace

Classes: Email, Sms, Telephony, Unknown, WhatsApp

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#emailTypes::EmailChannelSubtypeParameters

Parameters for the Email Channel Subtype



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 266

class ChannelSubtypeParameters < Struct.new(
  :telephony,
  :sms,
  :email,
  :whats_app,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Telephony < ChannelSubtypeParameters; end
  class Sms < ChannelSubtypeParameters; end
  class Email < ChannelSubtypeParameters; end
  class WhatsApp < ChannelSubtypeParameters; end
  class Unknown < ChannelSubtypeParameters; end
end

#smsTypes::SmsChannelSubtypeParameters

Parameters for the SMS Channel Subtype



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 266

class ChannelSubtypeParameters < Struct.new(
  :telephony,
  :sms,
  :email,
  :whats_app,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Telephony < ChannelSubtypeParameters; end
  class Sms < ChannelSubtypeParameters; end
  class Email < ChannelSubtypeParameters; end
  class WhatsApp < ChannelSubtypeParameters; end
  class Unknown < ChannelSubtypeParameters; end
end

#telephonyTypes::TelephonyChannelSubtypeParameters

Parameters for the Telephony Channel Subtype



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 266

class ChannelSubtypeParameters < Struct.new(
  :telephony,
  :sms,
  :email,
  :whats_app,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Telephony < ChannelSubtypeParameters; end
  class Sms < ChannelSubtypeParameters; end
  class Email < ChannelSubtypeParameters; end
  class WhatsApp < ChannelSubtypeParameters; end
  class Unknown < ChannelSubtypeParameters; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



266
267
268
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 266

def unknown
  @unknown
end

#whats_appTypes::WhatsAppChannelSubtypeParameters

Parameters for the WhatsApp Channel Subtype



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 266

class ChannelSubtypeParameters < Struct.new(
  :telephony,
  :sms,
  :email,
  :whats_app,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Telephony < ChannelSubtypeParameters; end
  class Sms < ChannelSubtypeParameters; end
  class Email < ChannelSubtypeParameters; end
  class WhatsApp < ChannelSubtypeParameters; end
  class Unknown < ChannelSubtypeParameters; end
end