Struct aws_sdk_securityhub::types::builders::NumberFilterBuilder
source · #[non_exhaustive]pub struct NumberFilterBuilder { /* private fields */ }
Expand description
A builder for NumberFilter
.
Implementations§
source§impl NumberFilterBuilder
impl NumberFilterBuilder
sourcepub fn gte(self, input: f64) -> Self
pub fn gte(self, input: f64) -> Self
The greater-than-equal condition to be applied to a single field when querying for findings.
sourcepub fn set_gte(self, input: Option<f64>) -> Self
pub fn set_gte(self, input: Option<f64>) -> Self
The greater-than-equal condition to be applied to a single field when querying for findings.
sourcepub fn get_gte(&self) -> &Option<f64>
pub fn get_gte(&self) -> &Option<f64>
The greater-than-equal condition to be applied to a single field when querying for findings.
sourcepub fn lte(self, input: f64) -> Self
pub fn lte(self, input: f64) -> Self
The less-than-equal condition to be applied to a single field when querying for findings.
sourcepub fn set_lte(self, input: Option<f64>) -> Self
pub fn set_lte(self, input: Option<f64>) -> Self
The less-than-equal condition to be applied to a single field when querying for findings.
sourcepub fn get_lte(&self) -> &Option<f64>
pub fn get_lte(&self) -> &Option<f64>
The less-than-equal condition to be applied to a single field when querying for findings.
sourcepub fn eq(self, input: f64) -> Self
pub fn eq(self, input: f64) -> Self
The equal-to condition to be applied to a single field when querying for findings.
sourcepub fn set_eq(self, input: Option<f64>) -> Self
pub fn set_eq(self, input: Option<f64>) -> Self
The equal-to condition to be applied to a single field when querying for findings.
sourcepub fn get_eq(&self) -> &Option<f64>
pub fn get_eq(&self) -> &Option<f64>
The equal-to condition to be applied to a single field when querying for findings.
sourcepub fn build(self) -> NumberFilter
pub fn build(self) -> NumberFilter
Consumes the builder and constructs a NumberFilter
.
Trait Implementations§
source§impl Clone for NumberFilterBuilder
impl Clone for NumberFilterBuilder
source§fn clone(&self) -> NumberFilterBuilder
fn clone(&self) -> NumberFilterBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NumberFilterBuilder
impl Debug for NumberFilterBuilder
source§impl Default for NumberFilterBuilder
impl Default for NumberFilterBuilder
source§fn default() -> NumberFilterBuilder
fn default() -> NumberFilterBuilder
source§impl PartialEq for NumberFilterBuilder
impl PartialEq for NumberFilterBuilder
source§fn eq(&self, other: &NumberFilterBuilder) -> bool
fn eq(&self, other: &NumberFilterBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.