kinesis-consumer/manifest.go
Harlow Ward 106f0d66bb Add Redshift Manifest functionality
Use a manifest file for batch importing files uploaded to S3.
2014-12-10 21:59:42 -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"`
}