Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request migrates the DynamoDB integration from the deprecated AWS SDK v1 to AWS SDK v2 across the codebase. The update includes changes to imports, client initialization, method calls, and test setup, as well as updating related dependencies in
go.mod. The migration ensures compatibility with the latest AWS SDK and improves maintainability.AWS SDK v2 Migration:
github.com/aws/aws-sdk-go(v1) togithub.com/aws/aws-sdk-go-v2(v2) indatasource/aws.go,drivers/dynamo/dynamo.go, anddrivers/dynamo/dynamo_test.go. This includes switching to new client types and method signatures. [1] [2] [3]dynamodb.NewFromConfig,ListTables, andDescribeTable, and updated how endpoints and regions are configured. [1] [2] [3] [4]types.TableDescriptionand related field access. [1] [2]Dependency Updates:
go.mod, ensuring compatibility with the updated code.