Skip to main content

service_integrations

Creates, updates, deletes, gets or lists a service_integrations resource.

Overview

Nameservice_integrations
TypeResource
Idaws.devops_guru.service_integrations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
kms_server_side_encryptionobjectInformation about whether DevOps Guru is configured to encrypt server-side data using KMS.
logs_anomaly_detectionobjectInformation about whether DevOps Guru is configured to perform log anomaly detection on Amazon CloudWatch log groups.
ops_centerobjectInformation 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_service_integrationselectregionReturns 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_integrationupdateregion, ServiceIntegrationEnables 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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

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;