interface GitLabDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.GitLabDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_GitLabDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.GitLabDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.GitLabDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » 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/cfn-property-mixins';
const gitLabDetailsProperty: devopsagent.CfnServicePropsMixin.GitLabDetailsProperty = {
groupId: 'groupId',
targetUrl: 'targetUrl',
tokenType: 'tokenType',
tokenValue: 'tokenValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | Optional GitLab group ID for group-level access tokens. |
| target | string | GitLab instance URL. |
| token | string | Type of GitLab access token. |
| token | string | GitLab access token value. |
groupId?
Type:
string
(optional)
Optional GitLab group ID for group-level access tokens.
targetUrl?
Type:
string
(optional)
GitLab instance URL.
tokenType?
Type:
string
(optional)
Type of GitLab access token.
tokenValue?
Type:
string
(optional)
GitLab access token value.

.NET
Go
Java
Python
TypeScript