Page updated Jan 16, 2024

Use existing AWS resources

Amplify Flutter v0 is now in Maintenance Mode until July 19th, 2024. This means that we will continue to include updates to ensure compatibility with backend services and security. No new features will be introduced in v0.

Please use the latest version (v1) of Amplify Flutter to get started.

If you are currently using v0, follow these instructions to upgrade to v1.

Existing Amazon Pinpoint resources can be used with the Amplify Libraries by referencing your Application ID and Region in your amplifyconfiguration.dart file.

1{
2 "analytics": {
3 "plugins": {
4 "awsPinpointAnalyticsPlugin": {
5 "pinpointAnalytics": {
6 "appId": "[APP ID]",
7 "region": "[REGION]"
8 },
9 "pinpointTargeting": {
10 "region": "[REGION]"
11 }
12 }
13 }
14 }
15}
  • pinpointAnalytics
    • appId: Amazon Pinpoint application ID
    • region: AWS Region where the resources are provisioned (e.g. us-east-1)
  • pinpointTargeting
    • region: AWS Region where the resources are provisioned (e.g. us-east-1)

Note that before you can add an AWS resource to your application, the application must have the Amplify libraries installed. If you need to perform this step, see Install Amplify Libraries.