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

Field

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

A key-value pair that describes a property of a pipeline object. The value is specified as either a string value (StringValue) or a reference to another object (RefValue) but not as both.

interface Field {
key: string;
refValue?: string | null;
stringValue?: string | null;
}

§Properties

§
key: string
[src]

The field identifier.

§
refValue?: string | null
[src]

The field value, expressed as the identifier of another object.

§
stringValue?: string | null
[src]

The field value, expressed as a String.