Class: Aws::Bedrock::Types::AutomatedReasoningPolicyAddTypeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyAddTypeValue
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Represents a single value that can be added to an existing custom type in the policy.
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#description ⇒ String
A description of what this new type value represents and when it should be used.
-
#value ⇒ String
The identifier or name of the new value to add to the type.
Instance Attribute Details
#description ⇒ String
A description of what this new type value represents and when it should be used.
631 632 633 634 635 636 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 631 class AutomatedReasoningPolicyAddTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |
#value ⇒ String
The identifier or name of the new value to add to the type.
631 632 633 634 635 636 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 631 class AutomatedReasoningPolicyAddTypeValue < Struct.new( :value, :description) SENSITIVE = [:description] include Aws::Structure end |