interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AccessAnalyzer.Mixins.CfnAnalyzerPropsMixin.FilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaccessanalyzer/mixins#CfnAnalyzerPropsMixin_FilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.accessanalyzer.mixins.CfnAnalyzerPropsMixin.FilterProperty |
Python | aws_cdk.mixins_preview.aws_accessanalyzer.mixins.CfnAnalyzerPropsMixin.FilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_accessanalyzer » mixins » CfnAnalyzerPropsMixin » FilterProperty |
The criteria that defines the archive rule.
To learn about filter keys that you can use to create an archive rule, see filter keys in the 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 accessanalyzer_mixins } from '@aws-cdk/mixins-preview/aws-accessanalyzer';
const filterProperty: accessanalyzer_mixins.CfnAnalyzerPropsMixin.FilterProperty = {
contains: ['contains'],
eq: ['eq'],
exists: false,
neq: ['neq'],
property: 'property',
};
Properties
| Name | Type | Description |
|---|---|---|
| contains? | string[] | A "contains" condition to match for the rule. |
| eq? | string[] | An "equals" condition to match for the rule. |
| exists? | boolean | IResolvable | An "exists" condition to match for the rule. |
| neq? | string[] | A "not equal" condition to match for the rule. |
| property? | string | The property used to define the criteria in the filter for the rule. |
contains?
Type:
string[]
(optional)
A "contains" condition to match for the rule.
eq?
Type:
string[]
(optional)
An "equals" condition to match for the rule.
exists?
Type:
boolean | IResolvable
(optional)
An "exists" condition to match for the rule.
neq?
Type:
string[]
(optional)
A "not equal" condition to match for the rule.
property?
Type:
string
(optional)
The property used to define the criteria in the filter for the rule.

.NET
Go
Java
Python
TypeScript