Interface CfnAnalyzer.FilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalyzer.FilterProperty.Jsii$Proxy
Enclosing class:
CfnAnalyzer

@Stability(Stable) public static interface CfnAnalyzer.FilterProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.accessanalyzer.*;
 FilterProperty filterProperty = FilterProperty.builder()
         .property("property")
         // the properties below are optional
         .contains(List.of("contains"))
         .eq(List.of("eq"))
         .exists(false)
         .neq(List.of("neq"))
         .build();
 

See Also: