service_integrations
Creates, updates, deletes, gets or lists a service_integrations resource.
Overview
| Name | service_integrations |
| Type | Resource |
| Id | aws.devops_guru.service_integrations |
Fields
The following fields are returned by SELECT queries:
- describe_service_integration
| Name | Datatype | Description |
|---|---|---|
kms_server_side_encryption | object | Information about whether DevOps Guru is configured to encrypt server-side data using KMS. |
logs_anomaly_detection | object | Information about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups. |
ops_center | object | Information about whether DevOps Guru is configured to create an OpsItem in Amazon Web Services Systems Manager OpsCenter for each created insight. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_service_integration | select | region | Returns the integration status of services that are integrated with DevOps Guru. The one service that can be integrated with DevOps Guru is Amazon Web Services Systems Manager, which can be used to create an OpsItem for each generated insight. | |
update_service_integration | update | region, ServiceIntegration | 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 Web Services Systems Manager, which can be used to create an OpsItem for each generated insight. |
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_service_integration
Returns the integration status of services that are integrated with DevOps Guru. The one service that can be integrated with DevOps Guru is Amazon Web Services Systems Manager, which can be used to create an OpsItem for each generated insight.
SELECT
kms_server_side_encryption,
logs_anomaly_detection,
ops_center
FROM aws.devops_guru.service_integrations
WHERE region = '{{ region }}' -- required
;
UPDATE examples
- update_service_integration
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 Web Services Systems Manager, which can be used to create an OpsItem for each generated insight.
UPDATE aws.devops_guru.service_integrations
SET
ServiceIntegration = '{{ ServiceIntegration }}'
WHERE
region = '{{ region }}' --required
AND ServiceIntegration = '{{ ServiceIntegration }}' --required;