Class: Aws::QConnect::Types::ContentFeedbackData
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::ContentFeedbackData
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Note:
ContentFeedbackData is a union - when making an API calls you must set exactly one of the members.
Note:
ContentFeedbackData is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ContentFeedbackData corresponding to the set member.
Information about the feedback.
Defined Under Namespace
Classes: GenerativeContentFeedbackData, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#generative_content_feedback_data ⇒ Types::GenerativeContentFeedbackData
Information about the feedback for a generative target type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#generative_content_feedback_data ⇒ Types::GenerativeContentFeedbackData
Information about the feedback for a generative target type.
2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2054 class ContentFeedbackData < Struct.new( :generative_content_feedback_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class GenerativeContentFeedbackData < ContentFeedbackData; end class Unknown < ContentFeedbackData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2054 2055 2056 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2054 def unknown @unknown end |