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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrock/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.

Returns:

  • (String)


1296
1297
1298
1299
1300
1301
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1296

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.

Returns:

  • (String)


1296
1297
1298
1299
1300
1301
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1296

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