Class: Aws::QConnect::Types::MessageTemplateSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::MessageTemplateSourceConfiguration
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Note:
MessageTemplateSourceConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
MessageTemplateSourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MessageTemplateSourceConfiguration corresponding to the set member.
The container of message template source configuration.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#whats_app ⇒ Types::WhatsAppMessageTemplateSourceConfiguration
The sourceConfiguration of the message template that applies to the WHATSAPP channel subtype.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
7814 7815 7816 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7814 def unknown @unknown end |
#whats_app ⇒ Types::WhatsAppMessageTemplateSourceConfiguration
The sourceConfiguration of the message template that applies to the WHATSAPP channel subtype.
7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7814 class MessageTemplateSourceConfiguration < Struct.new( :whats_app, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class WhatsApp < MessageTemplateSourceConfiguration; end class Unknown < MessageTemplateSourceConfiguration; end end |