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

PutRecordOutput

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

Represents the output for PutRecord.

interface PutRecordOutput {
EncryptionType?: EncryptionType | null;
SequenceNumber: string;
ShardId: string;
}

§Properties

§
EncryptionType?: EncryptionType | null
[src]

The encryption type to use on the record. This parameter can be one of the following values:

  • NONE: Do not encrypt the records in the stream.
  • KMS: Use server-side encryption on the records in the stream using a customer-managed Amazon Web Services KMS key.
§
SequenceNumber: string
[src]

The sequence number identifier that was assigned to the put data record. The sequence number for the record is unique across all records in the stream. A sequence number is the identifier associated with every record put into the stream.

§
ShardId: string
[src]

The shard ID of the shard where the data record was placed.