As of IIQ 8.4p1, there’s no out-of-the-box connector for Amazon DynamoDB. However, you can integrate it using one of the following supported approaches:
Generic REST Connector: Use DynamoDB’s RESTful API. You’ll need to handle AWS Signature V4 authentication, which may require a custom class or script within IIQ.
Custom Java Connector: For full control, develop a custom connector using the AWS SDK. This is the most flexible and scalable option for reading/writing DynamoDB data.
External Aggregation: Query DynamoDB externally (via Lambda or script), export the data to a flat file, and onboard it using IIQ’s Delimited File connector.
Each method depends on your exact use case and whether you need real-time integration or periodic sync.