Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateTypeAnnotation

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

Instance Attribute Details

#descriptionString

The new description for the custom type, replacing the previous description.

Returns:

  • (String)


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

#nameString

The current name of the custom type to update.

Returns:

  • (String)


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_nameString

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

Returns:

  • (String)


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

#valuesArray<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