interface FindingCriteriaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Macie.Mixins.CfnFindingsFilterPropsMixin.FindingCriteriaProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmacie/mixins#CfnFindingsFilterPropsMixin_FindingCriteriaProperty |
Java | software.amazon.awscdk.mixins.preview.services.macie.mixins.CfnFindingsFilterPropsMixin.FindingCriteriaProperty |
Python | aws_cdk.mixins_preview.aws_macie.mixins.CfnFindingsFilterPropsMixin.FindingCriteriaProperty |
TypeScript | @aws-cdk/mixins-preview » aws_macie » mixins » CfnFindingsFilterPropsMixin » FindingCriteriaProperty |
Specifies, as a map, one or more property-based conditions for a findings filter.
A findings filter , also referred to as a filter rule , is a set of custom criteria that specifies which findings to include or exclude from the results of a query for findings. You can also configure a findings filter to suppress (automatically archive) findings that match the filter's criteria. For more information, see Filtering Macie findings in the Amazon Macie User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as macie_mixins } from '@aws-cdk/mixins-preview/aws-macie';
const findingCriteriaProperty: macie_mixins.CfnFindingsFilterPropsMixin.FindingCriteriaProperty = {
criterion: {
criterionKey: {
eq: ['eq'],
gt: 123,
gte: 123,
lt: 123,
lte: 123,
neq: ['neq'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| criterion? | IResolvable | { [string]: IResolvable | Criterion } | Specifies a condition that defines the property, operator, and one or more values to use to filter the results. |
criterion?
Type:
IResolvable | { [string]: IResolvable | Criterion }
(optional)
Specifies a condition that defines the property, operator, and one or more values to use to filter the results.

.NET
Go
Java
Python
TypeScript