aws-sdk module installation errors in angular ionic project.

0

Enter image description here

Can anyone help me resolve the errors due to the installation of aws-sdk module. npm i aws-sdk

import * as AWS from 'aws-sdk';

getAWSAccess(){
    const cognitoUser = this.userpool.getCurrentUser();
    AWS.config.region = 'us-east-1'
    return new Promise((resolve, reject) => {
      cognitoUser?.getSession((error:Error, result:any)=> {
        if (result) {
          // Add the User's Id Token to the Cognito credentials login map.
          AWS.config.credentials = new AWS.CognitoIdentityCredentials({
            IdentityPoolId: 'us-east-1:39c683dc-c454-426c-a3c4-b8c425447c18',
            Logins: {
              'cognito-idp.us-east-1.amazonaws.com/us-east-1_9lAFiKAxg': result.getIdToken().getJwtToken()
            }
          });
        }
      });
    }
    )
	

1 Answer
0

Hi,

I would say that TypeScript is complaining because some node type definitions are missing. Could you execute npm install --save-dev @types/node and try again?

profile picture
EXPERT
answered 4 months ago
  • I tried npm install --save-dev @types/node this command but still the error persists. Can you suggest me any other solutions

  • I'm sorry to hear that. What error do you have after executing the command? Take a look at the solution proposed in this article, it may help you.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions