diff --git a/events/firehose.go b/events/firehose.go index 85b8fd18..f01da504 100644 --- a/events/firehose.go +++ b/events/firehose.go @@ -37,7 +37,14 @@ type KinesisFirehoseResponseRecord struct { } type KinesisFirehoseResponseRecordMetadata struct { - PartitionKeys map[string]string `json:"partitionKeys"` + PartitionKeys map[string]string `json:"partitionKeys"` + OtfMetadata KinesisFirehoseResponseRecordMetadataOtfMetadata `json:"otfMetadata"` +} + +type KinesisFirehoseResponseRecordMetadataOtfMetadata struct { + DestinationDatabaseName string `json:"destinationDatabaseName"` + DestinationTableName string `json:"destinationTableName"` + Operation string `json:"operation"` } type KinesisFirehoseRecordMetadata struct {