Home > Software design >  IAM permission for s3:PutBucketInventoryConfiguration
IAM permission for s3:PutBucketInventoryConfiguration

Time:09-16

I am trying to run the boto3 put_bucket_inventory_configuration s3 command, but I am getting an access denied error: An error occurred (AccessDenied) when calling the PutBucketInventoryConfiguration operation: Access Denied

I am not sure what I need to add to my IAM permissions to get access, as s3:PutBucketInventoryConfiguration doesn't exist and s3:PutObject isn't giving me access either. Any help would be appreciated!

CodePudding user response:

s3:PutInventoryConfiguration is what you are looking for.

  • Related