interface RegisteredMCPServerGrafanaDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.RegisteredMCPServerGrafanaDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_RegisteredMCPServerGrafanaDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.RegisteredMCPServerGrafanaDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.RegisteredMCPServerGrafanaDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » RegisteredMCPServerGrafanaDetailsProperty |
Grafana MCP server details returned after registration.
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/cfn-property-mixins';
const registeredMCPServerGrafanaDetailsProperty: devopsagent.CfnServicePropsMixin.RegisteredMCPServerGrafanaDetailsProperty = {
authorizationMethod: 'authorizationMethod',
description: 'description',
endpoint: 'endpoint',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | MCP server authorization method. |
| description? | string | Optional description for the MCP server. |
| endpoint? | string | MCP server endpoint URL. |
| name? | string | MCP server name. |
authorizationMethod?
Type:
string
(optional)
MCP server authorization method.
description?
Type:
string
(optional)
Optional description for the MCP server.
endpoint?
Type:
string
(optional)
MCP server endpoint URL.
name?
Type:
string
(optional)
MCP server name.

.NET
Go
Java
Python
TypeScript