interface MCPServerSplunkDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.MCPServerSplunkDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_MCPServerSplunkDetailsProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.MCPServerSplunkDetailsProperty |
Python | aws_cdk.aws_devopsagent.CfnService.MCPServerSplunkDetailsProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » MCPServerSplunkDetailsProperty |
Splunk MCP server configuration.
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 mCPServerSplunkDetailsProperty: devopsagent.CfnService.MCPServerSplunkDetailsProperty = {
authorizationConfig: {
bearerToken: {
tokenName: 'tokenName',
tokenValue: 'tokenValue',
// the properties below are optional
authorizationHeader: 'authorizationHeader',
},
},
endpoint: 'endpoint',
name: 'name',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | MCPServer | MCP server splunk authorization configuration. |
| endpoint | string | MCP server endpoint URL. |
| name | string | MCP server name. |
| description? | string | Optional description for the MCP server. |
authorizationConfig
Type:
IResolvable | MCPServer
MCP server splunk authorization configuration.
endpoint
Type:
string
MCP server endpoint URL.
name
Type:
string
MCP server name.
description?
Type:
string
(optional)
Optional description for the MCP server.

.NET
Go
Java
Python
TypeScript