v1

latestOpenAPI 3.0.02026-07-142351,1971.3 MB
AWS Integration

Create an Amazon EventBridge source

This endpoint is deprecated - use the V2 endpoints instead. Create an Amazon EventBridge source.

post/api/v1/integration/aws/event_bridge

Request body

account_idstring

Your AWS Account ID without dashes.

create_event_busboolean

True if Datadog should create the event bus in addition to the event source. Requires the events:CreateEventBus permission.

event_generator_namestring

The given part of the event source name, which is then combined with an assigned suffix to form the full name.

regionstring

The event source's AWS region.

Example request

{
  "account_id": "123456789012",
  "create_event_bus": true,
  "event_generator_name": "app-alerts",
  "region": "us-east-1"
}

Response

OK

event_source_namestring

The event source name.

has_busboolean

True if the event bus was created in addition to the source.

regionstring

The event source's AWS region.

status'created'

The event source status "created".

Example response

{
  "event_source_name": "app-alerts-zyxw3210",
  "has_bus": true,
  "region": "us-east-1",
  "status": "created"
}