Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionType
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-bedrock/types.rb
Overview
Represents a custom user-defined viarble type in an Automated Reasoning policy. Types are enum-based and provide additional context beyond predefined variable types.
Constant Summary collapse
- SENSITIVE =
[:name, :description]
Instance Attribute Summary collapse
-
#description ⇒ String
The description of what the custom type represents.
-
#name ⇒ String
The name of the custom type.
-
#values ⇒ Array<Types::AutomatedReasoningPolicyDefinitionTypeValue>
The possible values for this enum-based type, each with its own description.
Instance Attribute Details
#description ⇒ String
The description of what the custom type represents.
1345 1346 1347 1348 1349 1350 1351 |
# File 'lib/aws-sdk-bedrock/types.rb', line 1345 class AutomatedReasoningPolicyDefinitionType < Struct.new( :name, :description, :values) SENSITIVE = [:name, :description] include Aws::Structure end |
#name ⇒ String
The name of the custom type.
1345 1346 1347 1348 1349 1350 1351 |
# File 'lib/aws-sdk-bedrock/types.rb', line 1345 class AutomatedReasoningPolicyDefinitionType < Struct.new( :name, :description, :values) SENSITIVE = [:name, :description] include Aws::Structure end |
#values ⇒ Array<Types::AutomatedReasoningPolicyDefinitionTypeValue>
The possible values for this enum-based type, each with its own description.
1345 1346 1347 1348 1349 1350 1351 |
# File 'lib/aws-sdk-bedrock/types.rb', line 1345 class AutomatedReasoningPolicyDefinitionType < Struct.new( :name, :description, :values) SENSITIVE = [:name, :description] include Aws::Structure end |