Regarding cost optimizations what would be the cheapest
aws s3 cp local-data s3://same-backet/latest
aws s3 cp local-data s3://same-backet/some-date
or
aws s3 cp local-data s3://same-backet/latest
aws s3 cp s3://same-backet/latest s3://same-backet/some-date
I.e. does bucket-to-bucket copy would use less external (to AWS) traffic then local-to-bucket or it would it make even bucket-local-bucket trip to complete the task?