Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/k6/latest/javascript-api/jslib/aws/s3client/copyobject.md, or by sending Accept: text/markdown to https://grafana.com/docs/k6/latest/javascript-api/jslib/aws/s3client/copyobject/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
Menu
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
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.
Choose a product
Viewing: v2.0.x (latest)
Find another version
Scroll for more