Class: Aws::BedrockAgentRuntime::Types::ParameterDetail

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

Overview

Contains details about a parameter in a function for an action group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of the parameter. Helps the foundation model determine how to elicit the parameters from the user.

Returns:

  • (String)


3381
3382
3383
3384
3385
3386
3387
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3381

class ParameterDetail < Struct.new(
  :description,
  :required,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#requiredBoolean

Whether the parameter is required for the agent to complete the function for action group invocation.

Returns:

  • (Boolean)


3381
3382
3383
3384
3385
3386
3387
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3381

class ParameterDetail < Struct.new(
  :description,
  :required,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The data type of the parameter.

Returns:

  • (String)


3381
3382
3383
3384
3385
3386
3387
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3381

class ParameterDetail < Struct.new(
  :description,
  :required,
  :type)
  SENSITIVE = []
  include Aws::Structure
end