namespace Amazon.Lambda.SimpleEmailEvents.Actions { /// /// The S3 action's receipt /// public class S3ReceiptAction : IReceiptAction { /// /// The type of the action, e.g. "Lambda", "S3" /// public string Type { get; set; } /// /// The SNS topic to be posted to after the S3 action /// public string TopicArn { get; set; } /// /// The S3 bucket name where the email has been stored /// public string BucketName { get; set; } /// /// The prefix to the object's full key key (i.e folders) /// public string ObjectKeyPrefix { get; set; } /// /// The full object key /// public string ObjectKey { get; set; } } }