interface MCPServerGrafanaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.MCPServerGrafanaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_MCPServerGrafanaConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.MCPServerGrafanaConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.MCPServerGrafanaConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » MCPServerGrafanaConfigurationProperty |
Grafana MCP server configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const mCPServerGrafanaConfigurationProperty: devopsagent.CfnAssociation.MCPServerGrafanaConfigurationProperty = {
endpoint: 'endpoint',
// the properties below are optional
enableWebhookUpdates: false,
tools: ['tools'],
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | MCP server endpoint URL. |
| enable | boolean | IResolvable | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| tools? | string[] | List of tool categories to enable for the Grafana MCP server. |
endpoint
Type:
string
MCP server endpoint URL.
enableWebhookUpdates?
Type:
boolean | IResolvable
(optional)
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.
tools?
Type:
string[]
(optional)
List of tool categories to enable for the Grafana MCP server.

.NET
Go
Java
Python
TypeScript