[][src]Struct rusoto_personalize::Filter

pub struct Filter {
    pub creation_date_time: Option<f64>,
    pub dataset_group_arn: Option<String>,
    pub failure_reason: Option<String>,
    pub filter_arn: Option<String>,
    pub filter_expression: Option<String>,
    pub last_updated_date_time: Option<f64>,
    pub name: Option<String>,
    pub status: Option<String>,
}

Contains information on a recommendation filter, including its ARN, status, and filter expression.

Fields

creation_date_time: Option<f64>

The time at which the filter was created.

dataset_group_arn: Option<String>

The ARN of the dataset group to which the filter belongs.

failure_reason: Option<String>

If the filter failed, the reason for its failure.

filter_arn: Option<String>

The ARN of the filter.

filter_expression: Option<String>

Specifies the type of item interactions to filter out of recommendation results. The filter expression must follow the following format:

EXCLUDE itemId WHERE INTERACTIONS.event_type in ("EVENT_TYPE")

Where "EVENT_TYPE" is the type of event to filter out. For more information, see Using Filters with Amazon Personalize.

last_updated_date_time: Option<f64>

The time at which the filter was last updated.

name: Option<String>

The name of the filter.

status: Option<String>

The status of the filter.

Trait Implementations

impl Clone for Filter[src]

impl Debug for Filter[src]

impl Default for Filter[src]

impl<'de> Deserialize<'de> for Filter[src]

impl PartialEq<Filter> for Filter[src]

impl StructuralPartialEq for Filter[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.