[][src]Struct rusoto_s3::FilterRule

pub struct FilterRule {
    pub name: Option<String>,
    pub value: Option<String>,
}

Specifies the Amazon S3 object key name to filter on and whether to filter on the suffix or prefix of the key name.

Fields

name: Option<String>

The object key name prefix or suffix identifying one or more objects to which the filtering rule applies. The maximum length is 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, see Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

value: Option<String>

The value that the filter searches for in object key names.

Trait Implementations

impl Clone for FilterRule[src]

impl Debug for FilterRule[src]

impl Default for FilterRule[src]

impl PartialEq<FilterRule> for FilterRule[src]

impl StructuralPartialEq for FilterRule[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.