Class: Aws::QConnect::Types::DataReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::DataReference
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Note:
DataReference is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataReference corresponding to the set member.
Reference data.
Defined Under Namespace
Classes: ContentReference, GenerativeReference, SuggestedMessageReference, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_reference ⇒ Types::ContentReference
Reference information about the content.
-
#generative_reference ⇒ Types::GenerativeReference
Reference information about the generative content.
-
#suggested_message_reference ⇒ Types::SuggestedMessageReference
Reference information for suggested messages.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#content_reference ⇒ Types::ContentReference
Reference information about the content.
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3816 class DataReference < Struct.new( :content_reference, :generative_reference, :suggested_message_reference, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ContentReference < DataReference; end class GenerativeReference < DataReference; end class SuggestedMessageReference < DataReference; end class Unknown < DataReference; end end |
#generative_reference ⇒ Types::GenerativeReference
Reference information about the generative content.
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3816 class DataReference < Struct.new( :content_reference, :generative_reference, :suggested_message_reference, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ContentReference < DataReference; end class GenerativeReference < DataReference; end class SuggestedMessageReference < DataReference; end class Unknown < DataReference; end end |
#suggested_message_reference ⇒ Types::SuggestedMessageReference
Reference information for suggested messages.
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3816 class DataReference < Struct.new( :content_reference, :generative_reference, :suggested_message_reference, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ContentReference < DataReference; end class GenerativeReference < DataReference; end class SuggestedMessageReference < DataReference; end class Unknown < DataReference; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3816 3817 3818 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 3816 def unknown @unknown end |