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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrock/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.

Returns:

  • (Array<String>)


1455
1456
1457
1458
1459
1460
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1455

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.

Returns:

  • (Array<String>)


1455
1456
1457
1458
1459
1460
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1455

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