interface MCPServerDatadogConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.MCPServerDatadogConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_MCPServerDatadogConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.MCPServerDatadogConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.MCPServerDatadogConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » MCPServerDatadogConfigurationProperty |
Configuration for Datadog MCP server integration.
Defines the server name, endpoint URL, optional description, and webhook update settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
const mCPServerDatadogConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.MCPServerDatadogConfigurationProperty = {
description: 'description',
enableWebhookUpdates: false,
endpoint: 'endpoint',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the MCP server. |
| 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. |
| name? | string | The name of the MCP server. |
description?
Type:
string
(optional)
The description of the 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.
name?
Type:
string
(optional)
The name of the MCP server.

.NET
Go
Java
Python
TypeScript