Interface CfnCodeSecurityIntegrationPropsMixin.CreateDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeSecurityIntegrationPropsMixin.CreateDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnCodeSecurityIntegrationPropsMixin
@Stability(Stable)
public static interface CfnCodeSecurityIntegrationPropsMixin.CreateDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Contains details required to create a code security integration with a specific repository provider.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.*;
CreateDetailsProperty createDetailsProperty = CreateDetailsProperty.builder()
.gitlabSelfManaged(CreateGitLabSelfManagedIntegrationDetailProperty.builder()
.accessToken("accessToken")
.instanceUrl("instanceUrl")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnCodeSecurityIntegrationPropsMixin.CreateDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGitlabSelfManaged
Details specific to creating an integration with a self-managed GitLab instance.Returns union: either
IResolvableorCfnCodeSecurityIntegrationPropsMixin.CreateGitLabSelfManagedIntegrationDetailProperty- See Also:
-
builder
@Stability(Stable) static CfnCodeSecurityIntegrationPropsMixin.CreateDetailsProperty.Builder builder()
-