Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Filter

import type { Filter } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

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

interface Filter {
creationDateTime?: Date | number | null;
datasetGroupArn?: string | null;
failureReason?: string | null;
filterArn?: string | null;
filterExpression?: string | null;
lastUpdatedDateTime?: Date | number | null;
name?: string | null;
status?: string | null;
}

§Properties

§
creationDateTime?: Date | number | null
[src]

The time at which the filter was created.

§
datasetGroupArn?: string | null
[src]

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

§
failureReason?: string | null
[src]

If the filter failed, the reason for its failure.

§
filterArn?: string | null
[src]

The ARN of the filter.

§
filterExpression?: string | null
[src]

Specifies the type of item interactions to filter out of recommendation results. The filter expression must follow specific format rules. For information about filter expression structure and syntax, see "filter-expressions".

§
lastUpdatedDateTime?: Date | number | null
[src]

The time at which the filter was last updated.

§
name?: string | null
[src]

The name of the filter.

§
status?: string | null
[src]

The status of the filter.