Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionType

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

Overview

Represents a custom user-defined viarble type in an Automated Reasoning policy. Types are enum-based and provide additional context beyond predefined variable types.

Constant Summary collapse

SENSITIVE =
[:name, :description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of what the custom type represents.

Returns:

  • (String)


1254
1255
1256
1257
1258
1259
1260
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1254

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

#nameString

The name of the custom type.

Returns:

  • (String)


1254
1255
1256
1257
1258
1259
1260
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1254

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

#valuesArray<Types::AutomatedReasoningPolicyDefinitionTypeValue>

The possible values for this enum-based type, each with its own description.



1254
1255
1256
1257
1258
1259
1260
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1254

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