-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Labels
enhancementNew feature or requestNew feature or requestp2This is a standard priority issueThis is a standard priority issue
Description
Self-service
- I'd be willing to implement this feature
Problem
The configuration set using AWS.Config is not transformed.
Example input:
import AWS from "aws-sdk";
const client = new AWS.DynamoDB(
new AWS.Config({ region: "us-east-1" })
);
console.log(await client.listTables().promise());Solution
Expected output:
import { DynamoDB } from "@aws-sdk/client-dynamodb";
const client = new DynamoDB({ region: "us-east-1" });
console.log(await client.listTables());The basic support should update any Config parameters which are renamed listed in UPGRADING.md.
Alternatives
Manually removing the AWS.Config call
Additional context
No response
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestp2This is a standard priority issueThis is a standard priority issue