interface MCPServerGrafanaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnAssociationPropsMixin_MCPServerGrafanaConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnAssociationPropsMixin » 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/cfn-property-mixins';
const mCPServerGrafanaConfigurationProperty: devopsagent.CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty = {
enableWebhookUpdates: false,
endpoint: 'endpoint',
tools: ['tools'],
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| endpoint? | string | MCP server endpoint URL. |
| tools? | string[] | List of tool categories to enable for the Grafana MCP server. |
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.
endpoint?
Type:
string
(optional)
MCP server endpoint URL.
tools?
Type:
string[]
(optional)
List of tool categories to enable for the Grafana MCP server.

.NET
Go
Java
Python
TypeScript