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)


1276
1277
1278
1279
1280
1281
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1276

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

#valueString

The actual value or identifier for this type value.

Returns:

  • (String)


1276
1277
1278
1279
1280
1281
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1276

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