Skip to main content

aws_event_bridges

Creates, updates, deletes, gets or lists an aws_event_bridges resource.

Overview

Nameaws_event_bridges
TypeResource
Iddatadog.integrations.aws_event_bridges

Fields

The following fields are returned by SELECT queries:

Amazon EventBridge sources list.

NameDatatypeDescription
idstringThe ID of the Amazon EventBridge list response data. (default: get_event_bridge, example: get_event_bridge)
attributesobjectAn object describing the EventBridge configuration for multiple accounts.
typestringAmazon EventBridge resource type. (event_bridge) (default: event_bridge, example: event_bridge)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_awsevent_bridge_sourcesselectGet all Amazon EventBridge sources.
create_awsevent_bridge_sourceinsertdataCreate an Amazon EventBridge source.
delete_awsevent_bridge_sourcedeleteDelete an Amazon EventBridge source.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.

SELECT examples

Get all Amazon EventBridge sources.

SELECT
id,
attributes,
type
FROM datadog.integrations.aws_event_bridges
;

INSERT examples

Create an Amazon EventBridge source.

INSERT INTO datadog.integrations.aws_event_bridges (
data
)
SELECT
'{{ data }}' /* required */
RETURNING
data
;

DELETE examples

Delete an Amazon EventBridge source.

DELETE FROM datadog.integrations.aws_event_bridges
;