Class: Aws::QConnect::Types::ContentFeedbackData

Inherits:
Struct
  • Object
show all
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

GenerativeContentFeedbackData, Unknown

Defined Under Namespace

Classes: GenerativeContentFeedbackData, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#generative_content_feedback_dataTypes::GenerativeContentFeedbackData

Information about the feedback for a generative target type.



751
752
753
754
755
756
757
758
759
760
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 751

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



751
752
753
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 751

def unknown
  @unknown
end