You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🐛 Source Dynamodb: Fix reserved words in expression (#20172)
* fix reserved words in expression
* chore: bump version
* fix state message
* auto-bump connector version
* fix reserved words in projection expression
* bump dockerfile version
* auto-bump connector version
---------
Co-authored-by: Vincent Koc <[email protected]>
Co-authored-by: Octavia Squidington III <[email protected]>
Co-authored-by: Sajarin <[email protected]>
Co-authored-by: Sunny <[email protected]>
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbConfig.java
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbOperations.java
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-dynamodb/src/main/java/io/airbyte/integrations/source/dynamodb/DynamodbUtils.java
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbDataFactory.java
+1
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,7 @@ public static JsonNode createJsonConfig(DynamodbContainer dynamodbContainer) {
Copy file name to clipboardExpand all lines: airbyte-integrations/connectors/source-dynamodb/src/test-integration/java/io/airbyte/integrations/source/dynamodb/DynamodbOperationsTest.java
Copy file name to clipboardExpand all lines: docs/integrations/sources/dynamodb.md
+12-9
Original file line number
Diff line number
Diff line change
@@ -51,15 +51,18 @@ This guide describes in details how you can configure the connector to connect w
51
51
52
52
### Сonfiguration Parameters
53
53
54
-
*endpoint: aws endpoint of the dynamodb instance
55
-
*region: the region code of the dynamodb instance
56
-
*access_key_id: the access key for the IAM user with the required permissions
57
-
*secret_access_key: the secret key for the IAM user with the required permissions
58
-
54
+
***_endpoint_**: aws endpoint of the dynamodb instance
55
+
***_region_**: the region code of the dynamodb instance
56
+
***_access_key_id_**: the access key for the IAM user with the required permissions
57
+
***_secret_access_key_**: the secret key for the IAM user with the required permissions
58
+
***_reserved_attribute_names_**: comma separated list of attribute names present in the replication tables which contain reserved words or special characters. https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.ExpressionAttributeNames.html
0 commit comments