Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateRuleAnnotation

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

Overview

An annotation for modifying an existing rule in an Automated Reasoning policy.

Constant Summary collapse

SENSITIVE =
[:expression]

Instance Attribute Summary collapse

Instance Attribute Details

#expressionString

The new formal logical expression for the rule, replacing the previous expression.

Returns:

  • (String)


1834
1835
1836
1837
1838
1839
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1834

class AutomatedReasoningPolicyUpdateRuleAnnotation < Struct.new(
  :rule_id,
  :expression)
  SENSITIVE = [:expression]
  include Aws::Structure
end

#rule_idString

The unique identifier of the rule to update.

Returns:

  • (String)


1834
1835
1836
1837
1838
1839
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1834

class AutomatedReasoningPolicyUpdateRuleAnnotation < Struct.new(
  :rule_id,
  :expression)
  SENSITIVE = [:expression]
  include Aws::Structure
end