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.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则