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

PutRecordBatchOutput

import type { PutRecordBatchOutput } from "https://aws-api.deno.dev/v0.4/services/firehose.ts?docs=full";
interface PutRecordBatchOutput {
Encrypted?: boolean | null;
FailedPutCount: number;
RequestResponses: PutRecordBatchResponseEntry[];
}

§Properties

§
Encrypted?: boolean | null
[src]

Indicates whether server-side encryption (SSE) was enabled during this operation.

§
FailedPutCount: number
[src]

The number of records that might have failed processing. This number might be greater than 0 even if the "PutRecordBatch" call succeeds. Check FailedPutCount to determine whether there are records that you need to resend.

§

The results array. For each record, the index of the response element is the same as the index used in the request array.