Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateVariableAnnotation

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#descriptionString

The new description for the variable, replacing the previous description.

Returns:

  • (String)


1943
1944
1945
1946
1947
1948
1949
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1943

class AutomatedReasoningPolicyUpdateVariableAnnotation < Struct.new(
  :name,
  :new_name,
  :description)
  SENSITIVE = [:name, :new_name, :description]
  include Aws::Structure
end

#nameString

The current name of the variable to update.

Returns:

  • (String)


1943
1944
1945
1946
1947
1948
1949
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1943

class AutomatedReasoningPolicyUpdateVariableAnnotation < Struct.new(
  :name,
  :new_name,
  :description)
  SENSITIVE = [:name, :new_name, :description]
  include Aws::Structure
end

#new_nameString

The new name for the variable, if you want to rename it. If not provided, the name remains unchanged.

Returns:

  • (String)


1943
1944
1945
1946
1947
1948
1949
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1943

class AutomatedReasoningPolicyUpdateVariableAnnotation < Struct.new(
  :name,
  :new_name,
  :description)
  SENSITIVE = [:name, :new_name, :description]
  include Aws::Structure
end