Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionVariable
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionVariable
- 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
-
#description ⇒ String
The description of the variable that explains what it represents and how users might refer to it.
-
#name ⇒ String
The name of the variable.
-
#type ⇒ String
The data type of the variable.
Instance Attribute Details
#description ⇒ String
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.
1317 1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1317 class AutomatedReasoningPolicyDefinitionVariable < Struct.new( :name, :type, :description) SENSITIVE = [:name, :type, :description] include Aws::Structure end |
#name ⇒ String
The name of the variable. Use descriptive names that clearly indicate the concept being represented.
1317 1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1317 class AutomatedReasoningPolicyDefinitionVariable < Struct.new( :name, :type, :description) SENSITIVE = [:name, :type, :description] include Aws::Structure end |
#type ⇒ String
The data type of the variable. Valid types include bool, int, real, enum, and custom types that you can provide.
1317 1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1317 class AutomatedReasoningPolicyDefinitionVariable < Struct.new( :name, :type, :description) SENSITIVE = [:name, :type, :description] include Aws::Structure end |