interface CreateGitLabSelfManagedIntegrationDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnCodeSecurityIntegrationPropsMixin_CreateGitLabSelfManagedIntegrationDetailProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » 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 { aws_inspectorv2 as inspectorv2 } from '@aws-cdk/cfn-property-mixins';
const createGitLabSelfManagedIntegrationDetailProperty: inspectorv2.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