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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCodeSecurityIntegrationMixinPropsstatic final classAn implementation forCfnCodeSecurityIntegrationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectContains details required to create a code security integration with a specific repository provider.default StringgetName()The name of the code security integration.getTags()The tags to apply to the code security integration.default StringgetType()The type of repository provider for the integration.default ObjectThe updated integration details specific to the repository provider type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreateIntegrationDetails
Contains details required to create a code security integration with a specific repository provider.Returns union: either
IResolvableorCfnCodeSecurityIntegrationPropsMixin.CreateDetailsProperty- See Also:
-
getName
The name of the code security integration.- See Also:
-
getTags
The tags to apply to the code security integration.- See Also:
-
getType
The type of repository provider for the integration.- See Also:
-
getUpdateIntegrationDetails
The updated integration details specific to the repository provider type.Returns union: either
IResolvableorCfnCodeSecurityIntegrationPropsMixin.UpdateDetailsProperty- See Also:
-
builder
-