- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
DescribeServiceIntegrationCommand
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.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { DevOpsGuruClient, DescribeServiceIntegrationCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
// const { DevOpsGuruClient, DescribeServiceIntegrationCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
const client = new DevOpsGuruClient(config);
const input = {};
const command = new DescribeServiceIntegrationCommand(input);
const response = await client.send(command);
// { // DescribeServiceIntegrationResponse
// ServiceIntegration: { // ServiceIntegrationConfig
// OpsCenter: { // OpsCenterIntegration
// OptInStatus: "ENABLED" || "DISABLED",
// },
// LogsAnomalyDetection: { // LogsAnomalyDetectionIntegration
// OptInStatus: "ENABLED" || "DISABLED",
// },
// KMSServerSideEncryption: { // KMSServerSideEncryptionIntegration
// KMSKeyId: "STRING_VALUE",
// OptInStatus: "ENABLED" || "DISABLED",
// Type: "CUSTOMER_MANAGED_KEY" || "AWS_OWNED_KMS_KEY",
// },
// },
// };
DescribeServiceIntegrationCommand Input
DescribeServiceIntegrationCommandInput extends DescribeServiceIntegrationRequest
DescribeServiceIntegrationCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
ServiceIntegration | ServiceIntegrationConfig | undefined | Information about the integration of DevOps Guru with another Amazon Web Services service, such as Amazon Web Services Systems Manager. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | You don't have permissions to perform the requested operation. The user or role that is making the request must have at least one IAM permissions policy attached that grants the required permissions. For more information, see Access Management in the IAM User Guide. |
InternalServerException | server | An internal failure in an Amazon service occurred. |
ResourceNotFoundException | client | A requested resource could not be found |
ThrottlingException | client | The request was denied due to a request throttling. |
ValidationException | client | Contains information about data passed in to a field during a request that is not valid. |
DevOpsGuruServiceException | Base exception class for all service exceptions from DevOpsGuru service. |