Interface CfnAssociationPropsMixin.MCPServerDatadogConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociationPropsMixin.MCPServerDatadogConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAssociationPropsMixin

@Stability(Stable) public static interface CfnAssociationPropsMixin.MCPServerDatadogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.*;
 MCPServerDatadogConfigurationProperty mCPServerDatadogConfigurationProperty = MCPServerDatadogConfigurationProperty.builder()
         .description("description")
         .enableWebhookUpdates(false)
         .endpoint("endpoint")
         .name("name")
         .build();
 

See Also: