interface GitLabDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.GitLabDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_GitLabDetailsProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.GitLabDetailsProperty |
Python | aws_cdk.aws_devopsagent.CfnService.GitLabDetailsProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » GitLabDetailsProperty |
GitLab service configuration.
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-lib';
const gitLabDetailsProperty: devopsagent.CfnService.GitLabDetailsProperty = {
targetUrl: 'targetUrl',
tokenType: 'tokenType',
tokenValue: 'tokenValue',
// the properties below are optional
groupId: 'groupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string | GitLab instance URL. |
| token | string | Type of GitLab access token. |
| token | string | GitLab access token value. |
| group | string | Optional GitLab group ID for group-level access tokens. |
targetUrl
Type:
string
GitLab instance URL.
tokenType
Type:
string
Type of GitLab access token.
tokenValue
Type:
string
GitLab access token value.
groupId?
Type:
string
(optional)
Optional GitLab group ID for group-level access tokens.

.NET
Go
Java
Python
TypeScript