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
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 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: