interface MCPServerNewRelicConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.MCPServerNewRelicConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_MCPServerNewRelicConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.MCPServerNewRelicConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.MCPServerNewRelicConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » 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 { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
const mCPServerNewRelicConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.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
(optional)
New Relic Account ID.
endpoint?
Type:
string
(optional)
MCP server endpoint URL (e.g., https://mcp.newrelic.com/mcp/).

.NET
Go
Java
Python
TypeScript