Class: Aws::QConnect::Types::MessageTemplateSourceConfigurationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::MessageTemplateSourceConfigurationSummary
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#whats_app ⇒ Types::WhatsAppMessageTemplateSourceConfigurationSummary
The sourceConfiguration summary of the message template that applies to the WHATSAPP channel subtype.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
7836 7837 7838 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 7836 def unknown @unknown end |
#whats_app ⇒ Types::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 |