public static interface CfnFilter.ConditionProperty
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.*; ConditionProperty conditionProperty = 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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFilter.ConditionProperty.Builder
A builder for
CfnFilter.ConditionProperty |
static class |
CfnFilter.ConditionProperty.Jsii$Proxy
An implementation for
CfnFilter.ConditionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFilter.ConditionProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getEq()
Represents the equal condition to apply to a single field when querying for findings.
|
default java.util.List<java.lang.String> |
getEqualTo()
Represents an *equal* ** condition to be applied to a single field when querying for findings.
|
default java.lang.Number |
getGreaterThan()
Represents a *greater than* condition to be applied to a single field when querying for findings.
|
default java.lang.Number |
getGreaterThanOrEqual()
Represents a *greater than or equal* condition to be applied to a single field when querying for findings.
|
default java.lang.Number |
getGt()
Represents a *greater than* condition to be applied to a single field when querying for findings.
|
default java.lang.Number |
getGte()
Represents the greater than or equal condition to apply to a single field when querying for findings.
|
default java.lang.Number |
getLessThan()
Represents a *less than* condition to be applied to a single field when querying for findings.
|
default java.lang.Number |
getLessThanOrEqual()
Represents a *less than or equal* condition to be applied to a single field when querying for findings.
|
default java.lang.Number |
getLt()
Represents the less than condition to apply to a single field when querying for findings.
|
default java.lang.Number |
getLte()
Represents the less than or equal condition to apply to a single field when querying for findings.
|
default java.util.List<java.lang.String> |
getNeq()
Represents the not equal condition to apply to a single field when querying for findings.
|
default java.util.List<java.lang.String> |
getNotEquals()
Represents a *not equal* ** condition to be applied to a single field when querying for findings.
|
default java.util.List<java.lang.String> getEq()
default java.util.List<java.lang.String> getEqualTo()
default java.lang.Number getGreaterThan()
default java.lang.Number getGreaterThanOrEqual()
default java.lang.Number getGt()
default java.lang.Number getGte()
default java.lang.Number getLessThan()
default java.lang.Number getLessThanOrEqual()
default java.lang.Number getLt()
default java.lang.Number getLte()
default java.util.List<java.lang.String> getNeq()
default java.util.List<java.lang.String> getNotEquals()
static CfnFilter.ConditionProperty.Builder builder()