Class: Aws::BedrockAgentRuntime::Types::FunctionParameter

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

Overview

Contains information about a parameter of the function.

This data type is used in the following API operations:

  • In the ‘returnControl` field of the [InvokeAgent response]

^

[1]: docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_InvokeAgent.html#API_agent-runtime_InvokeAgent_ResponseSyntax

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the parameter.

Returns:

  • (String)


2723
2724
2725
2726
2727
2728
2729
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2723

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

#typeString

The data type of the parameter.

Returns:

  • (String)


2723
2724
2725
2726
2727
2728
2729
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2723

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

#valueString

The value of the parameter.

Returns:

  • (String)


2723
2724
2725
2726
2727
2728
2729
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 2723

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