How to Integrate Amazon Marketing Streams with Daton

This subtopic provides step-by-step instructions to create Amazon Marketing Streams (AMS) integrations in Daton, detailing the prerequisites, the integration process, and important notes.

Pre-Requisites

Before starting, ensure you have

  • An active Daton account.

  • An AWS account configured with the following:

    • 'Daton' set up as a trusted entity for an IAM role.

    • SQS timeout set for 12 hours.

Task 1: Create a new role to access SQS (Amazon Simple Queue Service)

  1. Sign in to the AWS console and navigate to IAM (Identity and Access Management).

  2. Select Role from the Access Management menu and click Create Role.

  3. Select AWS account for Trusted Entity Type and use the account ID- 214669062314.

  4. Add AmazonSQSFullAccess permissions - Search for 'sqs' and select AmazonSQSFullAccess from the list. Full access is required as Daton would create and manage SQS programmatically, for each of the Ad profiles and marketplaces.

  5. Provide a Name for the Role and click Create role.

Task 2: Update the Trust Policy for the Role

  1. Click on the role that you created earlier. Go to the Trust Relationships tab and click on Edit Trust Policy.

  2. Replace the existing policy with the following and save the policy.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::214669062314:user/DatonSQSAccess"
            },
            "Action": "sts:AssumeRole",
            "Condition": {}
        }
    ]
}

Task 3: Update SQS timeouts

  1. Go to the SQS role and click Edit.

  2. Update Maximum Session Duration to 12 Hours.

Task 4: Integrate Daton with Amazon Marketing Streams

  1. Log in to your Daton account and search for Amazon Marketing Streams in the list of Connectors, then click Configure.

  2. Enter the following details and click Authenticate:

    • Integration Name Note that the Integration Name will be used to create the integration tables and cannot be modified later.

    • Regions and Marketplaces

    • Role ARN: Find the ARN in Amazon AWS IAM that matches the role you created in Task 1. Copy and paste it into this field.

  3. Post Authentication, select Ad accounts from the list, and submit the configuration.

  4. Select the destination for extracting data for replication and relax. Daton takes care of the further process, handling the creation of queues, establishing subscriptions to streams, and ensuring effective queue management throughout the data retrieval and integration process.

Note

Subscribing to streams in Amazon Marketing Streams through Daton may take up to 2 hours for completion. To track the status of your subscriptions, edit the integration and navigate to the subscription list page within the Daton platform.

Last updated