Menu
Choose a product
Viewing: v0.48.x
Find another version
Scroll for more
Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
Open source
putEvents
EventBridgeClient.putEvents sends custom events to Amazon EventBridge so that they can be matched to rules.
Parameters
| Parameter | Type | Description |
|---|---|---|
| input | PutEventsInput | An array of objects representing events to be submitted. |
PutEventsInput
| Parameter | Type | Description |
|---|---|---|
| Entries | EventBridgeEntry[] | An array of objects representing events to be submitted. |
| EndpointId | string (optional) | The ID of the target to receive the event. |
EventBridgeEntry
| Parameter | Type | Description |
|---|---|---|
| Source | string | The source of the event. |
| Detail | object | A JSON object containing event data. |
| DetailType | string | Free-form string used to decide what fields to expect in the event detail. |
| Resources | string[] (optional) | AWS resources, identified by Amazon Resource Name (ARN), which the event primarily concerns. |
| EventBusName | string (optional) | The event bus that will receive the event. If you omit this, the default event bus is used. Only the AWS account that owns a bus can write to it. |
Returns
| Type | Description |
|---|---|
Promise<void> | A Promise that fulfills when the events have been sent to Amazon EventBridge. |
Example
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);
const eventEntry = {
Source: 'my.source',
Detail: {
key: 'value',
},
DetailType: 'MyDetailType',
Resources: ['resource-arn'],
};
export default async function () {
await eventBridge.putEvents({
Entries: [eventEntry],
});
}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.