Struct aws_sdk_databrew::model::FilterExpression
source · #[non_exhaustive]pub struct FilterExpression { /* private fields */ }
Expand description
Represents a structure for defining parameter conditions. Supported conditions are described here: Supported conditions for dynamic datasets in the Glue DataBrew Developer Guide.
Implementations§
source§impl FilterExpression
impl FilterExpression
sourcepub fn expression(&self) -> Option<&str>
pub fn expression(&self) -> Option<&str>
The expression which includes condition names followed by substitution variables, possibly grouped and combined with other conditions. For example, "(starts_with :prefix1 or starts_with :prefix2) and (ends_with :suffix1 or ends_with :suffix2)". Substitution variables should start with ':' symbol.
source§impl FilterExpression
impl FilterExpression
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FilterExpression
.
Trait Implementations§
source§impl Clone for FilterExpression
impl Clone for FilterExpression
source§fn clone(&self) -> FilterExpression
fn clone(&self) -> FilterExpression
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FilterExpression
impl Debug for FilterExpression
source§impl PartialEq<FilterExpression> for FilterExpression
impl PartialEq<FilterExpression> for FilterExpression
source§fn eq(&self, other: &FilterExpression) -> bool
fn eq(&self, other: &FilterExpression) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.