Interface CfnService.MCPServerGrafanaAuthorizationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.MCPServerGrafanaAuthorizationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.MCPServerGrafanaAuthorizationConfigProperty
extends software.amazon.jsii.JsiiSerializable
Grafana MCP server authorization 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.*;
MCPServerGrafanaAuthorizationConfigProperty mCPServerGrafanaAuthorizationConfigProperty = MCPServerGrafanaAuthorizationConfigProperty.builder()
.bearerToken(BearerTokenDetailsProperty.builder()
.tokenName("tokenName")
.tokenValue("tokenValue")
// the properties below are optional
.authorizationHeader("authorizationHeader")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.MCPServerGrafanaAuthorizationConfigPropertystatic final classAn implementation forCfnService.MCPServerGrafanaAuthorizationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBearerToken
Bearer token authentication details.Returns union: either
IResolvableorCfnService.BearerTokenDetailsProperty- See Also:
-
builder
-