class Amazonite::Kinesis::PutRecordOutput

Overview

Represents the output for PutRecord.

Included Modules

Defined in:

kinesis/put_record_output.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(shard_id : String, sequence_number : String, encryption_type : EncryptionType | Nil = nil) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def encryption_type : EncryptionType | Nil #

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.


[View source]
def encryption_type=(encryption_type : EncryptionType | Nil) #

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.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def sequence_number : String #

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.


[View source]
def sequence_number=(sequence_number : String) #

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.


[View source]
def shard_id : String #

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


[View source]
def shard_id=(shard_id : String) #

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


[View source]
def validate! : Nil #

[View source]