You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
There is one problem with this solution. the fact that there is used aws s3 cp instead of aws s3api put-object which would be more cost efficient. Since cp uses the multipart upload which costs more than plain put-object, because cp makes multiple put-object calls underneath.
There is one problem with this solution. the fact that there is used
aws s3 cp
instead ofaws s3api put-object
which would be more cost efficient. Sincecp
uses the multipart upload which costs more than plain put-object, becausecp
makes multiple put-object calls underneath.