Class: Aws::BedrockAgentCoreControl::Types::TargetConfiguration

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

Direct Known Subclasses

Mcp, Unknown

Defined Under Namespace

Classes: Mcp, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#mcpTypes::McpTargetConfiguration

The Model Context Protocol (MCP) configuration for the target. This configuration defines how the gateway uses MCP to communicate with the target.



8720
8721
8722
8723
8724
8725
8726
8727
8728
8729
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8720

class TargetConfiguration < Struct.new(
  :mcp,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Mcp < TargetConfiguration; end
  class Unknown < TargetConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



8720
8721
8722
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8720

def unknown
  @unknown
end