aws-dynamodb-connector
Service icon

AWS DynamoDB Connector

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 5 Aug (yesterday)
 by 
0.0
 (0 ratings)
aws-dynamodb-connector

AWS DynamoDB Connector

Documentation
1.0.0

Use any of the DynamoDB_ actions to interact with DynamoDB.

In each action, you pass the Connection input parameter containing your connection details, such as Region, AccessKeyId and SecretAccessKeyId.

The component supports reusing the same DynamoDB client across different requests when given the same connection parameters.

JSON data sent to or from DynamoDB is in DynamoDB's standard marshalled JSON format.
This is a format including type attributes likes "S", "N", "L", "M", ... .
This makes it hard to map this to 'regular' JSON that can easily be deserialized to an OutSystems structure.

To convert from and to DynamoDB standard marshalled JSON to 'regular' JSON, use the following actions:

      • DynamoDB_MapFromDynamoDBJSON
        Maps from DynamoDB json to 'regular' JSON.
      • DynamoDB_MapToDynamoDBJSON
        Maps from 'regular' JSON to DynamoDB json.
        Use the ConversionHints to override the default type conversions if you need types B, SS, NS or BS in your DynamoDB JSON.