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

ErrorHandlingConfig

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

The settings that determine how Amazon AppFlow handles an error when placing data in the destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.

interface ErrorHandlingConfig {
bucketName?: string | null;
bucketPrefix?: string | null;
failOnFirstDestinationError?: boolean | null;
}

§Properties

§
bucketName?: string | null
[src]

Specifies the name of the Amazon S3 bucket.

§
bucketPrefix?: string | null
[src]

Specifies the Amazon S3 bucket prefix.

§
failOnFirstDestinationError?: boolean | null
[src]

Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.