Skip to main content

event_sources_configs

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

Overview

Nameevent_sources_configs
TypeResource
Idaws.devops_guru.event_sources_configs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
amazon_code_guru_profilerobjectInformation about whether DevOps Guru is configured to consume recommendations which are generated from AWS CodeGuru Profiler.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_event_sources_configselectregionReturns the integration status of services that are integrated with DevOps Guru as Consumer via EventBridge. The one service that can be integrated with DevOps Guru is Amazon CodeGuru Profiler, which can produce proactive recommendations which can be stored and viewed in DevOps Guru.
update_event_sources_configupdateregionEnables or disables integration with a service that can be integrated with DevOps Guru. The one service that can be integrated with DevOps Guru is Amazon CodeGuru Profiler, which can produce proactive recommendations which can be stored and viewed in DevOps Guru.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the integration status of services that are integrated with DevOps Guru as Consumer via EventBridge. The one service that can be integrated with DevOps Guru is Amazon CodeGuru Profiler, which can produce proactive recommendations which can be stored and viewed in DevOps Guru.

SELECT
amazon_code_guru_profiler
FROM aws.devops_guru.event_sources_configs
WHERE region = '{{ region }}' -- required
;

UPDATE examples

Enables or disables integration with a service that can be integrated with DevOps Guru. The one service that can be integrated with DevOps Guru is Amazon CodeGuru Profiler, which can produce proactive recommendations which can be stored and viewed in DevOps Guru.

UPDATE aws.devops_guru.event_sources_configs
SET
EventSources = '{{ EventSources }}'
WHERE
region = '{{ region }}' --required;