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.
1926 1927 1928 1929 1930 1931 1932 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1926 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.
1926 1927 1928 1929 1930 1931 1932 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1926 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.
1926 1927 1928 1929 1930 1931 1932 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1926 class AutomatedReasoningPolicyUpdateTypeValue < Struct.new( :value, :new_value, :description) SENSITIVE = [:description] include Aws::Structure end |