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

PutRecordBatchResponseEntry

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

Contains the result for an individual record from a "PutRecordBatch" request. If the record is successfully added to your delivery stream, it receives a record ID. If the record fails to be added to your delivery stream, the result includes an error code and an error message.

interface PutRecordBatchResponseEntry {
ErrorCode?: string | null;
ErrorMessage?: string | null;
RecordId?: string | null;
}

§Properties

§
ErrorCode?: string | null
[src]

The error code for an individual record result.

§
ErrorMessage?: string | null
[src]

The error message for an individual record result.

§
RecordId?: string | null
[src]

The ID of the record.