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