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

QueryFilters

import type { QueryFilters } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

A set of filters to narrow the set of lineage entities connected to the StartArn(s) returned by the QueryLineage API action.

interface QueryFilters {
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
LineageTypes?: LineageType[] | null;
ModifiedAfter?: Date | number | null;
ModifiedBefore?: Date | number | null;
Properties?: {
[key: string]: string | null | undefined;
}
| null;
Types?: string[] | null;
}

§Properties

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

Filter the lineage entities connected to the StartArn(s) after the create date.

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

Filter the lineage entities connected to the StartArn(s) by created date.

§
LineageTypes?: LineageType[] | null
[src]

Filter the lineage entities connected to the StartArn(s) by the type of the lineage entity.

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

Filter the lineage entities connected to the StartArn(s) after the last modified date.

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

Filter the lineage entities connected to the StartArn(s) before the last modified date.

§
Properties?: {
[key: string]: string | null | undefined;
}
| null
[src]

Filter the lineage entities connected to the StartArn(s) by a set if property key value pairs. If multiple pairs are provided, an entity is included in the results if it matches any of the provided pairs.

§
Types?: string[] | null
[src]

Filter the lineage entities connected to the StartArn by type. For example: DataSet, Model, Endpoint, or ModelDeployment.