-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
chore: update name of sdk-v2-to-v3-adapter
and improve documentation
#29847
Conversation
Signed-off-by: Francis <colifran@amazon.com>
Signed-off-by: Francis <colifran@amazon.com>
Signed-off-by: Francis <colifran@amazon.com>
Signed-off-by: Francis <colifran@amazon.com>
Signed-off-by: Francis <colifran@amazon.com>
Signed-off-by: Francis <colifran@amazon.com>
Signed-off-by: Francis <colifran@amazon.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great 🚀 ! Left 1 minor comment, but nothing blocking
"name": "@aws-cdk/sdk-v2-to-v3-adapter", | ||
"description": "Adapter to convert AWS SDK v2 to AWS CDK v3 calls", | ||
"name": "@aws-cdk/aws-custom-resource-sdk-adapter", | ||
"description": "Adapter to convert AWS SDK v2 to AWS CDK v3 calls for AwsCustomResource", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: can we update this description to no longer refer to this as converting v2 to v3 calls, but maybe something like Adapter to convert AWS CDK to AWS SDK compatible calls (or something more generic)?
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Comments on closed issues and PRs are hard for our team to see. If you need help, please open a new issue that references this one. |
Issue # (if applicable)
Closes #29843
Reason for this change
The AWS SDK V2 is being deprecated. The
sdk-v2-to-v3-adapter
was created as a way to migrateAwsCustomResource
to use AWS SDK V3 without introducing breaking changes. The documentation for the adapter does not provide enough detail about what it is used for and what functionality it provides. Additionally, the naming of the adapter should convey that it is used to provide an abstraction over all SDK versions, not just SDK V2 to SDK V3.Description of changes
The
sdk-v2-to-v3-adapter
was changed toaws-custom-resource-sdk-adapter
. Any usage ofsdk-v2-to-v3-adapter
was updated to now useaws-custom-resource-sdk-adapter
. TheREADME
foraws-custom-resource-sdk-adapter
was improved to provide an overview of the tooling that exists as part of the adapter.Description of how you validated changes
No new unit tests or integ tests were needed as part of this PR. The current build is succeeding which means that the naming update has not introduced a breaking change.
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license