Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDefinitionTypeValuePair

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

Overview

Associates a type name with a specific value name, used for referencing type values in rules and other policy elements.

Constant Summary collapse

SENSITIVE =
[:type_name]

Instance Attribute Summary collapse

Instance Attribute Details

#type_nameString

The name of the custom type that contains the referenced value.



1379
1380
1381
1382
1383
1384
# File 'lib/aws-sdk-bedrock/types.rb', line 1379

class AutomatedReasoningPolicyDefinitionTypeValuePair < Struct.new(
  :type_name,
  :value_name)
  SENSITIVE = [:type_name]
  include Aws::Structure
end

#value_nameString

The name of the specific value within the type.



1379
1380
1381
1382
1383
1384
# File 'lib/aws-sdk-bedrock/types.rb', line 1379

class AutomatedReasoningPolicyDefinitionTypeValuePair < Struct.new(
  :type_name,
  :value_name)
  SENSITIVE = [:type_name]
  include Aws::Structure
end