Class: Aws::Bedrock::Types::AutomatedReasoningPolicyAddTypeValue

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

Overview

Represents a single value that can be added to an existing custom type in the policy.

Constant Summary collapse

SENSITIVE =
[:description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of what this new type value represents and when it should be used.

Returns:

  • (String)


631
632
633
634
635
636
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 631

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

#valueString

The identifier or name of the new value to add to the type.

Returns:

  • (String)


631
632
633
634
635
636
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 631

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