Interface CfnFilterProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.167Z") @Stability(Stable) public interface CfnFilterProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnFilter.

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.guardduty.*;
 Object criterion;
 CfnFilterProps cfnFilterProps = CfnFilterProps.builder()
         .action("action")
         .description("description")
         .detectorId("detectorId")
         .findingCriteria(FindingCriteriaProperty.builder()
                 .criterion(criterion)
                 .itemType(ConditionProperty.builder()
                         .eq(List.of("eq"))
                         .equalTo(List.of("equalTo"))
                         .greaterThan(123)
                         .greaterThanOrEqual(123)
                         .gt(123)
                         .gte(123)
                         .lessThan(123)
                         .lessThanOrEqual(123)
                         .lt(123)
                         .lte(123)
                         .neq(List.of("neq"))
                         .notEquals(List.of("notEquals"))
                         .build())
                 .build())
         .name("name")
         .rank(123)
         // the properties below are optional
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getAction

      @Stability(Stable) @NotNull String getAction()
      Specifies the action that is to be applied to the findings that match the filter.
    • getDescription

      @Stability(Stable) @NotNull String getDescription()
      The description of the filter.

      Valid characters include alphanumeric characters, and special characters such as hyphen, period, colon, underscore, parentheses ( { } , [ ] , and ( ) ), forward slash, horizontal tab, vertical tab, newline, form feed, return, and whitespace.

    • getDetectorId

      @Stability(Stable) @NotNull String getDetectorId()
      The ID of the detector belonging to the GuardDuty account that you want to create a filter for.
    • getFindingCriteria

      @Stability(Stable) @NotNull Object getFindingCriteria()
      Represents the criteria to be used in the filter for querying findings.
    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the filter.

      Valid characters include period (.), underscore (_), dash (-), and alphanumeric characters. A whitespace is considered to be an invalid character.

    • getRank

      @Stability(Stable) @NotNull Number getRank()
      Specifies the position of the filter in the list of current filters.

      Also specifies the order in which this filter is applied to the findings. The minimum value for this property is 1 and the maximum is 100.

      By default, filters may not be created in the same order as they are ranked. To ensure that the filters are created in the expected order, you can use an optional attribute, DependsOn , with the following syntax: "DependsOn":[ "ObjectName" ] .

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags to be added to a new filter resource.

      Each tag consists of a key and an optional value, both of which you define.

      For more information, see Tag .

    • builder

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