Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionTypeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionTypeValue
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Represents a single value within a custom type definition, including its identifier and description.
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#description ⇒ String
A human-readable description explaining what this type value represents and when it should be used.
-
#value ⇒ String
The actual value or identifier for this type value.
Instance Attribute Details
#description ⇒ String
A human-readable description explaining what this type value represents and when it should be used.
1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1268 class AutomatedReasoningPolicyDefinitionTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |
#value ⇒ String
The actual value or identifier for this type value.
1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1268 class AutomatedReasoningPolicyDefinitionTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |