1

Why is AwsServiceClient undefined?

npm install mongodb-stitch-browser-sdk (4.7.1)
npm install mongodb-stitch-browser-services-aws-s3 (4.7.1)
import { Stitch, AwsServiceClient, AwsRequest } from "mongodb-stitch-browser-sdk";

I am trying to upload a photo via stitch to S3.

dnndeveloper
  • 1,631
  • 2
  • 19
  • 36

1 Answers1

1

You are supposed to install the mongodb-stitch-browser-services-aws sdk to be able to use the AwsServiceClient:

npm install mongodb-stitch-browser-services-aws

import { AwsServiceClient } from 'mongodb-stitch-browser-services-aws';

Fatimah
  • 722
  • 7
  • 16