Question 354:
In a large company, you work as an AWS administrator. For a Windows SQL server instance, there is already a daily task to regularly transfer the database backup files to an S3 bucket (DB_Backup_1) in AWS account 111111111111. One data scientist asks you if it is possible to copy the latest backup file to another S3 bucket (DB_Backup_2) in his AWS account 222222222222. You plan to use AWS S3 CLI to do this. Which combinations of methods can accomplish this mission? (Select TWO.)
Answer options:
A.In account 111111111111, attach a bucket policy to DB_Backup_1 that allows the destination account 222222222222 to do the actions of "s3:ListBucket" and "s3:GetObject". B.In account 111111111111, attach an Access Control List (ACL) policy to DB_Backup_1 that allows the destination account 222222222222 to do the actions of "s3:ListBucket" and "s3:PutObject". C.In account 222222222222, attach an IAM policy to the IAM user or group that allows the data scientist user to copy objects from source bucket DB_Backup_1 to bucket DB_Backup_2. D.In account 222222222222, attach a bucket policy to DB_Backup_2 that allows the destination account 222222222222 to do the actions of "s3:ListBucket" and "s3:PutObject". E.In account 222222222222, attach an Access Control List (ACL) policy to DB_Backup_2 that allows the source account 111111111111 to do the actions of "s3:ListBucket", "s3:GetObject" and "s3:ListObject".