Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateFromRuleFeedbackAnnotation

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrock/types.rb

Overview

An annotation for updating the policy based on feedback about how specific rules performed during testing or real-world usage.

Constant Summary collapse

SENSITIVE =
[:feedback]

Instance Attribute Summary collapse

Instance Attribute Details

#feedbackString

The feedback information about rule performance, including suggestions for improvements or corrections.

Returns:

  • (String)


1777
1778
1779
1780
1781
1782
# File 'lib/aws-sdk-bedrock/types.rb', line 1777

class AutomatedReasoningPolicyUpdateFromRuleFeedbackAnnotation < Struct.new(
  :rule_ids,
  :feedback)
  SENSITIVE = [:feedback]
  include Aws::Structure
end

#rule_idsArray<String>

The list of rule identifiers that the feedback applies to.

Returns:

  • (Array<String>)


1777
1778
1779
1780
1781
1782
# File 'lib/aws-sdk-bedrock/types.rb', line 1777

class AutomatedReasoningPolicyUpdateFromRuleFeedbackAnnotation < Struct.new(
  :rule_ids,
  :feedback)
  SENSITIVE = [:feedback]
  include Aws::Structure
end