Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateVariableAnnotation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateVariableAnnotation
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
An annotation for modifying an existing variable in an Automated Reasoning policy.
Constant Summary collapse
- SENSITIVE =
[:name, :new_name, :description]
Instance Attribute Summary collapse
-
#description ⇒ String
The new description for the variable, replacing the previous description.
-
#name ⇒ String
The current name of the variable to update.
-
#new_name ⇒ String
The new name for the variable, if you want to rename it.
Instance Attribute Details
#description ⇒ String
The new description for the variable, replacing the previous description.
1953 1954 1955 1956 1957 1958 1959 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1953 class AutomatedReasoningPolicyUpdateVariableAnnotation < Struct.new( :name, :new_name, :description) SENSITIVE = [:name, :new_name, :description] include Aws::Structure end |
#name ⇒ String
The current name of the variable to update.
1953 1954 1955 1956 1957 1958 1959 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1953 class AutomatedReasoningPolicyUpdateVariableAnnotation < Struct.new( :name, :new_name, :description) SENSITIVE = [:name, :new_name, :description] include Aws::Structure end |
#new_name ⇒ String
The new name for the variable, if you want to rename it. If not provided, the name remains unchanged.
1953 1954 1955 1956 1957 1958 1959 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1953 class AutomatedReasoningPolicyUpdateVariableAnnotation < Struct.new( :name, :new_name, :description) SENSITIVE = [:name, :new_name, :description] include Aws::Structure end |