Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDisjointRuleSet

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

Overview

Represents a set of rules that operate on completely separate variables, indicating they address different concerns or domains within the policy.

Constant Summary collapse

SENSITIVE =
[:variables]

Instance Attribute Summary collapse

Instance Attribute Details

#rulesArray<String>

The list of rules that form this disjoint set, all operating on the same set of variables.



1538
1539
1540
1541
1542
1543
# File 'lib/aws-sdk-bedrock/types.rb', line 1538

class AutomatedReasoningPolicyDisjointRuleSet < Struct.new(
  :variables,
  :rules)
  SENSITIVE = [:variables]
  include Aws::Structure
end

#variablesArray<String>

The set of variables that are used by the rules in this disjoint set.



1538
1539
1540
1541
1542
1543
# File 'lib/aws-sdk-bedrock/types.rb', line 1538

class AutomatedReasoningPolicyDisjointRuleSet < Struct.new(
  :variables,
  :rules)
  SENSITIVE = [:variables]
  include Aws::Structure
end