Class: Aws::BedrockAgentCoreControl::Types::McpLambdaTargetConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::McpLambdaTargetConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
The Lambda configuration for a Model Context Protocol target. This structure defines how the gateway uses a Lambda function to communicate with the target.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lambda_arn ⇒ String
The Amazon Resource Name (ARN) of the Lambda function.
-
#tool_schema ⇒ Types::ToolSchema
The tool schema for the Lambda function.
Instance Attribute Details
#lambda_arn ⇒ String
The Amazon Resource Name (ARN) of the Lambda function. This function is invoked by the gateway to communicate with the target.
3256 3257 3258 3259 3260 3261 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3256 class McpLambdaTargetConfiguration < Struct.new( :lambda_arn, :tool_schema) SENSITIVE = [] include Aws::Structure end |
#tool_schema ⇒ Types::ToolSchema
The tool schema for the Lambda function. This schema defines the structure of the tools that the Lambda function provides.
3256 3257 3258 3259 3260 3261 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3256 class McpLambdaTargetConfiguration < Struct.new( :lambda_arn, :tool_schema) SENSITIVE = [] include Aws::Structure end |