@aws-sdk/client-ssm-contacts 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/SSMContacts.js +43 -546
- package/dist-cjs/protocols/Aws_json1_1.js +363 -1234
- package/dist-es/SSMContacts.js +43 -546
- package/dist-es/protocols/Aws_json1_1.js +364 -1235
- package/dist-types/SSMContacts.d.ts +53 -117
- package/dist-types/ts3.4/SSMContacts.d.ts +4 -1
- package/package.json +6 -6
|
@@ -39,316 +39,252 @@ import { UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput } f
|
|
|
39
39
|
import { UpdateContactCommandInput, UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
40
40
|
import { UpdateRotationCommandInput, UpdateRotationCommandOutput } from "./commands/UpdateRotationCommand";
|
|
41
41
|
import { SSMContactsClient } from "./SSMContactsClient";
|
|
42
|
-
|
|
43
|
-
* @public
|
|
44
|
-
* <p>Systems Manager Incident Manager is an incident management console designed to help users
|
|
45
|
-
* mitigate and recover from incidents affecting their Amazon Web Services-hosted applications.
|
|
46
|
-
* An incident is any unplanned interruption or reduction in quality of services.</p>
|
|
47
|
-
* <p>Incident Manager increases incident resolution by notifying responders of
|
|
48
|
-
* impact, highlighting relevant troubleshooting data, and providing collaboration tools to
|
|
49
|
-
* get services back up and running. To achieve the primary goal of reducing the
|
|
50
|
-
* time-to-resolution of critical incidents, Incident Manager automates response plans
|
|
51
|
-
* and enables responder team escalation.</p>
|
|
52
|
-
*/
|
|
53
|
-
export declare class SSMContacts extends SSMContactsClient {
|
|
42
|
+
export interface SSMContacts {
|
|
54
43
|
/**
|
|
55
|
-
* @
|
|
56
|
-
* <p>Used to acknowledge an engagement to a contact channel during an incident.</p>
|
|
44
|
+
* @see {@link AcceptPageCommand}
|
|
57
45
|
*/
|
|
58
46
|
acceptPage(args: AcceptPageCommandInput, options?: __HttpHandlerOptions): Promise<AcceptPageCommandOutput>;
|
|
59
47
|
acceptPage(args: AcceptPageCommandInput, cb: (err: any, data?: AcceptPageCommandOutput) => void): void;
|
|
60
48
|
acceptPage(args: AcceptPageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptPageCommandOutput) => void): void;
|
|
61
49
|
/**
|
|
62
|
-
* @
|
|
63
|
-
* <p>Activates a contact's contact channel. Incident Manager can't engage a contact until the
|
|
64
|
-
* contact channel has been activated.</p>
|
|
50
|
+
* @see {@link ActivateContactChannelCommand}
|
|
65
51
|
*/
|
|
66
52
|
activateContactChannel(args: ActivateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<ActivateContactChannelCommandOutput>;
|
|
67
53
|
activateContactChannel(args: ActivateContactChannelCommandInput, cb: (err: any, data?: ActivateContactChannelCommandOutput) => void): void;
|
|
68
54
|
activateContactChannel(args: ActivateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ActivateContactChannelCommandOutput) => void): void;
|
|
69
55
|
/**
|
|
70
|
-
* @
|
|
71
|
-
* <p>Contacts are either the contacts that Incident Manager engages during an incident or the
|
|
72
|
-
* escalation plans that Incident Manager uses to engage contacts in phases during an
|
|
73
|
-
* incident.</p>
|
|
56
|
+
* @see {@link CreateContactCommand}
|
|
74
57
|
*/
|
|
75
58
|
createContact(args: CreateContactCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactCommandOutput>;
|
|
76
59
|
createContact(args: CreateContactCommandInput, cb: (err: any, data?: CreateContactCommandOutput) => void): void;
|
|
77
60
|
createContact(args: CreateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactCommandOutput) => void): void;
|
|
78
61
|
/**
|
|
79
|
-
* @
|
|
80
|
-
* <p>A contact channel is the method that Incident Manager uses to engage your contact.</p>
|
|
62
|
+
* @see {@link CreateContactChannelCommand}
|
|
81
63
|
*/
|
|
82
64
|
createContactChannel(args: CreateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactChannelCommandOutput>;
|
|
83
65
|
createContactChannel(args: CreateContactChannelCommandInput, cb: (err: any, data?: CreateContactChannelCommandOutput) => void): void;
|
|
84
66
|
createContactChannel(args: CreateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactChannelCommandOutput) => void): void;
|
|
85
67
|
/**
|
|
86
|
-
* @
|
|
87
|
-
* <p>Creates a rotation in an on-call schedule.</p>
|
|
68
|
+
* @see {@link CreateRotationCommand}
|
|
88
69
|
*/
|
|
89
70
|
createRotation(args: CreateRotationCommandInput, options?: __HttpHandlerOptions): Promise<CreateRotationCommandOutput>;
|
|
90
71
|
createRotation(args: CreateRotationCommandInput, cb: (err: any, data?: CreateRotationCommandOutput) => void): void;
|
|
91
72
|
createRotation(args: CreateRotationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRotationCommandOutput) => void): void;
|
|
92
73
|
/**
|
|
93
|
-
* @
|
|
94
|
-
* <p>Creates an override for a rotation in an on-call schedule.</p>
|
|
74
|
+
* @see {@link CreateRotationOverrideCommand}
|
|
95
75
|
*/
|
|
96
76
|
createRotationOverride(args: CreateRotationOverrideCommandInput, options?: __HttpHandlerOptions): Promise<CreateRotationOverrideCommandOutput>;
|
|
97
77
|
createRotationOverride(args: CreateRotationOverrideCommandInput, cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void): void;
|
|
98
78
|
createRotationOverride(args: CreateRotationOverrideCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void): void;
|
|
99
79
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>To no longer receive Incident Manager engagements to a contact channel, you can deactivate
|
|
102
|
-
* the channel.</p>
|
|
80
|
+
* @see {@link DeactivateContactChannelCommand}
|
|
103
81
|
*/
|
|
104
82
|
deactivateContactChannel(args: DeactivateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeactivateContactChannelCommandOutput>;
|
|
105
83
|
deactivateContactChannel(args: DeactivateContactChannelCommandInput, cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void): void;
|
|
106
84
|
deactivateContactChannel(args: DeactivateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void): void;
|
|
107
85
|
/**
|
|
108
|
-
* @
|
|
109
|
-
* <p>To remove a contact from Incident Manager, you can delete the contact. Deleting a contact
|
|
110
|
-
* removes them from all escalation plans and related response plans. Deleting an escalation
|
|
111
|
-
* plan removes it from all related response plans. You will have to recreate the contact and
|
|
112
|
-
* its contact channels before you can use it again.</p>
|
|
86
|
+
* @see {@link DeleteContactCommand}
|
|
113
87
|
*/
|
|
114
88
|
deleteContact(args: DeleteContactCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactCommandOutput>;
|
|
115
89
|
deleteContact(args: DeleteContactCommandInput, cb: (err: any, data?: DeleteContactCommandOutput) => void): void;
|
|
116
90
|
deleteContact(args: DeleteContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactCommandOutput) => void): void;
|
|
117
91
|
/**
|
|
118
|
-
* @
|
|
119
|
-
* <p>To no longer receive engagements on a contact channel, you can delete the channel from a
|
|
120
|
-
* contact. Deleting the contact channel removes it from the contact's engagement plan. If you
|
|
121
|
-
* delete the only contact channel for a contact, you won't be able to engage that contact
|
|
122
|
-
* during an incident.</p>
|
|
92
|
+
* @see {@link DeleteContactChannelCommand}
|
|
123
93
|
*/
|
|
124
94
|
deleteContactChannel(args: DeleteContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactChannelCommandOutput>;
|
|
125
95
|
deleteContactChannel(args: DeleteContactChannelCommandInput, cb: (err: any, data?: DeleteContactChannelCommandOutput) => void): void;
|
|
126
96
|
deleteContactChannel(args: DeleteContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactChannelCommandOutput) => void): void;
|
|
127
97
|
/**
|
|
128
|
-
* @
|
|
129
|
-
* <p>Deletes a rotation from the system. If a rotation belongs to more than one on-call
|
|
130
|
-
* schedule, this operation deletes it from all of them.</p>
|
|
98
|
+
* @see {@link DeleteRotationCommand}
|
|
131
99
|
*/
|
|
132
100
|
deleteRotation(args: DeleteRotationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRotationCommandOutput>;
|
|
133
101
|
deleteRotation(args: DeleteRotationCommandInput, cb: (err: any, data?: DeleteRotationCommandOutput) => void): void;
|
|
134
102
|
deleteRotation(args: DeleteRotationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRotationCommandOutput) => void): void;
|
|
135
103
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* <p>Deletes an existing override for an on-call rotation.</p>
|
|
104
|
+
* @see {@link DeleteRotationOverrideCommand}
|
|
138
105
|
*/
|
|
139
106
|
deleteRotationOverride(args: DeleteRotationOverrideCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRotationOverrideCommandOutput>;
|
|
140
107
|
deleteRotationOverride(args: DeleteRotationOverrideCommandInput, cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void): void;
|
|
141
108
|
deleteRotationOverride(args: DeleteRotationOverrideCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void): void;
|
|
142
109
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* <p>Incident Manager uses engagements to engage contacts and escalation plans during an incident.
|
|
145
|
-
* Use this command to describe the engagement that occurred during an incident.</p>
|
|
110
|
+
* @see {@link DescribeEngagementCommand}
|
|
146
111
|
*/
|
|
147
112
|
describeEngagement(args: DescribeEngagementCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEngagementCommandOutput>;
|
|
148
113
|
describeEngagement(args: DescribeEngagementCommandInput, cb: (err: any, data?: DescribeEngagementCommandOutput) => void): void;
|
|
149
114
|
describeEngagement(args: DescribeEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEngagementCommandOutput) => void): void;
|
|
150
115
|
/**
|
|
151
|
-
* @
|
|
152
|
-
* <p>Lists details of the engagement to a contact channel.</p>
|
|
116
|
+
* @see {@link DescribePageCommand}
|
|
153
117
|
*/
|
|
154
118
|
describePage(args: DescribePageCommandInput, options?: __HttpHandlerOptions): Promise<DescribePageCommandOutput>;
|
|
155
119
|
describePage(args: DescribePageCommandInput, cb: (err: any, data?: DescribePageCommandOutput) => void): void;
|
|
156
120
|
describePage(args: DescribePageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePageCommandOutput) => void): void;
|
|
157
121
|
/**
|
|
158
|
-
* @
|
|
159
|
-
* <p>Retrieves information about the specified contact or escalation plan.</p>
|
|
122
|
+
* @see {@link GetContactCommand}
|
|
160
123
|
*/
|
|
161
124
|
getContact(args: GetContactCommandInput, options?: __HttpHandlerOptions): Promise<GetContactCommandOutput>;
|
|
162
125
|
getContact(args: GetContactCommandInput, cb: (err: any, data?: GetContactCommandOutput) => void): void;
|
|
163
126
|
getContact(args: GetContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactCommandOutput) => void): void;
|
|
164
127
|
/**
|
|
165
|
-
* @
|
|
166
|
-
* <p>List details about a specific contact channel.</p>
|
|
128
|
+
* @see {@link GetContactChannelCommand}
|
|
167
129
|
*/
|
|
168
130
|
getContactChannel(args: GetContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<GetContactChannelCommandOutput>;
|
|
169
131
|
getContactChannel(args: GetContactChannelCommandInput, cb: (err: any, data?: GetContactChannelCommandOutput) => void): void;
|
|
170
132
|
getContactChannel(args: GetContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactChannelCommandOutput) => void): void;
|
|
171
133
|
/**
|
|
172
|
-
* @
|
|
173
|
-
* <p>Retrieves the resource policies attached to the specified contact or escalation
|
|
174
|
-
* plan.</p>
|
|
134
|
+
* @see {@link GetContactPolicyCommand}
|
|
175
135
|
*/
|
|
176
136
|
getContactPolicy(args: GetContactPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetContactPolicyCommandOutput>;
|
|
177
137
|
getContactPolicy(args: GetContactPolicyCommandInput, cb: (err: any, data?: GetContactPolicyCommandOutput) => void): void;
|
|
178
138
|
getContactPolicy(args: GetContactPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactPolicyCommandOutput) => void): void;
|
|
179
139
|
/**
|
|
180
|
-
* @
|
|
181
|
-
* <p>Retrieves information about an on-call rotation.</p>
|
|
140
|
+
* @see {@link GetRotationCommand}
|
|
182
141
|
*/
|
|
183
142
|
getRotation(args: GetRotationCommandInput, options?: __HttpHandlerOptions): Promise<GetRotationCommandOutput>;
|
|
184
143
|
getRotation(args: GetRotationCommandInput, cb: (err: any, data?: GetRotationCommandOutput) => void): void;
|
|
185
144
|
getRotation(args: GetRotationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRotationCommandOutput) => void): void;
|
|
186
145
|
/**
|
|
187
|
-
* @
|
|
188
|
-
* <p>Retrieves information about an override to an on-call rotation.</p>
|
|
146
|
+
* @see {@link GetRotationOverrideCommand}
|
|
189
147
|
*/
|
|
190
148
|
getRotationOverride(args: GetRotationOverrideCommandInput, options?: __HttpHandlerOptions): Promise<GetRotationOverrideCommandOutput>;
|
|
191
149
|
getRotationOverride(args: GetRotationOverrideCommandInput, cb: (err: any, data?: GetRotationOverrideCommandOutput) => void): void;
|
|
192
150
|
getRotationOverride(args: GetRotationOverrideCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRotationOverrideCommandOutput) => void): void;
|
|
193
151
|
/**
|
|
194
|
-
* @
|
|
195
|
-
* <p>Lists all contact channels for the specified contact.</p>
|
|
152
|
+
* @see {@link ListContactChannelsCommand}
|
|
196
153
|
*/
|
|
197
154
|
listContactChannels(args: ListContactChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactChannelsCommandOutput>;
|
|
198
155
|
listContactChannels(args: ListContactChannelsCommandInput, cb: (err: any, data?: ListContactChannelsCommandOutput) => void): void;
|
|
199
156
|
listContactChannels(args: ListContactChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactChannelsCommandOutput) => void): void;
|
|
200
157
|
/**
|
|
201
|
-
* @
|
|
202
|
-
* <p>Lists all contacts and escalation plans in Incident Manager.</p>
|
|
158
|
+
* @see {@link ListContactsCommand}
|
|
203
159
|
*/
|
|
204
160
|
listContacts(args: ListContactsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactsCommandOutput>;
|
|
205
161
|
listContacts(args: ListContactsCommandInput, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
206
162
|
listContacts(args: ListContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
207
163
|
/**
|
|
208
|
-
* @
|
|
209
|
-
* <p>Lists all engagements that have happened in an incident.</p>
|
|
164
|
+
* @see {@link ListEngagementsCommand}
|
|
210
165
|
*/
|
|
211
166
|
listEngagements(args: ListEngagementsCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementsCommandOutput>;
|
|
212
167
|
listEngagements(args: ListEngagementsCommandInput, cb: (err: any, data?: ListEngagementsCommandOutput) => void): void;
|
|
213
168
|
listEngagements(args: ListEngagementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementsCommandOutput) => void): void;
|
|
214
169
|
/**
|
|
215
|
-
* @
|
|
216
|
-
* <p>Lists all of the engagements to contact channels that have been acknowledged.</p>
|
|
170
|
+
* @see {@link ListPageReceiptsCommand}
|
|
217
171
|
*/
|
|
218
172
|
listPageReceipts(args: ListPageReceiptsCommandInput, options?: __HttpHandlerOptions): Promise<ListPageReceiptsCommandOutput>;
|
|
219
173
|
listPageReceipts(args: ListPageReceiptsCommandInput, cb: (err: any, data?: ListPageReceiptsCommandOutput) => void): void;
|
|
220
174
|
listPageReceipts(args: ListPageReceiptsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPageReceiptsCommandOutput) => void): void;
|
|
221
175
|
/**
|
|
222
|
-
* @
|
|
223
|
-
* <p>Returns the resolution path of an engagement. For example, the escalation plan engaged
|
|
224
|
-
* in an incident might target an on-call schedule that includes several contacts in a
|
|
225
|
-
* rotation, but just one contact on-call when the incident starts. The resolution path
|
|
226
|
-
* indicates the hierarchy of <i>escalation plan > on-call schedule >
|
|
227
|
-
* contact</i>.</p>
|
|
176
|
+
* @see {@link ListPageResolutionsCommand}
|
|
228
177
|
*/
|
|
229
178
|
listPageResolutions(args: ListPageResolutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListPageResolutionsCommandOutput>;
|
|
230
179
|
listPageResolutions(args: ListPageResolutionsCommandInput, cb: (err: any, data?: ListPageResolutionsCommandOutput) => void): void;
|
|
231
180
|
listPageResolutions(args: ListPageResolutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPageResolutionsCommandOutput) => void): void;
|
|
232
181
|
/**
|
|
233
|
-
* @
|
|
234
|
-
* <p>Lists the engagements to a contact's contact channels.</p>
|
|
182
|
+
* @see {@link ListPagesByContactCommand}
|
|
235
183
|
*/
|
|
236
184
|
listPagesByContact(args: ListPagesByContactCommandInput, options?: __HttpHandlerOptions): Promise<ListPagesByContactCommandOutput>;
|
|
237
185
|
listPagesByContact(args: ListPagesByContactCommandInput, cb: (err: any, data?: ListPagesByContactCommandOutput) => void): void;
|
|
238
186
|
listPagesByContact(args: ListPagesByContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPagesByContactCommandOutput) => void): void;
|
|
239
187
|
/**
|
|
240
|
-
* @
|
|
241
|
-
* <p>Lists the engagements to contact channels that occurred by engaging a contact.</p>
|
|
188
|
+
* @see {@link ListPagesByEngagementCommand}
|
|
242
189
|
*/
|
|
243
190
|
listPagesByEngagement(args: ListPagesByEngagementCommandInput, options?: __HttpHandlerOptions): Promise<ListPagesByEngagementCommandOutput>;
|
|
244
191
|
listPagesByEngagement(args: ListPagesByEngagementCommandInput, cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void): void;
|
|
245
192
|
listPagesByEngagement(args: ListPagesByEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void): void;
|
|
246
193
|
/**
|
|
247
|
-
* @
|
|
248
|
-
* <p>Returns a list of shifts based on rotation configuration parameters.</p>
|
|
249
|
-
* <note>
|
|
250
|
-
* <p>The Incident Manager primarily uses this operation to populate the <b>Preview</b> calendar. It is not typically run by end users.</p>
|
|
251
|
-
* </note>
|
|
194
|
+
* @see {@link ListPreviewRotationShiftsCommand}
|
|
252
195
|
*/
|
|
253
196
|
listPreviewRotationShifts(args: ListPreviewRotationShiftsCommandInput, options?: __HttpHandlerOptions): Promise<ListPreviewRotationShiftsCommandOutput>;
|
|
254
197
|
listPreviewRotationShifts(args: ListPreviewRotationShiftsCommandInput, cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void): void;
|
|
255
198
|
listPreviewRotationShifts(args: ListPreviewRotationShiftsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void): void;
|
|
256
199
|
/**
|
|
257
|
-
* @
|
|
258
|
-
* <p>Retrieves a list of overrides currently specified for an on-call rotation.</p>
|
|
200
|
+
* @see {@link ListRotationOverridesCommand}
|
|
259
201
|
*/
|
|
260
202
|
listRotationOverrides(args: ListRotationOverridesCommandInput, options?: __HttpHandlerOptions): Promise<ListRotationOverridesCommandOutput>;
|
|
261
203
|
listRotationOverrides(args: ListRotationOverridesCommandInput, cb: (err: any, data?: ListRotationOverridesCommandOutput) => void): void;
|
|
262
204
|
listRotationOverrides(args: ListRotationOverridesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRotationOverridesCommandOutput) => void): void;
|
|
263
205
|
/**
|
|
264
|
-
* @
|
|
265
|
-
* <p>Retrieves a list of on-call rotations.</p>
|
|
206
|
+
* @see {@link ListRotationsCommand}
|
|
266
207
|
*/
|
|
267
208
|
listRotations(args: ListRotationsCommandInput, options?: __HttpHandlerOptions): Promise<ListRotationsCommandOutput>;
|
|
268
209
|
listRotations(args: ListRotationsCommandInput, cb: (err: any, data?: ListRotationsCommandOutput) => void): void;
|
|
269
210
|
listRotations(args: ListRotationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRotationsCommandOutput) => void): void;
|
|
270
211
|
/**
|
|
271
|
-
* @
|
|
272
|
-
* <p>Returns a list of shifts generated by an existing rotation in the system.</p>
|
|
212
|
+
* @see {@link ListRotationShiftsCommand}
|
|
273
213
|
*/
|
|
274
214
|
listRotationShifts(args: ListRotationShiftsCommandInput, options?: __HttpHandlerOptions): Promise<ListRotationShiftsCommandOutput>;
|
|
275
215
|
listRotationShifts(args: ListRotationShiftsCommandInput, cb: (err: any, data?: ListRotationShiftsCommandOutput) => void): void;
|
|
276
216
|
listRotationShifts(args: ListRotationShiftsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRotationShiftsCommandOutput) => void): void;
|
|
277
217
|
/**
|
|
278
|
-
* @
|
|
279
|
-
* <p>Lists the tags of an escalation plan or contact.</p>
|
|
218
|
+
* @see {@link ListTagsForResourceCommand}
|
|
280
219
|
*/
|
|
281
220
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
282
221
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
283
222
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
284
223
|
/**
|
|
285
|
-
* @
|
|
286
|
-
* <p>Adds a resource policy to the specified contact or escalation plan. The resource policy
|
|
287
|
-
* is used to share the contact or escalation plan using Resource Access Manager (RAM). For more information about cross-account sharing, see <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/xa.html">Setting up
|
|
288
|
-
* cross-account functionality</a>.</p>
|
|
224
|
+
* @see {@link PutContactPolicyCommand}
|
|
289
225
|
*/
|
|
290
226
|
putContactPolicy(args: PutContactPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutContactPolicyCommandOutput>;
|
|
291
227
|
putContactPolicy(args: PutContactPolicyCommandInput, cb: (err: any, data?: PutContactPolicyCommandOutput) => void): void;
|
|
292
228
|
putContactPolicy(args: PutContactPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutContactPolicyCommandOutput) => void): void;
|
|
293
229
|
/**
|
|
294
|
-
* @
|
|
295
|
-
* <p>Sends an activation code to a contact channel. The contact can use this code to activate
|
|
296
|
-
* the contact channel in the console or with the <code>ActivateChannel</code> operation.
|
|
297
|
-
* Incident Manager can't engage a contact channel until it has been activated.</p>
|
|
230
|
+
* @see {@link SendActivationCodeCommand}
|
|
298
231
|
*/
|
|
299
232
|
sendActivationCode(args: SendActivationCodeCommandInput, options?: __HttpHandlerOptions): Promise<SendActivationCodeCommandOutput>;
|
|
300
233
|
sendActivationCode(args: SendActivationCodeCommandInput, cb: (err: any, data?: SendActivationCodeCommandOutput) => void): void;
|
|
301
234
|
sendActivationCode(args: SendActivationCodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendActivationCodeCommandOutput) => void): void;
|
|
302
235
|
/**
|
|
303
|
-
* @
|
|
304
|
-
* <p>Starts an engagement to a contact or escalation plan. The engagement engages each
|
|
305
|
-
* contact specified in the incident.</p>
|
|
236
|
+
* @see {@link StartEngagementCommand}
|
|
306
237
|
*/
|
|
307
238
|
startEngagement(args: StartEngagementCommandInput, options?: __HttpHandlerOptions): Promise<StartEngagementCommandOutput>;
|
|
308
239
|
startEngagement(args: StartEngagementCommandInput, cb: (err: any, data?: StartEngagementCommandOutput) => void): void;
|
|
309
240
|
startEngagement(args: StartEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEngagementCommandOutput) => void): void;
|
|
310
241
|
/**
|
|
311
|
-
* @
|
|
312
|
-
* <p>Stops an engagement before it finishes the final stage of the escalation plan or
|
|
313
|
-
* engagement plan. Further contacts aren't engaged.</p>
|
|
242
|
+
* @see {@link StopEngagementCommand}
|
|
314
243
|
*/
|
|
315
244
|
stopEngagement(args: StopEngagementCommandInput, options?: __HttpHandlerOptions): Promise<StopEngagementCommandOutput>;
|
|
316
245
|
stopEngagement(args: StopEngagementCommandInput, cb: (err: any, data?: StopEngagementCommandOutput) => void): void;
|
|
317
246
|
stopEngagement(args: StopEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEngagementCommandOutput) => void): void;
|
|
318
247
|
/**
|
|
319
|
-
* @
|
|
320
|
-
* <p>Tags a contact or escalation plan. You can tag only contacts and escalation plans in the
|
|
321
|
-
* first region of your replication set.</p>
|
|
248
|
+
* @see {@link TagResourceCommand}
|
|
322
249
|
*/
|
|
323
250
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
324
251
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
325
252
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
326
253
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <p>Removes tags from the specified resource.</p>
|
|
254
|
+
* @see {@link UntagResourceCommand}
|
|
329
255
|
*/
|
|
330
256
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
331
257
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
332
258
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
333
259
|
/**
|
|
334
|
-
* @
|
|
335
|
-
* <p>Updates the contact or escalation plan specified.</p>
|
|
260
|
+
* @see {@link UpdateContactCommand}
|
|
336
261
|
*/
|
|
337
262
|
updateContact(args: UpdateContactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactCommandOutput>;
|
|
338
263
|
updateContact(args: UpdateContactCommandInput, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
339
264
|
updateContact(args: UpdateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
340
265
|
/**
|
|
341
|
-
* @
|
|
342
|
-
* <p>Updates a contact's contact channel.</p>
|
|
266
|
+
* @see {@link UpdateContactChannelCommand}
|
|
343
267
|
*/
|
|
344
268
|
updateContactChannel(args: UpdateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactChannelCommandOutput>;
|
|
345
269
|
updateContactChannel(args: UpdateContactChannelCommandInput, cb: (err: any, data?: UpdateContactChannelCommandOutput) => void): void;
|
|
346
270
|
updateContactChannel(args: UpdateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactChannelCommandOutput) => void): void;
|
|
347
271
|
/**
|
|
348
|
-
* @
|
|
349
|
-
* <p>Updates the information specified for an on-call rotation.</p>
|
|
272
|
+
* @see {@link UpdateRotationCommand}
|
|
350
273
|
*/
|
|
351
274
|
updateRotation(args: UpdateRotationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRotationCommandOutput>;
|
|
352
275
|
updateRotation(args: UpdateRotationCommandInput, cb: (err: any, data?: UpdateRotationCommandOutput) => void): void;
|
|
353
276
|
updateRotation(args: UpdateRotationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRotationCommandOutput) => void): void;
|
|
354
277
|
}
|
|
278
|
+
/**
|
|
279
|
+
* @public
|
|
280
|
+
* <p>Systems Manager Incident Manager is an incident management console designed to help users
|
|
281
|
+
* mitigate and recover from incidents affecting their Amazon Web Services-hosted applications.
|
|
282
|
+
* An incident is any unplanned interruption or reduction in quality of services.</p>
|
|
283
|
+
* <p>Incident Manager increases incident resolution by notifying responders of
|
|
284
|
+
* impact, highlighting relevant troubleshooting data, and providing collaboration tools to
|
|
285
|
+
* get services back up and running. To achieve the primary goal of reducing the
|
|
286
|
+
* time-to-resolution of critical incidents, Incident Manager automates response plans
|
|
287
|
+
* and enables responder team escalation.</p>
|
|
288
|
+
*/
|
|
289
|
+
export declare class SSMContacts extends SSMContactsClient implements SSMContacts {
|
|
290
|
+
}
|
|
@@ -156,7 +156,7 @@ import {
|
|
|
156
156
|
UpdateRotationCommandOutput,
|
|
157
157
|
} from "./commands/UpdateRotationCommand";
|
|
158
158
|
import { SSMContactsClient } from "./SSMContactsClient";
|
|
159
|
-
export
|
|
159
|
+
export interface SSMContacts {
|
|
160
160
|
acceptPage(
|
|
161
161
|
args: AcceptPageCommandInput,
|
|
162
162
|
options?: __HttpHandlerOptions
|
|
@@ -665,3 +665,6 @@ export declare class SSMContacts extends SSMContactsClient {
|
|
|
665
665
|
cb: (err: any, data?: UpdateRotationCommandOutput) => void
|
|
666
666
|
): void;
|
|
667
667
|
}
|
|
668
|
+
export declare class SSMContacts
|
|
669
|
+
extends SSMContactsClient
|
|
670
|
+
implements SSMContacts {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-contacts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Contacts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|