//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace DomainModel.EventBridgeEvent
{
///
/// This class represents the details of an S3 object create event sent via EventBridge.
///
public class S3ObjectCreate : FaceComparisonDetails
{
///
/// Gets or sets the source IP of the API request.
///
#if NETCOREAPP_3_1
[System.Text.Json.Serialization.JsonPropertyName("source-ip-address")]
#endif
public string? SourceIpAddress { get; set; }
///
/// Gets or sets the reason the event was fired.
///
public string? Reason { get; set; }
}
}