interface CfnCodeSecurityScanConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnCodeSecurityScanConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnCodeSecurityScanConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnCodeSecurityScanConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnCodeSecurityScanConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » CfnCodeSecurityScanConfigurationMixinProps |
Properties for CfnCodeSecurityScanConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as inspectorv2_mixins } from '@aws-cdk/mixins-preview/aws-inspectorv2';
const cfnCodeSecurityScanConfigurationMixinProps: inspectorv2_mixins.CfnCodeSecurityScanConfigurationMixinProps = {
configuration: {
continuousIntegrationScanConfiguration: {
supportedEvents: ['supportedEvents'],
},
periodicScanConfiguration: {
frequency: 'frequency',
frequencyExpression: 'frequencyExpression',
},
ruleSetCategories: ['ruleSetCategories'],
},
level: 'level',
name: 'name',
scopeSettings: {
projectSelectionScope: 'projectSelectionScope',
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration? | IResolvable | Code | The configuration settings for the code security scan. |
| level? | string | The security level for the scan configuration. |
| name? | string | The name of the scan configuration. |
| scope | IResolvable | Scope | The scope settings that define which repositories will be scanned. |
| tags? | { [string]: string } | The tags to apply to the scan configuration. |
configuration?
Type:
IResolvable | Code
(optional)
The configuration settings for the code security scan.
level?
Type:
string
(optional)
The security level for the scan configuration.
name?
Type:
string
(optional)
The name of the scan configuration.
scopeSettings?
Type:
IResolvable | Scope
(optional)
The scope settings that define which repositories will be scanned.
tags?
Type:
{ [string]: string }
(optional)
The tags to apply to the scan configuration.

.NET
Go
Java
Python
TypeScript