Class StreamsEventResponse
- Namespace
- Amazon.Lambda.KinesisEvents
- Assembly
- Amazon.Lambda.KinesisEvents.dll
Function response type to report batch item failures for KinesisEvent. https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-batchfailurereporting
[DataContract]
public class StreamsEventResponse
- Inheritance
-
StreamsEventResponse
- Inherited Members
Constructors
StreamsEventResponse()
public StreamsEventResponse()
Properties
BatchItemFailures
A list of records which failed processing. Returning the first record which failed would retry all remaining records from the batch.
[DataMember(Name = "batchItemFailures", EmitDefaultValue = false)]
[JsonPropertyName("batchItemFailures")]
public IList<StreamsEventResponse.BatchItemFailure> BatchItemFailures { get; set; }