@Stability(value=Stable)
public static interface CfnFilter.ConditionProperty
extends software.amazon.jsii.JsiiSerializable
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 List<String> |
getEq()
Represents the equal condition to apply to a single field when querying for findings.
|
default List<String> |
getEqualTo()
Represents an *equal* ** condition to be applied to a single field when querying for findings.
|
default Number |
getGreaterThan()
Represents a *greater than* condition to be applied to a single field when querying for findings.
|
default Number |
getGreaterThanOrEqual()
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 |
getLessThan()
Represents a *less than* condition to be applied to a single field when querying for findings.
|
default Number |
getLessThanOrEqual()
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.
|
default List<String> |
getNeq()
Represents the not equal condition to apply to a single field when querying for findings.
|
default List<String> |
getNotEquals()
Represents a *not equal* ** condition to be applied to a single field when querying for findings.
|
@Stability(value=Stable) @Nullable default List<String> getEq()
@Stability(value=Stable) @Nullable default List<String> getEqualTo()
@Stability(value=Stable) @Nullable default Number getGreaterThan()
@Stability(value=Stable) @Nullable default Number getGreaterThanOrEqual()
@Stability(value=Stable) @Nullable default Number getGt()
@Stability(value=Stable) @Nullable default Number getGte()
@Stability(value=Stable) @Nullable default Number getLessThan()
@Stability(value=Stable) @Nullable default Number getLessThanOrEqual()
@Stability(value=Stable) @Nullable default Number getLt()
@Stability(value=Stable) @Nullable default Number getLte()
@Stability(value=Stable) @Nullable default List<String> getNeq()
@Stability(value=Stable) @Nullable default List<String> getNotEquals()
@Stability(value=Stable) static CfnFilter.ConditionProperty.Builder builder()
Copyright © 2022. All rights reserved.