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
Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-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 collapse
-
new AWS.SSMContacts(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
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.
.
-
createRotation(params = {}, callback) ⇒ AWS.Request
Creates a rotation in an on-call schedule.
.
-
createRotationOverride(params = {}, callback) ⇒ AWS.Request
Creates an override for a rotation in an on-call schedule.
.
-
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.
-
deleteRotation(params = {}, callback) ⇒ AWS.Request
Deletes a rotation from the system.
-
deleteRotationOverride(params = {}, callback) ⇒ AWS.Request
Deletes an existing override for an on-call rotation.
.
-
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.
.
-
getRotation(params = {}, callback) ⇒ AWS.Request
Retrieves information about an on-call rotation.
.
-
getRotationOverride(params = {}, callback) ⇒ AWS.Request
Retrieves information about an override to an on-call rotation.
.
-
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.
.
-
listPageResolutions(params = {}, callback) ⇒ AWS.Request
Returns the resolution path of an engagement.
-
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.
.
-
listPreviewRotationShifts(params = {}, callback) ⇒ AWS.Request
Returns a list of shifts based on rotation configuration parameters.
Note: The Incident Manager primarily uses this operation to populate the Preview calendar.- listRotationOverrides(params = {}, callback) ⇒ AWS.Request
Retrieves a list of overrides currently specified for an on-call rotation.
.
- listRotations(params = {}, callback) ⇒ AWS.Request
Retrieves a list of on-call rotations.
.
- listRotationShifts(params = {}, callback) ⇒ AWS.Request
Returns a list of shifts generated by an existing rotation in the system.
.
- listTagsForResource(params = {}, callback) ⇒ AWS.Request
Lists the tags of an escalation plan or contact.
.
- putContactPolicy(params = {}, callback) ⇒ AWS.Request
Adds a resource policy 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.
.
- updateRotation(params = {}, callback) ⇒ AWS.Request
Updates the information specified for an on-call rotation.
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.SSMContacts(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
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.
createRotationOverride(params = {}, callback) ⇒ AWS.Request
Creates an override for a rotation in an on-call schedule.
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.
deleteRotation(params = {}, callback) ⇒ AWS.Request
Deletes a rotation from the system. If a rotation belongs to more than one on-call schedule, this operation deletes it from all of them.
deleteRotationOverride(params = {}, callback) ⇒ AWS.Request
Deletes an existing override for an on-call rotation.
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.
- listRotationOverrides(params = {}, callback) ⇒ AWS.Request