I want to integrate cloudwatch with xmatters. I know I can use xmatters integration agent to integrate xmatters with other apps but how to access cloudwatch alarms. Is there any JAVA API which I can use to access cloudwatch alarms and then redirect it to xmatters.
Thanks
Yes, there have Java API for retrieve CloudWatch alarms and history. API Ref.
I guess you want the alert notify to XMatters when that happened. The CloudWatch alarms mechanism is base on SNS service. So, my redirect to outside web service approach step is:
The message pass path is CloudWatch alarm -> SNS -> Lambda -> outside service.
Good Luck!