Class: Aws::Firehose::Types::PutRecordBatchResponseEntry

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Contains the result for an individual record from a PutRecordBatch request. If the record is successfully added to your delivery stream, it receives a record ID. If the record fails to be added to your delivery stream, the result includes an error code and an error message.

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code for an individual record result.

Returns:

  • (String)


2613
2614
2615
2616
2617
2618
# File 'lib/aws-sdk-firehose/types.rb', line 2613

class PutRecordBatchResponseEntry < Struct.new(
  :record_id,
  :error_code,
  :error_message)
  include Aws::Structure
end

#error_messageString

The error message for an individual record result.

Returns:

  • (String)


2613
2614
2615
2616
2617
2618
# File 'lib/aws-sdk-firehose/types.rb', line 2613

class PutRecordBatchResponseEntry < Struct.new(
  :record_id,
  :error_code,
  :error_message)
  include Aws::Structure
end

#record_idString

The ID of the record.

Returns:

  • (String)


2613
2614
2615
2616
2617
2618
# File 'lib/aws-sdk-firehose/types.rb', line 2613

class PutRecordBatchResponseEntry < Struct.new(
  :record_id,
  :error_code,
  :error_message)
  include Aws::Structure
end