Interface CfnAssociationPropsMixin.MCPServerConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociationPropsMixin.MCPServerConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAssociationPropsMixin

@Stability(Stable) public static interface CfnAssociationPropsMixin.MCPServerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for MCP (Model Context Protocol) server integration.

Defines the server name, endpoint URL, available tools, optional description, and webhook update settings for custom MCP servers.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.devopsagent.*;
 MCPServerConfigurationProperty mCPServerConfigurationProperty = MCPServerConfigurationProperty.builder()
         .description("description")
         .enableWebhookUpdates(false)
         .endpoint("endpoint")
         .name("name")
         .tools(List.of("tools"))
         .build();
 

See Also: