interface GitLabConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnAssociationPropsMixin.GitLabConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnAssociationPropsMixin_GitLabConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnAssociationPropsMixin.GitLabConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnAssociationPropsMixin.GitLabConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » 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 { aws_devopsagent as devopsagent } from '@aws-cdk/cfn-property-mixins';
const gitLabConfigurationProperty: devopsagent.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