Interface CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAssociationPropsMixin
@Stability(Stable)
public static interface CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.devopsagent.*;
MCPServerGrafanaConfigurationProperty mCPServerGrafanaConfigurationProperty = MCPServerGrafanaConfigurationProperty.builder()
.enableWebhookUpdates(false)
.endpoint("endpoint")
.tools(List.of("tools"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhen set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.default StringMCP server endpoint URL.getTools()List of tool categories to enable for the Grafana MCP server.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getEndpoint
MCP server endpoint URL.- See Also:
-
getTools
List of tool categories to enable for the Grafana MCP server.- See Also:
-
builder
@Stability(Stable) static CfnAssociationPropsMixin.MCPServerGrafanaConfigurationProperty.Builder builder()
-