admin管理员组

文章数量:1290945

I am using AWS Database Migration Service (DMS) to replicate Change Data Capture (CDC) data from Aurora PostgreSQL Serverless to Amazon Kinesis Data Streams. My Aurora PostgreSQL source endpoint works fine, but when I try to test my Kinesis target endpoint, it fails with the following error:

"Test Endpoint failed: Application-Status: 1020912, Application-Message: Failed to connect to database."

The IAM role dms-kinesis-role attached to DMS has the following permissions { "Effect": "Allow", "Action": [ "kinesis:PutRecord", "kinesis:PutRecords", "kinesis:DescribeStream", "kinesis:GetShardIterator", "kinesis:GetRecords", "kinesis:ListShards" ], "Resource": "arn:aws:kinesis:ap-south-1:4***********:stream/***" }

  • The role is trusted by DMS

  • Verified Kinesis Stream Exists & is Active on the same region.

  • Also, my public subnet has NAT gateway, and I enabled public access in the DMS as well.

Are there any additional IAM permissions or settings required for Kinesis?

本文标签: DMSreplicate CDC data from Aurora PostgreSQL Serverless to Amazon Kinesis Data StreamsStack Overflow