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.
Direct Known Subclasses
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.
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1446 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
1446 1447 1448 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 1446 def unknown @unknown end |