Class: Aws::BedrockAgentCoreControl::Types::ServerDefinition

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb

Overview

The server definition for an MCP descriptor. Contains the schema version and inline content for the MCP server configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#inline_content ⇒ String

The JSON content containing the MCP server definition, conforming to the MCP protocol specification.

Returns:

  • (String)


19275
19276
19277
19278
19279
19280
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 19275

class ServerDefinition < Struct.new(
  :schema_version,
  :inline_content)
  SENSITIVE = []
  include Aws::Structure
end

#schema_version ⇒ String

The schema version of the server definition based on the MCP protocol specification. If not specified, the version is auto-detected from the content.

Returns:

  • (String)


19275
19276
19277
19278
19279
19280
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 19275

class ServerDefinition < Struct.new(
  :schema_version,
  :inline_content)
  SENSITIVE = []
  include Aws::Structure
end