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.
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 |
#name ⇒ String
The name of the variable. Use descriptive names that clearly indicate the concept being represented.
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 |
#type ⇒ String
The data type of the variable. Valid types include bool, int, real, enum, and custom types that you can provide.
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 |