Class: Aws::BedrockAgentCoreControl::Types::GatewayProtocolConfiguration

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

Mcp, Unknown

Defined Under Namespace

Classes: Mcp, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#mcpTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1935
1936
1937
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1935

def unknown
  @unknown
end