- Newest
- Most votes
- Most comments
To resolve your issue with accessing Amazon Polly as an IAM user, your boss (the AWS account administrator) needs to update your IAM user permissions. Here's what needs to be done:
-
Your boss should log into the AWS Management Console as the account administrator.
-
They need to navigate to the IAM service and locate your IAM user.
-
They should then update your user's permissions by attaching a policy that grants access to Amazon Polly. There are a few options:
a. Attach the AWS managed policy "AmazonPollyFullAccess" for full access to Polly. b. Create a custom policy that grants specific Polly permissions based on your needs.
-
If they want to grant you full access to Polly, they can use a policy like this:
{ "Version": "2012-10-17", "Statement": [{ "Effect": "Allow", "Action": ["polly:"], "Resource": "" }] }
-
If you need to use the Amazon Polly console, make sure the policy includes permissions for all Polly APIs.
-
Your boss should also ensure that you have the necessary permissions to pass roles to Amazon Polly if required, which involves the "iam:PassRole" action.
After your permissions are updated, you should be able to access and use Amazon Polly. If you continue to experience issues, your boss may need to troubleshoot further or consult AWS support for assistance.
Sources
Troubleshooting Amazon Polly identity and access - Amazon Polly
Identity and Access Management in Amazon Polly - Amazon Polly
Identity-based policy examples for Amazon Polly - Amazon Polly
Relevant content
- asked 3 years ago
- AWS OFFICIALUpdated 4 months ago
