Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionTypeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionTypeValue
- Includes:
- Structure
- Defined in:
- 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.
1359 1360 1361 1362 1363 1364 |
# File 'lib/aws-sdk-bedrock/types.rb', line 1359 class AutomatedReasoningPolicyDefinitionTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |
#value ⇒ String
The actual value or identifier for this type value.
1359 1360 1361 1362 1363 1364 |
# File 'lib/aws-sdk-bedrock/types.rb', line 1359 class AutomatedReasoningPolicyDefinitionTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |