[][src]Struct rusoto_personalize::CreateFilterRequest

pub struct CreateFilterRequest {
    pub dataset_group_arn: String,
    pub filter_expression: String,
    pub name: String,
}

Fields

dataset_group_arn: String

The ARN of the dataset group that the filter will belong to.

filter_expression: String

The filter expression that designates the interaction types that the filter will filter out. A 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. To filter out all items with any interactions history, set "*" as the EVENT_TYPE. For more information, see Using Filters with Amazon Personalize.

name: String

The name of the filter to create.

Trait Implementations

impl Clone for CreateFilterRequest[src]

impl Debug for CreateFilterRequest[src]

impl Default for CreateFilterRequest[src]

impl PartialEq<CreateFilterRequest> for CreateFilterRequest[src]

impl Serialize for CreateFilterRequest[src]

impl StructuralPartialEq for CreateFilterRequest[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> 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.