interface MCPServerNewRelicConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.MCPServerNewRelicConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_MCPServerNewRelicConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.MCPServerNewRelicConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.MCPServerNewRelicConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » MCPServerNewRelicConfigurationProperty |
Configuration for New Relic MCP server integration.
Defines the New Relic account ID and MCP server endpoint URL required for the Agent Space to authenticate and query observability data from New Relic.
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-lib';
const mCPServerNewRelicConfigurationProperty: devopsagent.CfnAssociation.MCPServerNewRelicConfigurationProperty = {
accountId: 'accountId',
endpoint: 'endpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | New Relic Account ID. |
| endpoint | string | MCP server endpoint URL (e.g., https://mcp.newrelic.com/mcp/). |
accountId
Type:
string
New Relic Account ID.
endpoint
Type:
string
MCP server endpoint URL (e.g., https://mcp.newrelic.com/mcp/).

.NET
Go
Java
Python
TypeScript