event_sources_configs
Creates, updates, deletes, gets or lists an event_sources_configs resource.
Overview
| Name | event_sources_configs |
| Type | Resource |
| Id | aws.devops_guru.event_sources_configs |
Fields
The following fields are returned by SELECT queries:
- describe_event_sources_config
| Name | Datatype | Description |
|---|---|---|
amazon_code_guru_profiler | object | Information 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_event_sources_config | select | region | 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. | |
update_event_sources_config | update | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_event_sources_config
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
- update_event_sources_config
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;