interface CodeReviewSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnAgentSpace.CodeReviewSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnAgentSpace_CodeReviewSettingsProperty |
Java | software.amazon.awscdk.services.securityagent.CfnAgentSpace.CodeReviewSettingsProperty |
Python | aws_cdk.aws_securityagent.CfnAgentSpace.CodeReviewSettingsProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnAgentSpace » 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-lib';
const codeReviewSettingsProperty: securityagent.CfnAgentSpace.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
Whether Controls are utilized for code review analysis.
generalPurposeScanning
Type:
boolean | IResolvable
Whether general purpose analysis is performed for code review.

.NET
Go
Java
Python
TypeScript