Class: Aws::Bedrock::Types::AutomatedReasoningLogicStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningLogicStatement
- Includes:
- Structure
- Defined in:
- 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.
599 600 601 602 603 604 |
# File 'lib/aws-sdk-bedrock/types.rb', line 599 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.
599 600 601 602 603 604 |
# File 'lib/aws-sdk-bedrock/types.rb', line 599 class AutomatedReasoningLogicStatement < Struct.new( :logic, :natural_language) SENSITIVE = [:logic, :natural_language] include Aws::Structure end |