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)


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

#nameString

The current name of the variable to update.

Returns:

  • (String)


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_nameString

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

Returns:

  • (String)


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