Interface CfnCodeSecurityIntegration.CreateGitLabSelfManagedIntegrationDetailProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeSecurityIntegration.CreateGitLabSelfManagedIntegrationDetailProperty.Jsii$Proxy
- Enclosing class:
CfnCodeSecurityIntegration
@Stability(Stable)
public static interface CfnCodeSecurityIntegration.CreateGitLabSelfManagedIntegrationDetailProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.inspectorv2.*;
CreateGitLabSelfManagedIntegrationDetailProperty createGitLabSelfManagedIntegrationDetailProperty = CreateGitLabSelfManagedIntegrationDetailProperty.builder()
.accessToken("accessToken")
.instanceUrl("instanceUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnCodeSecurityIntegration.CreateGitLabSelfManagedIntegrationDetailProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The personal access token used to authenticate with the self-managed GitLab instance.The URL of the self-managed GitLab instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessToken
The personal access token used to authenticate with the self-managed GitLab instance.- See Also:
-
getInstanceUrl
The URL of the self-managed GitLab instance.- See Also:
-
builder
@Stability(Stable) static CfnCodeSecurityIntegration.CreateGitLabSelfManagedIntegrationDetailProperty.Builder builder()
-