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

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


1790
1791
1792
1793
1794
1795
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1790

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)


1790
1791
1792
1793
1794
1795
# File 'gems/aws-sdk-bedrockruntime/lib/aws-sdk-bedrockruntime/types.rb', line 1790

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