I am trying to execute the following program and facing this issue
botocore.exceptions.ClientError: An error occurred (404) when calling the HeadObject operation: Not Found
import boto3
s3 = boto3.resource('s3')
copy_source = {
'Bucket': 'forw',
'Key': 'test'
}
s3.meta.client.copy(copy_source,Bucket='copybucket0526',Key='tet')