Class: Aws::QConnect::Types::DataReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::DataReference
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Direct Known Subclasses
ContentReference, GenerativeReference, SuggestedMessageReference, Unknown
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.
3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 |
# File 'lib/aws-sdk-qconnect/types.rb', line 3777 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.
3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 |
# File 'lib/aws-sdk-qconnect/types.rb', line 3777 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.
3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 |
# File 'lib/aws-sdk-qconnect/types.rb', line 3777 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
3777 3778 3779 |
# File 'lib/aws-sdk-qconnect/types.rb', line 3777 def unknown @unknown end |