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

PutRecordsOutput

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

PutRecords results.

interface PutRecordsOutput {
EncryptionType?: EncryptionType | null;
FailedRecordCount?: number | null;
}

§Properties

§
EncryptionType?: EncryptionType | null
[src]

The encryption type used on the records. This parameter can be one of the following values:

  • NONE: Do not encrypt the records.
  • KMS: Use server-side encryption on the records using a customer-managed Amazon Web Services KMS key.
§
FailedRecordCount?: number | null
[src]

The number of unsuccessfully processed records in a PutRecords request.

§

An array of successfully and unsuccessfully processed record results. A record that is successfully added to a stream includes SequenceNumber and ShardId in the result. A record that fails to be added to a stream includes ErrorCode and ErrorMessage in the result.