Class RecordSuccess<TRecord>
Represents a batch record that was successfully processed.
Inherited Members
Namespace: AWS.Lambda.Powertools.BatchProcessing
Assembly: AWS.Lambda.Powertools.BatchProcessing.dll
Syntax
public class RecordSuccess<TRecord>
Type Parameters
Name | Description |
---|---|
TRecord | Type of batch record. |
Properties
HandlerResult
The result returned by the record handler processing the batch record.
Declaration
public RecordHandlerResult HandlerResult { get; init; }
Property Value
Type | Description |
---|---|
RecordHandlerResult |
Record
The batch record.
Declaration
public TRecord Record { get; init; }
Property Value
Type | Description |
---|---|
TRecord |
RecordId
The batch record identifier.
Declaration
public string RecordId { get; init; }
Property Value
Type | Description |
---|---|
string |