Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateTypeAnnotation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateTypeAnnotation
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
An annotation for modifying an existing custom type in an Automated Reasoning policy.
Constant Summary collapse
- SENSITIVE =
[:name, :new_name, :description]
Instance Attribute Summary collapse
-
#description ⇒ String
The new description for the custom type, replacing the previous description.
-
#name ⇒ String
The current name of the custom type to update.
-
#new_name ⇒ String
The new name for the custom type, if you want to rename it.
-
#values ⇒ Array<Types::AutomatedReasoningPolicyTypeValueAnnotation>
The updated list of values for the custom type, which can include additions, modifications, or removals.
Instance Attribute Details
#description ⇒ String
The new description for the custom type, replacing the previous description.
1882 1883 1884 1885 1886 1887 1888 1889 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1882 class AutomatedReasoningPolicyUpdateTypeAnnotation < Struct.new( :name, :new_name, :description, :values) SENSITIVE = [:name, :new_name, :description] include Aws::Structure end |
#name ⇒ String
The current name of the custom type to update.
1882 1883 1884 1885 1886 1887 1888 1889 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1882 class AutomatedReasoningPolicyUpdateTypeAnnotation < Struct.new( :name, :new_name, :description, :values) SENSITIVE = [:name, :new_name, :description] include Aws::Structure end |
#new_name ⇒ String
The new name for the custom type, if you want to rename it. If not provided, the name remains unchanged.
1882 1883 1884 1885 1886 1887 1888 1889 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1882 class AutomatedReasoningPolicyUpdateTypeAnnotation < Struct.new( :name, :new_name, :description, :values) SENSITIVE = [:name, :new_name, :description] include Aws::Structure end |
#values ⇒ Array<Types::AutomatedReasoningPolicyTypeValueAnnotation>
The updated list of values for the custom type, which can include additions, modifications, or removals.
1882 1883 1884 1885 1886 1887 1888 1889 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1882 class AutomatedReasoningPolicyUpdateTypeAnnotation < Struct.new( :name, :new_name, :description, :values) SENSITIVE = [:name, :new_name, :description] include Aws::Structure end |