interface ServiceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.ServiceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_ServiceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.ServiceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.ServiceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » ServiceConfigurationProperty |
The configuration that directs how Agent Space interacts with the given service.
You can specify only one configuration type per association.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
declare const resourceMetadata: any;
const serviceConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.ServiceConfigurationProperty = {
aws: {
accountId: 'accountId',
accountType: 'accountType',
assumableRoleArn: 'assumableRoleArn',
resources: [{
resourceArn: 'resourceArn',
resourceMetadata: resourceMetadata,
resourceType: 'resourceType',
}],
tags: [{
key: 'key',
value: 'value',
}],
},
dynatrace: {
enableWebhookUpdates: false,
envId: 'envId',
resources: ['resources'],
},
eventChannel: {
enableWebhookUpdates: false,
},
gitHub: {
owner: 'owner',
ownerType: 'ownerType',
repoId: 'repoId',
repoName: 'repoName',
},
gitLab: {
enableWebhookUpdates: false,
instanceIdentifier: 'instanceIdentifier',
projectId: 'projectId',
projectPath: 'projectPath',
},
mcpServer: {
description: 'description',
enableWebhookUpdates: false,
endpoint: 'endpoint',
name: 'name',
tools: ['tools'],
},
mcpServerDatadog: {
description: 'description',
enableWebhookUpdates: false,
endpoint: 'endpoint',
name: 'name',
},
mcpServerNewRelic: {
accountId: 'accountId',
endpoint: 'endpoint',
},
mcpServerSplunk: {
description: 'description',
enableWebhookUpdates: false,
endpoint: 'endpoint',
name: 'name',
},
serviceNow: {
enableWebhookUpdates: false,
instanceId: 'instanceId',
},
slack: {
transmissionTarget: {
incidentResponseTarget: {
channelId: 'channelId',
channelName: 'channelName',
},
},
workspaceId: 'workspaceId',
workspaceName: 'workspaceName',
},
sourceAws: {
accountId: 'accountId',
accountType: 'accountType',
assumableRoleArn: 'assumableRoleArn',
resources: [{
resourceArn: 'resourceArn',
resourceMetadata: resourceMetadata,
resourceType: 'resourceType',
}],
tags: [{
key: 'key',
value: 'value',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aws? | IResolvable | AWSConfiguration | Configuration for AWS monitor account integration. |
| dynatrace? | IResolvable | Dynatrace | Configuration for Dynatrace monitoring integration. |
| event | IResolvable | Event | Configuration for Event Channel integration. |
| git | IResolvable | Git | Configuration for GitHub repository integration. |
| git | IResolvable | Git | Configuration for GitLab project integration. |
| mcp | IResolvable | MCPServer | Configuration for custom MCP (Model Context Protocol) server integration. |
| mcp | IResolvable | MCPServer | Configuration for Datadog MCP server integration. |
| mcp | IResolvable | MCPServer | Configuration for New Relic MCP server integration. |
| mcp | IResolvable | MCPServer | Configuration for Splunk MCP server integration. |
| service | IResolvable | Service | Configuration for ServiceNow instance integration. |
| slack? | IResolvable | Slack | Configuration for Slack workspace integration. |
| source | IResolvable | Source | Configuration for AWS source account integration. |
aws?
Type:
IResolvable | AWSConfiguration
(optional)
Configuration for AWS monitor account integration.
Specifies the account ID, assumable role ARN, and resources to be monitored in the primary monitoring account.
dynatrace?
Type:
IResolvable | Dynatrace
(optional)
Configuration for Dynatrace monitoring integration.
Specifies the environment ID, resources to monitor, and webhook settings to enable the Agent Space to access Dynatrace metrics, traces, and logs.
eventChannel?
Type:
IResolvable | Event
(optional)
Configuration for Event Channel integration.
Specifies webhook settings to enable the Agent Space to receive and process real-time events from external systems.
gitHub?
Type:
IResolvable | Git
(optional)
Configuration for GitHub repository integration.
Specifies the repository name, repository ID, owner, and owner type to enable the Agent Space to access code, pull requests, and issues.
gitLab?
Type:
IResolvable | Git
(optional)
Configuration for GitLab project integration.
Specifies the project ID, project path, instance identifier, and webhook settings to enable the Agent Space to access code, merge requests, and issues.
mcpServer?
Type:
IResolvable | MCPServer
(optional)
Configuration for custom MCP (Model Context Protocol) server integration.
Specifies the server name, endpoint URL, available tools, description, and webhook settings to enable the Agent Space to interact with custom MCP servers.
mcpServerDatadog?
Type:
IResolvable | MCPServer
(optional)
Configuration for Datadog MCP server integration.
Specifies the server name, endpoint URL, optional description, and webhook settings to enable the Agent Space to query metrics, traces, and logs from Datadog.
mcpServerNewRelic?
Type:
IResolvable | MCPServer
(optional)
Configuration for New Relic MCP server integration.
Specifies the New Relic account ID and MCP endpoint URL to enable the Agent Space to query metrics, traces, and logs from New Relic.
mcpServerSplunk?
Type:
IResolvable | MCPServer
(optional)
Configuration for Splunk MCP server integration.
Specifies the server name, endpoint URL, optional description, and webhook settings to enable the Agent Space to query logs, metrics, and events from Splunk.
serviceNow?
Type:
IResolvable | Service
(optional)
Configuration for ServiceNow instance integration.
Specifies the instance URL, instance ID, and webhook settings to enable the Agent Space to create, update, and manage ServiceNow incidents and change requests.
slack?
Type:
IResolvable | Slack
(optional)
Configuration for Slack workspace integration.
Specifies the workspace ID, workspace name, and transmission targets to enable the Agent Space to send notifications to designated Slack channels.
sourceAws?
Type:
IResolvable | Source
(optional)
Configuration for AWS source account integration.
Specifies the account ID, assumable role ARN, and resources to be monitored in the source account.

.NET
Go
Java
Python
TypeScript