Note: You are viewing the documentation for an older major version of the AWS SDK for JavaScript (v2).
The modular AWS SDK for JavaScript (v3) is now General Available. For more information see the Developer Guide or API Reference.
Class: AWS.SSMContacts
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.SSMContacts
- Identifier:
- ssmcontacts
- API Version:
- 2021-05-03
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
AWS Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their AWS-hosted applications. An incident is any unplanned interruption or reduction in quality of services.
Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation.
Sending a Request Using SSMContacts
var ssmcontacts = new AWS.SSMContacts();
ssmcontacts.acceptPage(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the SSMContacts object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var ssmcontacts = new AWS.SSMContacts({apiVersion: '2021-05-03'});
You can also set the API version globally in AWS.config.apiVersions
using
the ssmcontacts service identifier:
AWS.config.apiVersions = {
ssmcontacts: '2021-05-03',
// other service API versions
};
var ssmcontacts = new AWS.SSMContacts();
Constructor Summary
-
new AWS.SSMContacts(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary
-
acceptPage(params = {}, callback) ⇒ AWS.Request
Used to acknowledge an engagement to a contact channel during an incident.
-
activateContactChannel(params = {}, callback) ⇒ AWS.Request
Activates a contact's contact channel.
-
createContact(params = {}, callback) ⇒ AWS.Request
Contacts are either the contacts that Incident Manager engages during an incident or the escalation plans that Incident Manager uses to engage contacts in phases during an incident.
-
createContactChannel(params = {}, callback) ⇒ AWS.Request
A contact channel is the method that Incident Manager uses to engage your contact.
-
deactivateContactChannel(params = {}, callback) ⇒ AWS.Request
To no longer receive Incident Manager engagements to a contact channel, you can deactivate the channel.
-
deleteContact(params = {}, callback) ⇒ AWS.Request
To remove a contact from Incident Manager, you can delete the contact.
-
deleteContactChannel(params = {}, callback) ⇒ AWS.Request
To no longer receive engagements on a contact channel, you can delete the channel from a contact.
-
describeEngagement(params = {}, callback) ⇒ AWS.Request
Incident Manager uses engagements to engage contacts and escalation plans during an incident.
-
describePage(params = {}, callback) ⇒ AWS.Request
Lists details of the engagement to a contact channel.
-
getContact(params = {}, callback) ⇒ AWS.Request
Retrieves information about the specified contact or escalation plan.
-
getContactChannel(params = {}, callback) ⇒ AWS.Request
List details about a specific contact channel.
-
getContactPolicy(params = {}, callback) ⇒ AWS.Request
Retrieves the resource policies attached to the specified contact or escalation plan.
-
listContactChannels(params = {}, callback) ⇒ AWS.Request
Lists all contact channels for the specified contact.
-
listContacts(params = {}, callback) ⇒ AWS.Request
Lists all contacts and escalation plans in Incident Manager.
-
listEngagements(params = {}, callback) ⇒ AWS.Request
Lists all engagements that have happened in an incident.
-
listPageReceipts(params = {}, callback) ⇒ AWS.Request
Lists all of the engagements to contact channels that have been acknowledged.
-
listPagesByContact(params = {}, callback) ⇒ AWS.Request
Lists the engagements to a contact's contact channels.
-
listPagesByEngagement(params = {}, callback) ⇒ AWS.Request
Lists the engagements to contact channels that occurred by engaging a contact.
-
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Lists the tags of an escalation plan or contact.
-
putContactPolicy(params = {}, callback) ⇒ AWS.Request
Adds a resource to the specified contact or escalation plan.
-
sendActivationCode(params = {}, callback) ⇒ AWS.Request
Sends an activation code to a contact channel.
-
startEngagement(params = {}, callback) ⇒ AWS.Request
Starts an engagement to a contact or escalation plan.
-
stopEngagement(params = {}, callback) ⇒ AWS.Request
Stops an engagement before it finishes the final stage of the escalation plan or engagement plan.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Tags a contact or escalation plan.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Removes tags from the specified resource.
-
updateContact(params = {}, callback) ⇒ AWS.Request
Updates the contact or escalation plan specified.
-
updateContactChannel(params = {}, callback) ⇒ AWS.Request
Updates a contact's contact channel.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
Property Details
Method Details
acceptPage(params = {}, callback) ⇒ AWS.Request
Used to acknowledge an engagement to a contact channel during an incident.
activateContactChannel(params = {}, callback) ⇒ AWS.Request
Activates a contact's contact channel. Incident Manager can't engage a contact until the contact channel has been activated.
createContact(params = {}, callback) ⇒ AWS.Request
Contacts are either the contacts that Incident Manager engages during an incident or the escalation plans that Incident Manager uses to engage contacts in phases during an incident.
createContactChannel(params = {}, callback) ⇒ AWS.Request
A contact channel is the method that Incident Manager uses to engage your contact.
deactivateContactChannel(params = {}, callback) ⇒ AWS.Request
To no longer receive Incident Manager engagements to a contact channel, you can deactivate the channel.
deleteContact(params = {}, callback) ⇒ AWS.Request
To remove a contact from Incident Manager, you can delete the contact. Deleting a contact removes them from all escalation plans and related response plans. Deleting an escalation plan removes it from all related response plans. You will have to recreate the contact and its contact channels before you can use it again.
deleteContactChannel(params = {}, callback) ⇒ AWS.Request
To no longer receive engagements on a contact channel, you can delete the channel from a contact. Deleting the contact channel removes it from the contact's engagement plan. If you delete the only contact channel for a contact, you won't be able to engage that contact during an incident.
describeEngagement(params = {}, callback) ⇒ AWS.Request
Incident Manager uses engagements to engage contacts and escalation plans during an incident. Use this command to describe the engagement that occurred during an incident.
describePage(params = {}, callback) ⇒ AWS.Request
Lists details of the engagement to a contact channel.
getContact(params = {}, callback) ⇒ AWS.Request
Retrieves information about the specified contact or escalation plan.
getContactChannel(params = {}, callback) ⇒ AWS.Request
List details about a specific contact channel.
getContactPolicy(params = {}, callback) ⇒ AWS.Request
Retrieves the resource policies attached to the specified contact or escalation plan.
listContactChannels(params = {}, callback) ⇒ AWS.Request
Lists all contact channels for the specified contact.
listContacts(params = {}, callback) ⇒ AWS.Request
Lists all contacts and escalation plans in Incident Manager.
listEngagements(params = {}, callback) ⇒ AWS.Request
Lists all engagements that have happened in an incident.
listPageReceipts(params = {}, callback) ⇒ AWS.Request
Lists all of the engagements to contact channels that have been acknowledged.
listPagesByContact(params = {}, callback) ⇒ AWS.Request
Lists the engagements to a contact's contact channels.
listPagesByEngagement(params = {}, callback) ⇒ AWS.Request
Lists the engagements to contact channels that occurred by engaging a contact.
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Lists the tags of an escalation plan or contact.
putContactPolicy(params = {}, callback) ⇒ AWS.Request
Adds a resource to the specified contact or escalation plan.
sendActivationCode(params = {}, callback) ⇒ AWS.Request
Sends an activation code to a contact channel. The contact can use this code to activate the contact channel in the console or with the ActivateChannel
action. Incident Manager can't engage a contact channel until it has been activated.
startEngagement(params = {}, callback) ⇒ AWS.Request
Starts an engagement to a contact or escalation plan. The engagement engages each contact specified in the incident.
stopEngagement(params = {}, callback) ⇒ AWS.Request
Stops an engagement before it finishes the final stage of the escalation plan or engagement plan. Further contacts aren't engaged.
tagResource(params = {}, callback) ⇒ AWS.Request
Tags a contact or escalation plan. You can tag only contacts and escalation plans in the first region of your replication set.