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

DatasetAction

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

A DatasetAction object that specifies how dataset contents are automatically created.

interface DatasetAction {
actionName?: string | null;
containerAction?: ContainerDatasetAction | null;
queryAction?: SqlQueryDatasetAction | null;
}

§Properties

§
actionName?: string | null
[src]

The name of the dataset action by which dataset contents are automatically created.

§
containerAction?: ContainerDatasetAction | null
[src]

Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.

§
queryAction?: SqlQueryDatasetAction | null
[src]

An SqlQueryDatasetAction object that uses an SQL query to automatically create dataset contents.