interface GitLabConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.GitLabConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_GitLabConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.GitLabConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.GitLabConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » GitLabConfigurationProperty |
GitLab project integration 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 gitLabConfigurationProperty: devopsagent.CfnAssociation.GitLabConfigurationProperty = {
projectId: 'projectId',
projectPath: 'projectPath',
// the properties below are optional
enableWebhookUpdates: false,
instanceIdentifier: 'instanceIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| project | string | GitLab numeric project ID. |
| project | string | Full GitLab project path (e.g., namespace/project-name). |
| enable | boolean | IResolvable | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| instance | string | GitLab instance identifier. |
projectId
Type:
string
GitLab numeric project ID.
projectPath
Type:
string
Full GitLab project path (e.g., namespace/project-name).
enableWebhookUpdates?
Type:
boolean | IResolvable
(optional)
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.
instanceIdentifier?
Type:
string
(optional)
GitLab instance identifier.

.NET
Go
Java
Python
TypeScript