Class: Aws::Bedrock::Types::AutomatedReasoningLogicStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningLogicStatement
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Represents a logical statement that can be expressed both in formal logic notation and natural language, providing dual representations for better understanding and validation.
Constant Summary collapse
- SENSITIVE =
[:logic, :natural_language]
Instance Attribute Summary collapse
-
#logic ⇒ String
The formal logic representation of the statement using mathematical notation and logical operators.
-
#natural_language ⇒ String
The natural language representation of the logical statement, providing a human-readable interpretation of the formal logic.
Instance Attribute Details
#logic ⇒ String
The formal logic representation of the statement using mathematical notation and logical operators.
516 517 518 519 520 521 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 516 class AutomatedReasoningLogicStatement < Struct.new( :logic, :natural_language) SENSITIVE = [:logic, :natural_language] include Aws::Structure end |
#natural_language ⇒ String
The natural language representation of the logical statement, providing a human-readable interpretation of the formal logic.
516 517 518 519 520 521 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 516 class AutomatedReasoningLogicStatement < Struct.new( :logic, :natural_language) SENSITIVE = [:logic, :natural_language] include Aws::Structure end |