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

MappingParameters

import type { MappingParameters } from "https://aws-api.deno.dev/v0.4/services/kinesisanalytics.ts?docs=full";

When configuring application input at the time of creating or updating an application, provides additional mapping information specific to the record format (such as JSON, CSV, or record fields delimited by some delimiter) on the streaming source.

interface MappingParameters {
CSVMappingParameters?: CSVMappingParameters | null;
JSONMappingParameters?: JSONMappingParameters | null;
}

§Properties

§
CSVMappingParameters?: CSVMappingParameters | null
[src]

Provides additional mapping information when the record format uses delimiters (for example, CSV).

§
JSONMappingParameters?: JSONMappingParameters | null
[src]

Provides additional mapping information when JSON is the record format on the streaming source.