Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionType
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionType
- Defined in:
- gems/aws-sdk-bedrock/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.
1254 1255 1256 1257 1258 1259 1260 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1254 class AutomatedReasoningPolicyDefinitionType < Struct.new( :name, :description, :values) SENSITIVE = [:name, :description] include Aws::Structure end |
#name ⇒ String
The name of the custom type.
1254 1255 1256 1257 1258 1259 1260 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1254 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.
1254 1255 1256 1257 1258 1259 1260 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1254 class AutomatedReasoningPolicyDefinitionType < Struct.new( :name, :description, :values) SENSITIVE = [:name, :description] include Aws::Structure end |