Class: Aws::BedrockAgentCoreControl::Types::ServerDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::ServerDefinition
- 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
-
#inline_content ⇒ String
The JSON content containing the MCP server definition, conforming to the MCP protocol specification.
-
#schema_version ⇒ String
The schema version of the server definition based on the MCP protocol specification.
Instance Attribute Details
#inline_content ⇒ String
The JSON content containing the MCP server definition, conforming to the MCP protocol specification.
14496 14497 14498 14499 14500 14501 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 14496 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.
14496 14497 14498 14499 14500 14501 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 14496 class ServerDefinition < Struct.new( :schema_version, :inline_content) SENSITIVE = [] include Aws::Structure end |