Class: Aws::BedrockAgent::Types::FlowCondition

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

Overview

Defines a condition in the condition node.

Constant Summary collapse

SENSITIVE =
[:expression]

Instance Attribute Summary collapse

Instance Attribute Details

#expressionString

Defines the condition. You must refer to at least one of the inputs in the condition. For more information, expand the Condition node section in Node types in prompt flows.

Returns:

  • (String)


4127
4128
4129
4130
4131
4132
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4127

class FlowCondition < Struct.new(
  :name,
  :expression)
  SENSITIVE = [:expression]
  include Aws::Structure
end

#nameString

A name for the condition that you can reference.

Returns:

  • (String)


4127
4128
4129
4130
4131
4132
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 4127

class FlowCondition < Struct.new(
  :name,
  :expression)
  SENSITIVE = [:expression]
  include Aws::Structure
end