interface CreateGitLabSelfManagedIntegrationDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnCodeSecurityIntegrationPropsMixin_CreateGitLabSelfManagedIntegrationDetailProperty |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » CfnCodeSecurityIntegrationPropsMixin » CreateGitLabSelfManagedIntegrationDetailProperty |
Contains details required to create an integration with a self-managed GitLab instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as inspectorv2_mixins } from '@aws-cdk/mixins-preview/aws-inspectorv2';
const createGitLabSelfManagedIntegrationDetailProperty: inspectorv2_mixins.CfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty = {
accessToken: 'accessToken',
instanceUrl: 'instanceUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The personal access token used to authenticate with the self-managed GitLab instance. |
| instance | string | The URL of the self-managed GitLab instance. |
accessToken?
Type:
string
(optional)
The personal access token used to authenticate with the self-managed GitLab instance.
instanceUrl?
Type:
string
(optional)
The URL of the self-managed GitLab instance.

.NET
Go
Java
Python
TypeScript