Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

222
Views
Access Denied error AWS Transcription Node JS API

I am using AWS transcription API on Node JS with following code

const tClient = new TranscribeClient({
        region: "us-east-1",
        credentials: {
            accessKeyId: AWS_ID,
            secretAccessKey: SECRET,
        }
    });

    const params = {
        TranscriptionJobName: "firstjob",
        LanguageCode: "en-US", // For example, 'en-US'
        MediaFormat: "m4a", // For example, 'wav'
        Media: {
          MediaFileUri: "https://transcribe-demo.s3-REGION.amazonaws.com/hello_world.m4a",
       
        },
      };

     const run = async () => {
        try {
          const data = await tClient.send(
            new StartTranscriptionJobCommand(params)
          );
          console.log("Success - put", data);
          return data; // For unit tests.
        } catch (err) {
          console.log("Error", err);
        }
    };
    run();

But I am getting following error, I have checked all the permissions and access keys are correct . I am unable to understand error reason.

AccessDeniedException: User: arn:aws:iam::494240200407:user/demno_system is not authorized to perform: transcribe:StartTranscriptionJob on resource: arn:aws:transcribe:us-east-1:494240200407:transcription-job/firstjob because no permissions boundary allows the transcribe:StartTranscriptionJob action

Any inputs are appreciated.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

As stated in the error message, you have a permission boundary that doesn't allow this action. The fact that you added the required policy to the user has no effect, since the access is limited by the permission boundary. You need to edit the user's permission boundary to allow this.

Refer to the documentation.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!