Skip to content

Commit a87fff2

Browse files
LeeroyHanniganLee Hannigan
andauthored
Fixing typos on LCDC Lab (#114)
Co-authored-by: Lee Hannigan <lhnng@amazon.com>
1 parent bc01458 commit a87fff2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

content/change-data-capture/ex2/configure-lambda.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 220
55
chapter: true
66
---
77

8-
Configure your lambda function to copy changed records from the Orders DynamoDB streams to the OrdersHistory table.
8+
Configure your lambda function to copy changed records from the Orders Kinesis Data Stream to the OrdersHistory table.
99

1010
1. Go to the IAM dashboard on the AWS Management Console and inspect the IAM policy, i.e. **AWSLambdaMicroserviceExecutionRole...**, created when you created the **create-order-history-kds** lambda function.
1111

@@ -87,7 +87,7 @@ arn:aws:lambda:{aws-region}:017000801446:layer:AWSLambdaPowertoolsPythonV2:58
8787
![AWS Lambda function console](/static/images/change-data-capture/ex1/new-env-var.png)
8888

8989
8. Go to the configuration section of the lambda console editor. Select **Triggers** then select **Add trigger**.
90-
9. Select **DynamoDB** as the trigger source.
90+
9. Select **Kinesis** as the trigger source.
9191
10. Select the **Orders** DynamoDB table.
9292
11. Set the **Batch size** to **10** and leave all other values unchanged.
9393

content/change-data-capture/ex2/enable-kds-streams.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Confirm that the stream is active using the following command.
3838
```bash
3939
aws kinesis describe-stream \
4040
--stream-name Orders \
41-
--query "StreamDescription.[StreamStatus, StreamARN]
41+
--query "StreamDescription.[StreamStatus, StreamARN]"
4242
```
4343

4444
Sample output:

content/change-data-capture/ex2/index.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ chapter: true
99

1010
Data on Amazon Kinesis Data Streams is by default available for 24 hours after the data is written to the stream and the retention period can be increased to a maximum of 365 days.
1111

12-
Amazon DynamoDB has naitve integration with Kinesis streams so Kinesis Data Streams can also be used to record item level changes to DynamoDB tables.
12+
Amazon DynamoDB has native integration with Kinesis streams so Kinesis Data Streams can also be used to record item level changes to DynamoDB tables.
1313

1414
In this chapter, you will repeat the process of capturing item level changes on a DynamoDB table and write those changes to a different DynamoDB table. But in this section, change data capture will be done using Amazon Kinesis Data Streams.
1515

0 commit comments

Comments
 (0)