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

Variable

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

An instance of a variable to be passed to the containerAction execution. Each variable must have a name and a value given by one of stringValue, datasetContentVersionValue, or outputFileUriValue.

interface Variable {
datasetContentVersionValue?: DatasetContentVersionValue | null;
doubleValue?: number | null;
name: string;
outputFileUriValue?: OutputFileUriValue | null;
stringValue?: string | null;
}

§Properties

§
datasetContentVersionValue?: DatasetContentVersionValue | null
[src]

The value of the variable as a structure that specifies a dataset content version.

§
doubleValue?: number | null
[src]

The value of the variable as a double (numeric).

§
name: string
[src]

The name of the variable.

§
outputFileUriValue?: OutputFileUriValue | null
[src]

The value of the variable as a structure that specifies an output file URI.

§
stringValue?: string | null
[src]

The value of the variable as a string.