Interface CfnAssociation.GitLabConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociation.GitLabConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAssociation

@Stability(Stable) public static interface CfnAssociation.GitLabConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.devopsagent.*;
 GitLabConfigurationProperty gitLabConfigurationProperty = GitLabConfigurationProperty.builder()
         .projectId("projectId")
         .projectPath("projectPath")
         // the properties below are optional
         .enableWebhookUpdates(false)
         .instanceIdentifier("instanceIdentifier")
         .build();
 

See Also: