interface CodeReviewSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnAgentSpacePropsMixin.CodeReviewSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnAgentSpacePropsMixin_CodeReviewSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnAgentSpacePropsMixin.CodeReviewSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnAgentSpacePropsMixin.CodeReviewSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnAgentSpacePropsMixin » CodeReviewSettingsProperty |
Details of code review settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityagent as securityagent } from '@aws-cdk/cfn-property-mixins';
const codeReviewSettingsProperty: securityagent.CfnAgentSpacePropsMixin.CodeReviewSettingsProperty = {
controlsScanning: false,
generalPurposeScanning: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| controls | boolean | IResolvable | Whether Controls are utilized for code review analysis. |
| general | boolean | IResolvable | Whether general purpose analysis is performed for code review. |
controlsScanning?
Type:
boolean | IResolvable
(optional)
Whether Controls are utilized for code review analysis.
generalPurposeScanning?
Type:
boolean | IResolvable
(optional)
Whether general purpose analysis is performed for code review.

.NET
Go
Java
Python
TypeScript