Skip to content

Commit

Permalink
Add constant for otf operation
Browse files Browse the repository at this point in the history
  • Loading branch information
amalakar committed Nov 21, 2024
1 parent 80084fa commit 88cdb7b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions events/firehose.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ const (
KinesisFirehoseTransformedStateProcessingFailed = "ProcessingFailed"
)

// Constants used for otf operation for the record
const (
KinesisFirehoseOtfOperationInsert = "insert"
KinesisFirehoseOtfOperationUpdate = "update"
KinesisFirehoseOtfOperationDelete = "delete"
)

type KinesisFirehoseResponse struct {
Records []KinesisFirehoseResponseRecord `json:"records"`
}
Expand Down

0 comments on commit 88cdb7b

Please sign in to comment.