Class: Aws::ConnectCampaignsV2::Types::WhatsAppOutboundMode

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

Overview

Note:

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

Note:

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

WhatsApp Outbound Mode

Defined Under Namespace

Classes: Agentless, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#agentlessTypes::AgentlessConfig

Agentless config

Returns:

  • (Types::AgentlessConfig)


2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2681

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

  class Agentless < WhatsAppOutboundMode; end
  class Unknown < WhatsAppOutboundMode; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2681
2682
2683
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 2681

def unknown
  @unknown
end