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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-firehose/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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code for an individual record result.

Returns:

  • (String)


3172
3173
3174
3175
3176
3177
3178
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3172

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

#error_messageString

The error message for an individual record result.

Returns:

  • (String)


3172
3173
3174
3175
3176
3177
3178
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3172

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

#record_idString

The ID of the record.

Returns:

  • (String)


3172
3173
3174
3175
3176
3177
3178
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3172

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