Class CfnAssociation.MCPServerDatadogConfigurationProperty
Configuration for Datadog MCP server integration.
Inherited Members
Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAssociation.MCPServerDatadogConfigurationProperty : CfnAssociation.IMCPServerDatadogConfigurationProperty
Syntax (vb)
Public Class CfnAssociation.MCPServerDatadogConfigurationProperty Implements CfnAssociation.IMCPServerDatadogConfigurationProperty
Remarks
Defines the server name, endpoint URL, optional description, and webhook update settings.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var mCPServerDatadogConfigurationProperty = new MCPServerDatadogConfigurationProperty {
Endpoint = "endpoint",
Name = "name",
// the properties below are optional
Description = "description",
EnableWebhookUpdates = false
};
Synopsis
Constructors
| MCPServerDatadogConfigurationProperty() | Configuration for Datadog MCP server integration. |
Properties
| Description | The description of the MCP server. |
| EnableWebhookUpdates | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| Endpoint | MCP server endpoint URL. |
| Name | The name of the MCP server. |
Constructors
MCPServerDatadogConfigurationProperty()
Configuration for Datadog MCP server integration.
public MCPServerDatadogConfigurationProperty()
Remarks
Defines the server name, endpoint URL, optional description, and webhook update settings.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var mCPServerDatadogConfigurationProperty = new MCPServerDatadogConfigurationProperty {
Endpoint = "endpoint",
Name = "name",
// the properties below are optional
Description = "description",
EnableWebhookUpdates = false
};
Properties
Description
The description of the MCP server.
public string? Description { get; set; }
Property Value
Remarks
EnableWebhookUpdates
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.
public object? EnableWebhookUpdates { get; set; }
Property Value
Remarks
Endpoint
MCP server endpoint URL.
public string Endpoint { get; set; }
Property Value
Remarks
Name
The name of the MCP server.
public string Name { get; set; }