Class: Aws::BedrockAgent::Types::FlowNodeInput

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

Overview

Contains configurations for an input to a node.

Constant Summary collapse

SENSITIVE =
[:expression]

Instance Attribute Summary collapse

Instance Attribute Details

#expressionString

An expression that formats the input for the node. For an explanation of how to create expressions, see Expressions in Prompt flows in Amazon Bedrock.

Returns:

  • (String)


3428
3429
3430
3431
3432
3433
3434
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3428

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

#nameString

A name for the input that you can reference.

Returns:

  • (String)


3428
3429
3430
3431
3432
3433
3434
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3428

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

#typeString

The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.

Returns:

  • (String)


3428
3429
3430
3431
3432
3433
3434
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 3428

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