Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionTypeValue

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

Overview

Represents a single value within a custom type definition, including its identifier and description.

Constant Summary collapse

SENSITIVE =
[:description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A human-readable description explaining what this type value represents and when it should be used.

Returns:

  • (String)


1268
1269
1270
1271
1272
1273
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1268

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

#valueString

The actual value or identifier for this type value.

Returns:

  • (String)


1268
1269
1270
1271
1272
1273
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1268

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