We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment, when the lib calls s3manager.Uploader.Upload, it constructs a default parameter input *UploadInput:
input *UploadInput
parquet-go-source/s3/s3.go
Lines 305 to 309 in 88e6b03
This will suffice in most cases. However, this doesn't allow setting other upload options, e.g. SSEKMSKeyId
SSEKMSKeyId
https://github.com/aws/aws-sdk-go/blob/80a52257588ca940087e586fcf38280fd1b3aab5/service/s3/s3manager/upload_input.go#L138
To allow more flexibility, how about using UploadInput here to replace both bucket and key?
UploadInput
bucket
key
Lines 69 to 73 in 88e6b03
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment, when the lib calls s3manager.Uploader.Upload, it constructs a default parameter
input *UploadInput
:parquet-go-source/s3/s3.go
Lines 305 to 309 in 88e6b03
This will suffice in most cases. However, this doesn't allow setting other upload options, e.g.
SSEKMSKeyId
https://github.com/aws/aws-sdk-go/blob/80a52257588ca940087e586fcf38280fd1b3aab5/service/s3/s3manager/upload_input.go#L138
To allow more flexibility, how about using
UploadInput
here to replace bothbucket
andkey
?parquet-go-source/s3/s3.go
Lines 69 to 73 in 88e6b03
The text was updated successfully, but these errors were encountered: