Class: Aws::Bedrock::Types::AutomatedReasoningPolicyAddTypeAnnotation

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

Overview

An annotation for adding a new custom type to an Automated Reasoning policy, defining a set of possible values for variables.

Constant Summary collapse

SENSITIVE =
[:name, :description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of what the custom type represents and how it should be used in the policy.

Returns:

  • (String)


592
593
594
595
596
597
598
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 592

class AutomatedReasoningPolicyAddTypeAnnotation < Struct.new(
  :name,
  :description,
  :values)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end

#nameString

The name of the new custom type. This name will be used to reference the type in variable definitions and rules.

Returns:

  • (String)


592
593
594
595
596
597
598
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 592

class AutomatedReasoningPolicyAddTypeAnnotation < Struct.new(
  :name,
  :description,
  :values)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end

#valuesArray<Types::AutomatedReasoningPolicyDefinitionTypeValue>

The list of possible values that variables of this type can take, each with its own description and identifier.



592
593
594
595
596
597
598
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 592

class AutomatedReasoningPolicyAddTypeAnnotation < Struct.new(
  :name,
  :description,
  :values)
  SENSITIVE = [:name, :description]
  include Aws::Structure
end