Interface CfnFilter.ConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFilter.ConditionProperty.Jsii$Proxy
- Enclosing class:
- CfnFilter
@Stability(Stable)
public static interface CfnFilter.ConditionProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the condition to apply to a single field when filtering through GuardDuty findings.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFilter.ConditionProperty
static final class
An implementation forCfnFilter.ConditionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
getEq()
Represents the equal condition to apply to a single field when querying for findings.Represents an equal ** condition to be applied to a single field when querying for findings.default Number
Represents a greater than condition to be applied to a single field when querying for findings.default Number
Represents a greater than or equal condition to be applied to a single field when querying for findings.default Number
getGt()
Represents a greater than condition to be applied to a single field when querying for findings.default Number
getGte()
Represents the greater than or equal condition to apply to a single field when querying for findings.default Number
Represents a less than condition to be applied to a single field when querying for findings.default Number
Represents a less than or equal condition to be applied to a single field when querying for findings.default Number
getLt()
Represents the less than condition to apply to a single field when querying for findings.default Number
getLte()
Represents the less than or equal condition to apply to a single field when querying for findings.getNeq()
Represents the not equal condition to apply to a single field when querying for findings.Represents a not equal ** condition to be applied to a single field when querying for findings.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEq
Represents the equal condition to apply to a single field when querying for findings. -
getEqualTo
Represents an equal ** condition to be applied to a single field when querying for findings. -
getGreaterThan
Represents a greater than condition to be applied to a single field when querying for findings. -
getGreaterThanOrEqual
Represents a greater than or equal condition to be applied to a single field when querying for findings. -
getGt
Represents a greater than condition to be applied to a single field when querying for findings. -
getGte
Represents the greater than or equal condition to apply to a single field when querying for findings. -
getLessThan
Represents a less than condition to be applied to a single field when querying for findings. -
getLessThanOrEqual
Represents a less than or equal condition to be applied to a single field when querying for findings. -
getLt
Represents the less than condition to apply to a single field when querying for findings. -
getLte
Represents the less than or equal condition to apply to a single field when querying for findings. -
getNeq
Represents the not equal condition to apply to a single field when querying for findings. -
getNotEquals
Represents a not equal ** condition to be applied to a single field when querying for findings. -
builder
-