Skip to content

Commit

Permalink
Merge branch 'main' into merge-back/2.141.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored May 9, 2024
2 parents 3d1c06e + e9e800f commit 16637a2
Show file tree
Hide file tree
Showing 46 changed files with 28,156 additions and 40,813 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
/* eslint-disable no-console */
// @ts-ignore
import { S3Client } from '@aws-sdk/client-s3'; // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved

const s3 = new S3Client({});
import { DynamoDBClient, DescribeTableCommand } from '@aws-sdk/client-dynamodb'; // eslint-disable-line import/no-extraneous-dependencies

export async function handler() {
console.log(s3);
}
const client = new DynamoDBClient();
const input = {
TableName: process.env.TABLE_NAME,
};
const command = new DescribeTableCommand(input);
const response = await client.send(command);
console.log(response);
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/* eslint-disable no-console */
import { S3 } from '@aws-sdk/client-s3'; // eslint-disable-line import/no-extraneous-dependencies
// @ts-ignore
import delay from 'delay';

const s3 = new S3();

export async function handler() {
console.log(s3);
await delay(5);
}
console.log('log after delay');
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 16637a2

Please sign in to comment.