Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateTypeValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateTypeValue
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Represents a modification to a value within an existing custom type.
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#description ⇒ String
The new description for the type value, replacing the previous description.
-
#new_value ⇒ String
The new identifier or name for the type value, if you want to rename it.
-
#value ⇒ String
The current identifier or name of the type value to update.
Instance Attribute Details
#description ⇒ String
The new description for the type value, replacing the previous description.
1916 1917 1918 1919 1920 1921 1922 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1916 class AutomatedReasoningPolicyUpdateTypeValue < Struct.new( :value, :new_value, :description) SENSITIVE = [:description] include Aws::Structure end |
#new_value ⇒ String
The new identifier or name for the type value, if you want to rename it.
1916 1917 1918 1919 1920 1921 1922 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1916 class AutomatedReasoningPolicyUpdateTypeValue < Struct.new( :value, :new_value, :description) SENSITIVE = [:description] include Aws::Structure end |
#value ⇒ String
The current identifier or name of the type value to update.
1916 1917 1918 1919 1920 1921 1922 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1916 class AutomatedReasoningPolicyUpdateTypeValue < Struct.new( :value, :new_value, :description) SENSITIVE = [:description] include Aws::Structure end |