Class: Aws::BedrockAgentRuntime::Types::ReturnControlPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::ReturnControlPayload
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains information to return from the action group that the agent has predicted to invoke.
This data type is used in the following API operations:
^
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#invocation_id ⇒ String
The identifier of the action group invocation.
-
#invocation_inputs ⇒ Array<Types::InvocationInputMember>
A list of objects that contain information about the parameters and inputs that need to be sent into the API operation or function, based on what the agent determines from its session with the user.
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
4532 4533 4534 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 4532 def event_type @event_type end |
#invocation_id ⇒ String
The identifier of the action group invocation.
4532 4533 4534 4535 4536 4537 4538 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 4532 class ReturnControlPayload < Struct.new( :invocation_id, :invocation_inputs, :event_type) SENSITIVE = [] include Aws::Structure end |
#invocation_inputs ⇒ Array<Types::InvocationInputMember>
A list of objects that contain information about the parameters and inputs that need to be sent into the API operation or function, based on what the agent determines from its session with the user.
4532 4533 4534 4535 4536 4537 4538 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 4532 class ReturnControlPayload < Struct.new( :invocation_id, :invocation_inputs, :event_type) SENSITIVE = [] include Aws::Structure end |