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
sourceimpl 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.
sourceimpl FilterExpression
impl FilterExpression
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FilterExpression
.
Trait Implementations
sourceimpl Clone for FilterExpression
impl Clone for FilterExpression
sourcefn clone(&self) -> FilterExpression
fn clone(&self) -> FilterExpression
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FilterExpression
impl Debug for FilterExpression
sourceimpl PartialEq<FilterExpression> for FilterExpression
impl PartialEq<FilterExpression> for FilterExpression
sourcefn eq(&self, other: &FilterExpression) -> bool
fn eq(&self, other: &FilterExpression) -> bool
impl StructuralPartialEq for FilterExpression
Auto Trait Implementations
impl RefUnwindSafe for FilterExpression
impl Send for FilterExpression
impl Sync for FilterExpression
impl Unpin for FilterExpression
impl UnwindSafe for FilterExpression
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more