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

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

^

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the parameter.

Returns:

  • (String)


624
625
626
627
628
629
630
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 624

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

#typeString

The data type of the parameter.

Returns:

  • (String)


624
625
626
627
628
629
630
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 624

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

#valueString

The value of the parameter.

Returns:

  • (String)


624
625
626
627
628
629
630
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 624

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