Interface CfnCodeSecurityIntegrationMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCodeSecurityIntegrationMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:00.103Z") @Stability(Stable) public interface CfnCodeSecurityIntegrationMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnCodeSecurityIntegrationPropsMixin.

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.*;
 CfnCodeSecurityIntegrationMixinProps cfnCodeSecurityIntegrationMixinProps = CfnCodeSecurityIntegrationMixinProps.builder()
         .createIntegrationDetails(CreateDetailsProperty.builder()
                 .gitlabSelfManaged(CreateGitLabSelfManagedIntegrationDetailProperty.builder()
                         .accessToken("accessToken")
                         .instanceUrl("instanceUrl")
                         .build())
                 .build())
         .name("name")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .type("type")
         .updateIntegrationDetails(UpdateDetailsProperty.builder()
                 .github(UpdateGitHubIntegrationDetailProperty.builder()
                         .code("code")
                         .installationId("installationId")
                         .build())
                 .gitlabSelfManaged(UpdateGitLabSelfManagedIntegrationDetailProperty.builder()
                         .authCode("authCode")
                         .build())
                 .build())
         .build();
 

See Also: