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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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].

[1]: docs.aws.amazon.com/bedrock/latest/userguide/flows-expressions.html

Returns:

  • (String)


3244
3245
3246
3247
3248
3249
3250
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3244

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)


3244
3245
3246
3247
3248
3249
3250
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3244

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)


3244
3245
3246
3247
3248
3249
3250
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3244

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