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

ContainerDatasetAction

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

Information required to run the containerAction to produce dataset contents.

interface ContainerDatasetAction {
executionRoleArn: string;
image: string;
resourceConfiguration: ResourceConfiguration;
variables?: Variable[] | null;
}

§Properties

§
executionRoleArn: string
[src]

The ARN of the role that gives permission to the system to access required resources to run the containerAction. This includes, at minimum, permission to retrieve the dataset contents that are the input to the containerized application.

§
image: string
[src]

The ARN of the Docker container stored in your account. The Docker container contains an application and required support libraries and is used to generate dataset contents.

§
resourceConfiguration: ResourceConfiguration
[src]

Configuration of the resource that executes the containerAction.

§
variables?: Variable[] | null
[src]

The values of variables used in the context of the execution of the containerized application (basically, parameters passed to the application). Each variable must have a name and a value given by one of stringValue, datasetContentVersionValue, or outputFileUriValue.