Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionVariable

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb

Overview

Represents a variable in an Automated Reasoning policy. Variables represent concepts that can have values assigned during natural language translation.

Constant Summary collapse

SENSITIVE =
[:name, :type, :description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the variable that explains what it represents and how users might refer to it. Clear and comprehensive descriptions are essential for accurate natural language translation.

Returns:

  • (String)


1325
1326
1327
1328
1329
1330
1331
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1325

class AutomatedReasoningPolicyDefinitionVariable < Struct.new(
  :name,
  :type,
  :description)
  SENSITIVE = [:name, :type, :description]
  include Aws::Structure
end

#nameString

The name of the variable. Use descriptive names that clearly indicate the concept being represented.

Returns:

  • (String)


1325
1326
1327
1328
1329
1330
1331
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1325

class AutomatedReasoningPolicyDefinitionVariable < Struct.new(
  :name,
  :type,
  :description)
  SENSITIVE = [:name, :type, :description]
  include Aws::Structure
end

#typeString

The data type of the variable. Valid types include bool, int, real, enum, and custom types that you can provide.

Returns:

  • (String)


1325
1326
1327
1328
1329
1330
1331
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1325

class AutomatedReasoningPolicyDefinitionVariable < Struct.new(
  :name,
  :type,
  :description)
  SENSITIVE = [:name, :type, :description]
  include Aws::Structure
end