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

TransformFilterCriteria

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

The criteria used to filter the machine learning transforms.

interface TransformFilterCriteria {
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
GlueVersion?: string | null;
LastModifiedAfter?: Date | number | null;
LastModifiedBefore?: Date | number | null;
Name?: string | null;
Schema?: SchemaColumn[] | null;
Status?: TransformStatusType | null;
TransformType?: TransformType | null;
}

§Properties

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

The time and date after which the transforms were created.

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

The time and date before which the transforms were created.

§
GlueVersion?: string | null
[src]

This value determines which version of Glue this machine learning transform is compatible with. Glue 1.0 is recommended for most customers. If the value is not set, the Glue compatibility defaults to Glue 0.9. For more information, see Glue Versions in the developer guide.

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

Filter on transforms last modified after this date.

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

Filter on transforms last modified before this date.

§
Name?: string | null
[src]

A unique transform name that is used to filter the machine learning transforms.

§
Schema?: SchemaColumn[] | null
[src]

Filters on datasets with a specific schema. The Map<Column, Type> object is an array of key-value pairs representing the schema this transform accepts, where Column is the name of a column, and Type is the type of the data such as an integer or string. Has an upper bound of 100 columns.

§
Status?: TransformStatusType | null
[src]

Filters the list of machine learning transforms by the last known status of the transforms (to indicate whether a transform can be used or not). One of "NOT_READY", "READY", or "DELETING".

§
TransformType?: TransformType | null
[src]

The type of machine learning transform that is used to filter the machine learning transforms.