Interface CfnAnalyzerProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:55.219Z") @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
         .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();
 
  • Method Details

    • getType

      @Stability(Stable) @NotNull String getType()
      The type represents the zone of trust for the analyzer.

      Allowed Values : ACCOUNT | ORGANIZATION

    • getAnalyzerName

      @Stability(Stable) @Nullable default String getAnalyzerName()
      The name of the analyzer.
    • getArchiveRules

      @Stability(Stable) @Nullable default Object getArchiveRules()
      Specifies the archive rules to add for the analyzer.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags to apply to the analyzer.
    • builder

      @Stability(Stable) static CfnAnalyzerProps.Builder builder()
      Returns:
      a CfnAnalyzerProps.Builder of CfnAnalyzerProps