Menu
Scroll for more
This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
Open source
copyObject
S3Client.copyObject copies an object from one bucket to another.
Parameters
| Parameter | Type | Description |
|---|---|---|
| sourceBucket | string | Name of the bucket to copy the object from. |
| sourceKey | string | Name of the object to copy from the source bucket. |
| destinationBucket | string | Name of the bucket to copy the object to. |
| destinationKey | string | Name of the destination object. |
Returns
| Type | Description |
|---|---|
Promise<void> | A Promise that fulfills when the object has been copied from one bucket to another. |
Example
JavaScript
JavaScript
import exec from 'k6/execution';
import {
AWSConfig,
S3Client,
} from 'https://jslib.k6.io/aws/0.14.0/s3.js';
const awsConfig = new AWSConfig({
region: __ENV.AWS_REGION,
accessKeyId: __ENV.AWS_ACCESS_KEY_ID,
secretAccessKey: __ENV.AWS_SECRET_ACCESS_KEY,
});
const testFile = open('./bonjour.txt', 'r');
const s3 = new S3Client(awsConfig);
const testBucketName = 'test-jslib-aws';
const testFileKey = 'bonjour.txt';
const testDestinationBucketName = 'test-jslib-aws-destination';
export default async function () {
// Let's upload our test file to the bucket
await s3.putObject(testBucketName, testFileKey, testFile);
// Let's create our destination bucket
await s3.copyObject(testBucketName, testFileKey, testDestinationBucketName, testFileKey);
}A k6 script that will copy an object from a source S3 bucket to a destination bucket
Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Performance testing and observability in Grafana Cloud
Optimize user experiences with Grafana Cloud. Learn real-time insights, performance testing with k6, and continuous validation with Synthetic Monitoring.
Events

User-centered observability: load testing, real user monitoring, and synthetics
Learn how to use load testing, synthetic monitoring, and real user monitoring (RUM) to understand end users' experience of your apps. Watch on demand.