Name:
interface
Value:
Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Apr 29, 2024

Maintenance ModeYou are viewing Amplify Gen 1 documentation. Amplify Gen 1 has entered maintenance mode and will reach end of life on May 1, 2027. New project should use Amplify Gen 2. For existing Gen 1 projects, a migration guide and tooling are available to help you upgrade. Switch to the latest Gen 2 docs →

Automatically track events

You can enable automatic tracking of Storage Events such as uploads and downloads, by setting { track: true } when calling the Storage API.

This option is currently only supported in Amplify JavaScript. Enabling this will automatically send Storage Events to Amazon Pinpoint and you will be able to see them within the AWS Pinpoint Console under Custom Events. The event name will be 'Storage' and in Event Attributes, you can see details about the event, e.g. Storage > Method > Put.

Track all the Storage events

Storage.configure({ track: true });

Track a specific storage action

Storage.get('welcome.png', { track: true });