Class: Aws::BedrockAgentRuntime::Types::ApiInvocationInput

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

Overview

Contains information about the API operation that the agent predicts should be called.

This data type is used in the following API operations:

^

Constant Summary collapse

SENSITIVE =
[:api_path]

Instance Attribute Summary collapse

Instance Attribute Details

#action_groupString

The action group that the API operation belongs to.

Returns:

  • (String)


126
127
128
129
130
131
132
133
134
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 126

class ApiInvocationInput < Struct.new(
  :action_group,
  :api_path,
  :http_method,
  :parameters,
  :request_body)
  SENSITIVE = [:api_path]
  include Aws::Structure
end

#api_pathString

The path to the API operation.

Returns:

  • (String)


126
127
128
129
130
131
132
133
134
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 126

class ApiInvocationInput < Struct.new(
  :action_group,
  :api_path,
  :http_method,
  :parameters,
  :request_body)
  SENSITIVE = [:api_path]
  include Aws::Structure
end

#http_methodString

The HTTP method of the API operation.

Returns:

  • (String)


126
127
128
129
130
131
132
133
134
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 126

class ApiInvocationInput < Struct.new(
  :action_group,
  :api_path,
  :http_method,
  :parameters,
  :request_body)
  SENSITIVE = [:api_path]
  include Aws::Structure
end

#parametersArray<Types::ApiParameter>

The parameters to provide for the API request, as the agent elicited from the user.

Returns:



126
127
128
129
130
131
132
133
134
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 126

class ApiInvocationInput < Struct.new(
  :action_group,
  :api_path,
  :http_method,
  :parameters,
  :request_body)
  SENSITIVE = [:api_path]
  include Aws::Structure
end

#request_bodyTypes::ApiRequestBody

The request body to provide for the API request, as the agent elicited from the user.



126
127
128
129
130
131
132
133
134
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 126

class ApiInvocationInput < Struct.new(
  :action_group,
  :api_path,
  :http_method,
  :parameters,
  :request_body)
  SENSITIVE = [:api_path]
  include Aws::Structure
end