Class: Aws::BedrockAgentCoreControl::Types::TargetConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::TargetConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
TargetConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
TargetConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TargetConfiguration corresponding to the set member.
The configuration for a gateway target. This structure defines how the gateway connects to and interacts with the target endpoint.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mcp ⇒ Types::McpTargetConfiguration
The Model Context Protocol (MCP) configuration for the target.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#mcp ⇒ Types::McpTargetConfiguration
The Model Context Protocol (MCP) configuration for the target. This configuration defines how the gateway uses MCP to communicate with the target.
4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4419 class TargetConfiguration < Struct.new( :mcp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Mcp < TargetConfiguration; end class Unknown < TargetConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4419 4420 4421 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 4419 def unknown @unknown end |