Interface CfnService.MCPServerGrafanaDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.MCPServerGrafanaDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.MCPServerGrafanaDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Grafana MCP server configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.devopsagent.*;
MCPServerGrafanaDetailsProperty mCPServerGrafanaDetailsProperty = MCPServerGrafanaDetailsProperty.builder()
.authorizationConfig(MCPServerGrafanaAuthorizationConfigProperty.builder()
.bearerToken(BearerTokenDetailsProperty.builder()
.tokenName("tokenName")
.tokenValue("tokenValue")
// the properties below are optional
.authorizationHeader("authorizationHeader")
.build())
.build())
.endpoint("endpoint")
.name("name")
// the properties below are optional
.description("description")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.MCPServerGrafanaDetailsPropertystatic final classAn implementation forCfnService.MCPServerGrafanaDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationConfig
Grafana MCP server authorization configuration.Returns union: either
IResolvableorCfnService.MCPServerGrafanaAuthorizationConfigProperty- See Also:
-
getEndpoint
MCP server endpoint URL.- See Also:
-
getName
MCP server name.- See Also:
-
getDescription
Optional description for the MCP server.- See Also:
-
builder
-