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.
1276 1277 1278 1279 1280 1281 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1276 class AutomatedReasoningPolicyDefinitionTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |
#value ⇒ String
The actual value or identifier for this type value.
1276 1277 1278 1279 1280 1281 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1276 class AutomatedReasoningPolicyDefinitionTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |