Class: Aws::Bedrock::Types::AutomatedReasoningPolicyUpdateTypeValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb

Overview

Represents a modification to a value within an existing custom type.

Constant Summary collapse

SENSITIVE =
[:description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

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

Returns:

  • (String)


1926
1927
1928
1929
1930
1931
1932
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1926

class AutomatedReasoningPolicyUpdateTypeValue < Struct.new(
  :value,
  :new_value,
  :description)
  SENSITIVE = [:description]
  include Aws::Structure
end

#new_valueString

The new identifier or name for the type value, if you want to rename it.

Returns:

  • (String)


1926
1927
1928
1929
1930
1931
1932
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1926

class AutomatedReasoningPolicyUpdateTypeValue < Struct.new(
  :value,
  :new_value,
  :description)
  SENSITIVE = [:description]
  include Aws::Structure
end

#valueString

The current identifier or name of the type value to update.

Returns:

  • (String)


1926
1927
1928
1929
1930
1931
1932
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1926

class AutomatedReasoningPolicyUpdateTypeValue < Struct.new(
  :value,
  :new_value,
  :description)
  SENSITIVE = [:description]
  include Aws::Structure
end