kinesis-consumer/manifest.go
Harlow Ward b4f0539fb4 Add Redshift Manifest functionality
Use a manifest file for batch importing files uploaded to S3.
2014-12-07 14:28:45 -08:00

10 lines
169 B
Go

package connector
type Entry struct {
Url string `json:"url"`
Mandatory bool `json:"mandatory"`
}
type Manifest struct {
Entries []Entry `json:"entries"`
}