Interface CfnAssociation.MCPServerConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssociation.MCPServerConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAssociation
@Stability(Stable)
public static interface CfnAssociation.MCPServerConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
MCP server configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.devopsagent.*;
MCPServerConfigurationProperty mCPServerConfigurationProperty = MCPServerConfigurationProperty.builder()
.endpoint("endpoint")
.name("name")
.tools(List.of("tools"))
// the properties below are optional
.description("description")
.enableWebhookUpdates(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssociation.MCPServerConfigurationPropertystatic final classAn implementation forCfnAssociation.MCPServerConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the MCP server.default ObjectWhen set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.MCP server endpoint URL.getName()The name of the MCP server.getTools()List of MCP tools that can be used with the association.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpoint
MCP server endpoint URL.- See Also:
-
getName
The name of the MCP server.- See Also:
-
getTools
List of MCP tools that can be used with the association.- See Also:
-
getDescription
The description of the MCP server.- See Also:
-
getEnableWebhookUpdates
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-