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

DataSourceFilterVariable

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

A list of the variables to use in searching or filtering DataSource.

  • CreatedAt - Sets the search criteria to DataSource creation date.
  • Status - Sets the search criteria to DataSource status.
  • Name - Sets the search criteria to the contents of DataSource Name.
  • DataUri - Sets the search criteria to the URI of data files used to create the DataSource. The URI can identify either a file or an Amazon Simple Storage Service (Amazon S3) bucket or directory.
  • IAMUser - Sets the search criteria to the user account that invoked the DataSource creation.

Note: The variable names should match the variable names in the DataSource.

type DataSourceFilterVariable =
| "CreatedAt"
| "LastUpdatedAt"
| "Status"
| "Name"
| "DataLocationS3"
| "IAMUser"

§Type

§
"CreatedAt" | "LastUpdatedAt" | "Status" | "Name" | "DataLocationS3" | "IAMUser" | cmnP.UnexpectedEnumValue
[src]