Menu
Choose a product
Viewing: v1.7.x (latest)
Find another version
Scroll for more
Open source
EventBridgeClient
EventBridgeClient interacts with the AWS EventBridge service.
With it, you can send custom events to Amazon EventBridge. These events can then be matched to rules defined in EventBridge. For a full list of supported operations, see Methods.
Both the dedicated event-bridge.js jslib bundle and the all-encompassing aws.js bundle include the EventBridgeClient.
Methods
| Function | Description |
|---|---|
| putEvents(input) | Send custom events to Amazon EventBridge. |
Throws
EventBridgeClient methods will throw errors in case of failure.
| Error | Condition |
|---|---|
| InvalidSignatureError | when invalid credentials were provided or the request signature is invalid. |
| EventBridgeServiceError | when AWS replied to the requested operation with an error. |
Examples
JavaScript
JavaScript
import {
AWSConfig,
EventBridgeClient,
} from 'https://jslib.k6.io/aws/0.14.0/event-bridge.js';
const awsConfig = new AWSConfig({
region: __ENV.AWS_REGION,
accessKeyId: __ENV.AWS_ACCESS_KEY_ID,
secretAccessKey: __ENV.AWS_SECRET_ACCESS_KEY,
sessionToken: __ENV.AWS_SESSION_TOKEN,
});
const eventBridge = new EventBridgeClient(awsConfig);
export default async function () {
const eventDetails = {
Source: 'my.custom.source',
Detail: { key1: 'value1', key2: 'value2' },
DetailType: 'MyDetailType',
Resources: ['arn:aws:resource1'],
};
const input = {
Entries: [eventDetails],
};
try {
await eventBridge.putEvents(input);
} catch (error) {
console.error(`Failed to put events: ${error.message}`);
}
}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.