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.



597
598
599
600
601
602
603
604
605
606
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 597

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



597
598
599
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 597

def unknown
  @unknown
end