Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDisjointRuleSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyDisjointRuleSet
- 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
-
#rules ⇒ Array<String>
The list of rules that form this disjoint set, all operating on the same set of variables.
-
#variables ⇒ Array<String>
The set of variables that are used by the rules in this disjoint set.
Instance Attribute Details
#rules ⇒ Array<String>
The list of rules that form this disjoint set, all operating on the same set of variables.
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 |
#variables ⇒ Array<String>
The set of variables that are used by the rules in this disjoint set.
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 |