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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


2073
2074
2075
2076
2077
2078
2079
# File 'lib/aws-sdk-bedrock/types.rb', line 2073

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)


2073
2074
2075
2076
2077
2078
2079
# File 'lib/aws-sdk-bedrock/types.rb', line 2073

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)


2073
2074
2075
2076
2077
2078
2079
# File 'lib/aws-sdk-bedrock/types.rb', line 2073

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