Interface NumberFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NumberFilter.Builder,NumberFilter>,SdkBuilder<NumberFilter.Builder,NumberFilter>,SdkPojo
- Enclosing class:
- NumberFilter
public static interface NumberFilter.Builder extends SdkPojo, CopyableBuilder<NumberFilter.Builder,NumberFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumberFilter.Buildereq(Double eq)The equal-to condition to be applied to a single field when querying for findings.NumberFilter.Buildergt(Double gt)The greater-than condition to be applied to a single field when querying for findings.NumberFilter.Buildergte(Double gte)The greater-than-equal condition to be applied to a single field when querying for findings.NumberFilter.Builderlt(Double lt)The less-than condition to be applied to a single field when querying for findings.NumberFilter.Builderlte(Double lte)The less-than-equal condition to be applied to a single field when querying for findings.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
gte
NumberFilter.Builder gte(Double gte)
The greater-than-equal condition to be applied to a single field when querying for findings.
- Parameters:
gte- The greater-than-equal condition to be applied to a single field when querying for findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lte
NumberFilter.Builder lte(Double lte)
The less-than-equal condition to be applied to a single field when querying for findings.
- Parameters:
lte- The less-than-equal condition to be applied to a single field when querying for findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gt
NumberFilter.Builder gt(Double gt)
The greater-than condition to be applied to a single field when querying for findings.
- Parameters:
gt- The greater-than condition to be applied to a single field when querying for findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lt
NumberFilter.Builder lt(Double lt)
The less-than condition to be applied to a single field when querying for findings.
- Parameters:
lt- The less-than condition to be applied to a single field when querying for findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eq
NumberFilter.Builder eq(Double eq)
The equal-to condition to be applied to a single field when querying for findings.
- Parameters:
eq- The equal-to condition to be applied to a single field when querying for findings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-