-
Notifications
You must be signed in to change notification settings - Fork 475
/
StreamsEventResponse.cs
38 lines (36 loc) · 1.43 KB
/
StreamsEventResponse.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
namespace Amazon.Lambda.DynamoDBEvents
{
using System.Collections.Generic;
using System.Runtime.Serialization;
/// <summary>
/// This class is used as the return type for AWS Lambda functions that are invoked by DynamoDB to report batch item failures.
/// https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-ddb-batchfailurereporting
/// </summary>
[DataContract]
public class StreamsEventResponse
{
/// <summary>
/// A list of records which failed processing. Returning the first record which failed would retry all remaining records from the batch.
/// </summary>
[DataMember(Name = "batchItemFailures", EmitDefaultValue = false)]
#if NETCOREAPP3_1_OR_GREATER
[System.Text.Json.Serialization.JsonPropertyName("batchItemFailures")]
#endif
public IList<BatchItemFailure> BatchItemFailures { get; set; }
/// <summary>
/// The class representing the BatchItemFailure.
/// </summary>
[DataContract]
public class BatchItemFailure
{
/// <summary>
/// Sequence number of the record which failed processing.
/// </summary>
[DataMember(Name = "itemIdentifier", EmitDefaultValue = false)]
#if NETCOREAPP3_1_OR_GREATER
[System.Text.Json.Serialization.JsonPropertyName("itemIdentifier")]
#endif
public string ItemIdentifier { get; set; }
}
}
}