Interface CfnCodeSecurityScanConfigurationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeSecurityScanConfigurationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.106Z")
@Stability(Stable)
public interface CfnCodeSecurityScanConfigurationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCodeSecurityScanConfigurationPropsMixin.
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.*;
CfnCodeSecurityScanConfigurationMixinProps cfnCodeSecurityScanConfigurationMixinProps = CfnCodeSecurityScanConfigurationMixinProps.builder()
.configuration(CodeSecurityScanConfigurationProperty.builder()
.continuousIntegrationScanConfiguration(ContinuousIntegrationScanConfigurationProperty.builder()
.supportedEvents(List.of("supportedEvents"))
.build())
.periodicScanConfiguration(PeriodicScanConfigurationProperty.builder()
.frequency("frequency")
.frequencyExpression("frequencyExpression")
.build())
.ruleSetCategories(List.of("ruleSetCategories"))
.build())
.level("level")
.name("name")
.scopeSettings(ScopeSettingsProperty.builder()
.projectSelectionScope("projectSelectionScope")
.build())
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCodeSecurityScanConfigurationMixinPropsstatic final classAn implementation forCfnCodeSecurityScanConfigurationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe configuration settings for the code security scan.default StringgetLevel()The security level for the scan configuration.default StringgetName()The name of the scan configuration.default ObjectThe scope settings that define which repositories will be scanned.getTags()The tags to apply to the scan configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
The configuration settings for the code security scan.Returns union: either
IResolvableorCfnCodeSecurityScanConfigurationPropsMixin.CodeSecurityScanConfigurationProperty- See Also:
-
getLevel
The security level for the scan configuration.- See Also:
-
getName
The name of the scan configuration.- See Also:
-
getScopeSettings
The scope settings that define which repositories will be scanned.Returns union: either
IResolvableorCfnCodeSecurityScanConfigurationPropsMixin.ScopeSettingsProperty- See Also:
-
getTags
The tags to apply to the scan configuration.- See Also:
-
builder
-