Hugo
Hugo

Reputation: 1304

Using AWS Firehose without AWS SDK

I m considering using Firehose to send data from a web application.

Firehose service is exposed through the AWS SDK

The SDK is heavy (aws-sdk-2.5.5.min.js weights 1 Mo). This could increase the load time of the website.

Is this an issue ? How can it be addressed ? Is it possible to only load parts of the SDK ?

Upvotes: 2

Views: 247

Answers (1)

Mark B
Mark B

Reputation: 200456

Use the AWS SDK for JavaScript builder tool here to build a smaller version of the SDK with only the service(s) you need.

Upvotes: 1

Related Questions