Class: Aws::QConnect::Types::MessageTemplateSourceConfigurationSummary

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

Overview

Note:

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

The container of message template source configuration summary.

Direct Known Subclasses

Unknown, WhatsApp

Defined Under Namespace

Classes: Unknown, WhatsApp

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7836
7837
7838
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7836

def unknown
  @unknown
end

#whats_appTypes::WhatsAppMessageTemplateSourceConfigurationSummary

The sourceConfiguration summary of the message template that applies to the WHATSAPP channel subtype.



7836
7837
7838
7839
7840
7841
7842
7843
7844
7845
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7836

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

  class WhatsApp < MessageTemplateSourceConfigurationSummary; end
  class Unknown < MessageTemplateSourceConfigurationSummary; end
end