SQS Exporter
The SQS exporter will collect the data and create an event in the queue for each evaluation we receive.
Configuration example
ffclient.Config{ 
   // ...
	 cfg, _ := config.LoadDefaultConfig(context.TODO())
   DataExporter: ffclient.DataExporter{
        // ...
        Exporter: &sqsexporter.Exporter{
			      QueueURL: "https://sqs.eu-west-1.amazonaws.com/XXX/test-queue",
            AwsConfig: &cfg,
        },
    },
    // ...
}
Configuration fields
| Field | Description | 
|---|---|
QueueURL  | URL of your SQS queue. You can find it in your AWS console.  | 
AwsConfig  | An instance of aws.Config that configures your access to AWS (see this documentation for more info). | 
Check the godoc for full details.