interface GitLabConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.GitLabConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_GitLabConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.GitLabConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.GitLabConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » GitLabConfigurationProperty |
Configuration for GitLab project integration.
Defines the numeric project ID, full project path (namespace/project-name), GitLab instance identifier, and webhook update settings required for the Agent Space to access and interact with the GitLab project.
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';
const gitLabConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.GitLabConfigurationProperty = {
enableWebhookUpdates: false,
instanceIdentifier: 'instanceIdentifier',
projectId: 'projectId',
projectPath: 'projectPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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 (e.g., gitlab.com). |
| project | string | GitLab numeric project ID. |
| project | 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 (e.g., gitlab.com).
projectId?
Type:
string
(optional)
GitLab numeric project ID.
projectPath?
Type:
string
(optional)
Full GitLab project path (e.g., namespace/project-name).

.NET
Go
Java
Python
TypeScript