-
Notifications
You must be signed in to change notification settings - Fork 653
New issue
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
service/s3: Add documentation for using unseekable body PutObject and UploadPart #1176
Conversation
Adds additional documentation to the PutObject and UploadPart operations on how to to use unseekable values to be uploaded to S3. Fixes aws#1108
…te hash Updates the v4 package with a new helper to swap out the compute payload hash middleware for the unsigned payload middleware. This allows API operations to be updated to not compute the payload hash, and use UNSIGNED-PAYLOAD instead.
8717ac0
to
e955ccf
Compare
@Override | ||
public byte getOrder() { | ||
// This integration should happen before other integrations that rely on the presence of this trait | ||
return -60; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't pre-process model always run prior to usage of model? Don't think this ordering is required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can remove. The ordering is always present, will inherit from parent if not defined here. But yeah I don't think order maters in this case. Other customizations where order model is pre-processed is where this will be relevant.
Adds documentation to the PutObject and UploadPart operations Body member how to upload unseekable objects to an Amazon S3 Bucket.
Fixes: #1108
Depends on: #1175