AWSFirehosePutRecordBatchResponseEntry

Objective-C

@interface AWSFirehosePutRecordBatchResponseEntry

Swift

class AWSFirehosePutRecordBatchResponseEntry

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.

  • The error code for an individual record result.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable errorCode;

    Swift

    var errorCode: String? { get set }
  • The error message for an individual record result.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable errorMessage;

    Swift

    var errorMessage: String? { get set }
  • The ID of the record.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable recordId;

    Swift

    var recordId: String? { get set }