Struct aws_sdk_macie2::model::BucketCriteriaAdditionalProperties [−][src]
#[non_exhaustive]pub struct BucketCriteriaAdditionalProperties {
pub eq: Option<Vec<String>>,
pub gt: i64,
pub gte: i64,
pub lt: i64,
pub lte: i64,
pub neq: Option<Vec<String>>,
pub prefix: Option<String>,
}
Expand description
Specifies the operator to use in a property-based condition that filters the results of a query for information about S3 buckets.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.eq: Option<Vec<String>>
The value for the property matches (equals) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.
gt: i64
The value for the property is greater than the specified value.
gte: i64
The value for the property is greater than or equal to the specified value.
lt: i64
The value for the property is less than the specified value.
lte: i64
The value for the property is less than or equal to the specified value.
neq: Option<Vec<String>>
The value for the property doesn't match (doesn't equal) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.
prefix: Option<String>
The name of the bucket begins with the specified value.
Implementations
The value for the property matches (equals) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.
The value for the property is greater than or equal to the specified value.
The value for the property is less than or equal to the specified value.
The value for the property doesn't match (doesn't equal) the specified value. If you specify multiple values, Amazon Macie uses OR logic to join the values.
Creates a new builder-style object to manufacture BucketCriteriaAdditionalProperties
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for BucketCriteriaAdditionalProperties
impl Sync for BucketCriteriaAdditionalProperties
impl Unpin for BucketCriteriaAdditionalProperties
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more