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 個回答
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
專家
已回答 5 個月前
  • 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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南