Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(appsync): support for read consistency during DynamoDB reads #20793

Merged
merged 27 commits into from
Jul 21, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fd94542
add consistent read for dynamoDbGetItem, dynamoDbScanTable and dynamo…
YichenQian09 Jun 22, 2022
1d04a0a
change the indent
YichenQian09 Jun 23, 2022
bc2cd79
add tests for consistentRead
YichenQian09 Jul 1, 2022
a81b745
add reference for consistentRead in README.md
YichenQian09 Jul 1, 2022
cf44a76
pass the consistentRead as boolean in mapping-template
YichenQian09 Jul 1, 2022
ce16abc
chore: add unit test
pahud Jul 7, 2022
a3a1ccc
Merge pull request #1 from pahud/pahud/read-consistency
YichenQian09 Jul 8, 2022
905339b
added united tests for read consistency
YichenQian09 Jul 9, 2022
08fe755
modified united tests for read consistency
YichenQian09 Jul 9, 2022
f761b45
delete inexistent files in main branch
YichenQian09 Jul 11, 2022
5d100bf
Merge branch 'aws-main' into consistent-read-v2
YichenQian09 Jul 11, 2022
ef9a183
update markdown for DynamoDB read consistency
YichenQian09 Jul 13, 2022
364ea79
updated the readme.md
YichenQian09 Jul 13, 2022
76c14fe
Merge branch 'main' into read-consistency
kellertk Jul 14, 2022
502ac8d
updated readme.md
YichenQian09 Jul 14, 2022
46ae6f1
updated readme.md
YichenQian09 Jul 14, 2022
78d03c3
Merge branch 'read-consistency' of https://github.com/YichenQian09/aw…
YichenQian09 Jul 14, 2022
4d23918
Merge branch 'main' into read-consistency
YichenQian09 Jul 15, 2022
ff88f79
Merge branch 'main' into read-consistency
pahud Jul 15, 2022
8e25f62
update readme.md
YichenQian09 Jul 18, 2022
3867d2a
solved conflict
YichenQian09 Jul 18, 2022
f2fc776
updated the expiration timestamp for api-key
YichenQian09 Jul 19, 2022
25b0059
Merge branch 'main' into read-consistency
YichenQian09 Jul 19, 2022
ea91ca7
Merge branch 'main' into read-consistency
YichenQian09 Jul 19, 2022
5ebe3b2
Update packages/@aws-cdk/aws-appsync/README.md
YichenQian09 Jul 21, 2022
1e24775
Merge branch 'main' into read-consistency
YichenQian09 Jul 21, 2022
669d3dd
Merge branch 'main' into read-consistency
mergify[bot] Jul 21, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated the readme.md
  • Loading branch information
YichenQian09 committed Jul 13, 2022
commit 364ea79281c609ba802577414b189f958ae67b11
1 change: 1 addition & 0 deletions packages/@aws-cdk/aws-appsync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ demoDS.createResolver({
```

To enable DynamoDB read consistency with the `MappingTemplate`:

```ts
MappingTemplate.dynamoDbScanTable(true);
MappingTemplate.dynamoDbGetItem(keyName,id,true);
Expand Down