Class: Aws::BedrockAgentCoreControl::Types::GatewayProtocolConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::GatewayProtocolConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
GatewayProtocolConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
GatewayProtocolConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of GatewayProtocolConfiguration corresponding to the set member.
The configuration for a gateway protocol. This structure defines how the gateway communicates with external services.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mcp ⇒ Types::MCPGatewayConfiguration
The configuration for the Model Context Protocol (MCP).
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#mcp ⇒ Types::MCPGatewayConfiguration
The configuration for the Model Context Protocol (MCP). This protocol enables communication between Amazon Bedrock Agent and external tools.
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1935 class GatewayProtocolConfiguration < Struct.new( :mcp, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Mcp < GatewayProtocolConfiguration; end class Unknown < GatewayProtocolConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1935 1936 1937 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1935 def unknown @unknown end |