Class: Aws::Kinesis::Types::PutRecordsOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb

Overview

PutRecords results.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_typeString

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.

Returns:

  • (String)


1566
1567
1568
1569
1570
1571
1572
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1566

class PutRecordsOutput < Struct.new(
  :failed_record_count,
  :records,
  :encryption_type)
  SENSITIVE = []
  include Aws::Structure
end

#failed_record_countInteger

The number of unsuccessfully processed records in a PutRecords request.

Returns:

  • (Integer)


1566
1567
1568
1569
1570
1571
1572
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1566

class PutRecordsOutput < Struct.new(
  :failed_record_count,
  :records,
  :encryption_type)
  SENSITIVE = []
  include Aws::Structure
end

#recordsArray<Types::PutRecordsResultEntry>

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.

Returns:



1566
1567
1568
1569
1570
1571
1572
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1566

class PutRecordsOutput < Struct.new(
  :failed_record_count,
  :records,
  :encryption_type)
  SENSITIVE = []
  include Aws::Structure
end