Class: Aws::BedrockRuntime::Types::GuardrailAutomatedReasoningStatement

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

Overview

A logical statement that includes both formal logic representation and natural language explanation.

Constant Summary collapse

SENSITIVE =
[:logic, :natural_language]

Instance Attribute Summary collapse

Instance Attribute Details

#logicString

The formal logical representation of the statement.

Returns:

  • (String)


2040
2041
2042
2043
2044
2045
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2040

class GuardrailAutomatedReasoningStatement < Struct.new(
  :logic,
  :natural_language)
  SENSITIVE = [:logic, :natural_language]
  include Aws::Structure
end

#natural_languageString

The natural language explanation of the logical statement.

Returns:

  • (String)


2040
2041
2042
2043
2044
2045
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2040

class GuardrailAutomatedReasoningStatement < Struct.new(
  :logic,
  :natural_language)
  SENSITIVE = [:logic, :natural_language]
  include Aws::Structure
end