Class: Aws::QConnect::Types::MessageTemplateBodyContentProvider
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::MessageTemplateBodyContentProvider
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Note:
MessageTemplateBodyContentProvider is a union - when making an API calls you must set exactly one of the members.
Note:
MessageTemplateBodyContentProvider is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MessageTemplateBodyContentProvider corresponding to the set member.
The container of the message template body.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[:content]
Instance Attribute Summary collapse
-
#content ⇒ String
The content of the message template.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#content ⇒ String
The content of the message template.
6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6593 class MessageTemplateBodyContentProvider < Struct.new( :content, :unknown) SENSITIVE = [:content] include Aws::Structure include Aws::Structure::Union class Content < MessageTemplateBodyContentProvider; end class Unknown < MessageTemplateBodyContentProvider; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6593 6594 6595 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 6593 def unknown @unknown end |