Interface CfnAnalyzerProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalyzerProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-04-10T22:22:22.721Z") @Stability(Stable) public interface CfnAnalyzerProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAnalyzer.

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.*;
 CfnAnalyzerProps cfnAnalyzerProps = CfnAnalyzerProps.builder()
         .type("type")
         // the properties below are optional
         .analyzerConfiguration(AnalyzerConfigurationProperty.builder()
                 .unusedAccessConfiguration(UnusedAccessConfigurationProperty.builder()
                         .unusedAccessAge(123)
                         .build())
                 .build())
         .analyzerName("analyzerName")
         .archiveRules(List.of(ArchiveRuleProperty.builder()
                 .filter(List.of(FilterProperty.builder()
                         .property("property")
                         // the properties below are optional
                         .contains(List.of("contains"))
                         .eq(List.of("eq"))
                         .exists(false)
                         .neq(List.of("neq"))
                         .build()))
                 .ruleName("ruleName")
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: