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.



3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3934

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



3934
3935
3936
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3934

def unknown
  @unknown
end