@aws-sdk/client-ssm-contacts 3.1087.0 → 3.1089.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/index.js +1 -1
- package/dist-types/ts3.4/SSMContacts.d.ts +133 -147
- package/dist-types/ts3.4/SSMContactsClient.d.ts +9 -30
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AcceptPageCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ActivateContactChannelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateContactChannelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateRotationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateRotationOverrideCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeactivateContactChannelCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteContactChannelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteContactCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteRotationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteRotationOverrideCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeEngagementCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribePageCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetContactChannelCommand.d.ts +5 -11
- package/dist-types/ts3.4/commands/GetContactCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetContactPolicyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetRotationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetRotationOverrideCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListContactChannelsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListPageReceiptsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPageResolutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPagesByContactCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPagesByEngagementCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPreviewRotationShiftsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRotationOverridesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListRotationShiftsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListRotationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutContactPolicyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SendActivationCodeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartEngagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StopEngagementCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateContactChannelCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateRotationCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +7 -21
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -3,10 +3,7 @@ import {
|
|
|
3
3
|
PaginationConfiguration,
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
AcceptPageCommandInput,
|
|
8
|
-
AcceptPageCommandOutput,
|
|
9
|
-
} from "./commands/AcceptPageCommand";
|
|
6
|
+
import { AcceptPageCommandInput, AcceptPageCommandOutput } from "./commands/AcceptPageCommand";
|
|
10
7
|
import {
|
|
11
8
|
ActivateContactChannelCommandInput,
|
|
12
9
|
ActivateContactChannelCommandOutput,
|
|
@@ -59,18 +56,12 @@ import {
|
|
|
59
56
|
GetContactChannelCommandInput,
|
|
60
57
|
GetContactChannelCommandOutput,
|
|
61
58
|
} from "./commands/GetContactChannelCommand";
|
|
62
|
-
import {
|
|
63
|
-
GetContactCommandInput,
|
|
64
|
-
GetContactCommandOutput,
|
|
65
|
-
} from "./commands/GetContactCommand";
|
|
59
|
+
import { GetContactCommandInput, GetContactCommandOutput } from "./commands/GetContactCommand";
|
|
66
60
|
import {
|
|
67
61
|
GetContactPolicyCommandInput,
|
|
68
62
|
GetContactPolicyCommandOutput,
|
|
69
63
|
} from "./commands/GetContactPolicyCommand";
|
|
70
|
-
import {
|
|
71
|
-
GetRotationCommandInput,
|
|
72
|
-
GetRotationCommandOutput,
|
|
73
|
-
} from "./commands/GetRotationCommand";
|
|
64
|
+
import { GetRotationCommandInput, GetRotationCommandOutput } from "./commands/GetRotationCommand";
|
|
74
65
|
import {
|
|
75
66
|
GetRotationOverrideCommandInput,
|
|
76
67
|
GetRotationOverrideCommandOutput,
|
|
@@ -139,10 +130,7 @@ import {
|
|
|
139
130
|
StopEngagementCommandInput,
|
|
140
131
|
StopEngagementCommandOutput,
|
|
141
132
|
} from "./commands/StopEngagementCommand";
|
|
142
|
-
import {
|
|
143
|
-
TagResourceCommandInput,
|
|
144
|
-
TagResourceCommandOutput,
|
|
145
|
-
} from "./commands/TagResourceCommand";
|
|
133
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
146
134
|
import {
|
|
147
135
|
UntagResourceCommandInput,
|
|
148
136
|
UntagResourceCommandOutput,
|
|
@@ -163,592 +151,590 @@ import { SSMContactsClient } from "./SSMContactsClient";
|
|
|
163
151
|
export interface SSMContacts {
|
|
164
152
|
acceptPage(
|
|
165
153
|
args: AcceptPageCommandInput,
|
|
166
|
-
options?: __HttpHandlerOptions
|
|
154
|
+
options?: __HttpHandlerOptions,
|
|
167
155
|
): Promise<AcceptPageCommandOutput>;
|
|
168
156
|
acceptPage(
|
|
169
157
|
args: AcceptPageCommandInput,
|
|
170
|
-
cb: (err: any, data?: AcceptPageCommandOutput) => void
|
|
158
|
+
cb: (err: any, data?: AcceptPageCommandOutput) => void,
|
|
171
159
|
): void;
|
|
172
160
|
acceptPage(
|
|
173
161
|
args: AcceptPageCommandInput,
|
|
174
162
|
options: __HttpHandlerOptions,
|
|
175
|
-
cb: (err: any, data?: AcceptPageCommandOutput) => void
|
|
163
|
+
cb: (err: any, data?: AcceptPageCommandOutput) => void,
|
|
176
164
|
): void;
|
|
177
165
|
activateContactChannel(
|
|
178
166
|
args: ActivateContactChannelCommandInput,
|
|
179
|
-
options?: __HttpHandlerOptions
|
|
167
|
+
options?: __HttpHandlerOptions,
|
|
180
168
|
): Promise<ActivateContactChannelCommandOutput>;
|
|
181
169
|
activateContactChannel(
|
|
182
170
|
args: ActivateContactChannelCommandInput,
|
|
183
|
-
cb: (err: any, data?: ActivateContactChannelCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: ActivateContactChannelCommandOutput) => void,
|
|
184
172
|
): void;
|
|
185
173
|
activateContactChannel(
|
|
186
174
|
args: ActivateContactChannelCommandInput,
|
|
187
175
|
options: __HttpHandlerOptions,
|
|
188
|
-
cb: (err: any, data?: ActivateContactChannelCommandOutput) => void
|
|
176
|
+
cb: (err: any, data?: ActivateContactChannelCommandOutput) => void,
|
|
189
177
|
): void;
|
|
190
178
|
createContact(
|
|
191
179
|
args: CreateContactCommandInput,
|
|
192
|
-
options?: __HttpHandlerOptions
|
|
180
|
+
options?: __HttpHandlerOptions,
|
|
193
181
|
): Promise<CreateContactCommandOutput>;
|
|
194
182
|
createContact(
|
|
195
183
|
args: CreateContactCommandInput,
|
|
196
|
-
cb: (err: any, data?: CreateContactCommandOutput) => void
|
|
184
|
+
cb: (err: any, data?: CreateContactCommandOutput) => void,
|
|
197
185
|
): void;
|
|
198
186
|
createContact(
|
|
199
187
|
args: CreateContactCommandInput,
|
|
200
188
|
options: __HttpHandlerOptions,
|
|
201
|
-
cb: (err: any, data?: CreateContactCommandOutput) => void
|
|
189
|
+
cb: (err: any, data?: CreateContactCommandOutput) => void,
|
|
202
190
|
): void;
|
|
203
191
|
createContactChannel(
|
|
204
192
|
args: CreateContactChannelCommandInput,
|
|
205
|
-
options?: __HttpHandlerOptions
|
|
193
|
+
options?: __HttpHandlerOptions,
|
|
206
194
|
): Promise<CreateContactChannelCommandOutput>;
|
|
207
195
|
createContactChannel(
|
|
208
196
|
args: CreateContactChannelCommandInput,
|
|
209
|
-
cb: (err: any, data?: CreateContactChannelCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: CreateContactChannelCommandOutput) => void,
|
|
210
198
|
): void;
|
|
211
199
|
createContactChannel(
|
|
212
200
|
args: CreateContactChannelCommandInput,
|
|
213
201
|
options: __HttpHandlerOptions,
|
|
214
|
-
cb: (err: any, data?: CreateContactChannelCommandOutput) => void
|
|
202
|
+
cb: (err: any, data?: CreateContactChannelCommandOutput) => void,
|
|
215
203
|
): void;
|
|
216
204
|
createRotation(
|
|
217
205
|
args: CreateRotationCommandInput,
|
|
218
|
-
options?: __HttpHandlerOptions
|
|
206
|
+
options?: __HttpHandlerOptions,
|
|
219
207
|
): Promise<CreateRotationCommandOutput>;
|
|
220
208
|
createRotation(
|
|
221
209
|
args: CreateRotationCommandInput,
|
|
222
|
-
cb: (err: any, data?: CreateRotationCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: CreateRotationCommandOutput) => void,
|
|
223
211
|
): void;
|
|
224
212
|
createRotation(
|
|
225
213
|
args: CreateRotationCommandInput,
|
|
226
214
|
options: __HttpHandlerOptions,
|
|
227
|
-
cb: (err: any, data?: CreateRotationCommandOutput) => void
|
|
215
|
+
cb: (err: any, data?: CreateRotationCommandOutput) => void,
|
|
228
216
|
): void;
|
|
229
217
|
createRotationOverride(
|
|
230
218
|
args: CreateRotationOverrideCommandInput,
|
|
231
|
-
options?: __HttpHandlerOptions
|
|
219
|
+
options?: __HttpHandlerOptions,
|
|
232
220
|
): Promise<CreateRotationOverrideCommandOutput>;
|
|
233
221
|
createRotationOverride(
|
|
234
222
|
args: CreateRotationOverrideCommandInput,
|
|
235
|
-
cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void,
|
|
236
224
|
): void;
|
|
237
225
|
createRotationOverride(
|
|
238
226
|
args: CreateRotationOverrideCommandInput,
|
|
239
227
|
options: __HttpHandlerOptions,
|
|
240
|
-
cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: CreateRotationOverrideCommandOutput) => void,
|
|
241
229
|
): void;
|
|
242
230
|
deactivateContactChannel(
|
|
243
231
|
args: DeactivateContactChannelCommandInput,
|
|
244
|
-
options?: __HttpHandlerOptions
|
|
232
|
+
options?: __HttpHandlerOptions,
|
|
245
233
|
): Promise<DeactivateContactChannelCommandOutput>;
|
|
246
234
|
deactivateContactChannel(
|
|
247
235
|
args: DeactivateContactChannelCommandInput,
|
|
248
|
-
cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void
|
|
236
|
+
cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void,
|
|
249
237
|
): void;
|
|
250
238
|
deactivateContactChannel(
|
|
251
239
|
args: DeactivateContactChannelCommandInput,
|
|
252
240
|
options: __HttpHandlerOptions,
|
|
253
|
-
cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void
|
|
241
|
+
cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void,
|
|
254
242
|
): void;
|
|
255
243
|
deleteContact(
|
|
256
244
|
args: DeleteContactCommandInput,
|
|
257
|
-
options?: __HttpHandlerOptions
|
|
245
|
+
options?: __HttpHandlerOptions,
|
|
258
246
|
): Promise<DeleteContactCommandOutput>;
|
|
259
247
|
deleteContact(
|
|
260
248
|
args: DeleteContactCommandInput,
|
|
261
|
-
cb: (err: any, data?: DeleteContactCommandOutput) => void
|
|
249
|
+
cb: (err: any, data?: DeleteContactCommandOutput) => void,
|
|
262
250
|
): void;
|
|
263
251
|
deleteContact(
|
|
264
252
|
args: DeleteContactCommandInput,
|
|
265
253
|
options: __HttpHandlerOptions,
|
|
266
|
-
cb: (err: any, data?: DeleteContactCommandOutput) => void
|
|
254
|
+
cb: (err: any, data?: DeleteContactCommandOutput) => void,
|
|
267
255
|
): void;
|
|
268
256
|
deleteContactChannel(
|
|
269
257
|
args: DeleteContactChannelCommandInput,
|
|
270
|
-
options?: __HttpHandlerOptions
|
|
258
|
+
options?: __HttpHandlerOptions,
|
|
271
259
|
): Promise<DeleteContactChannelCommandOutput>;
|
|
272
260
|
deleteContactChannel(
|
|
273
261
|
args: DeleteContactChannelCommandInput,
|
|
274
|
-
cb: (err: any, data?: DeleteContactChannelCommandOutput) => void
|
|
262
|
+
cb: (err: any, data?: DeleteContactChannelCommandOutput) => void,
|
|
275
263
|
): void;
|
|
276
264
|
deleteContactChannel(
|
|
277
265
|
args: DeleteContactChannelCommandInput,
|
|
278
266
|
options: __HttpHandlerOptions,
|
|
279
|
-
cb: (err: any, data?: DeleteContactChannelCommandOutput) => void
|
|
267
|
+
cb: (err: any, data?: DeleteContactChannelCommandOutput) => void,
|
|
280
268
|
): void;
|
|
281
269
|
deleteRotation(
|
|
282
270
|
args: DeleteRotationCommandInput,
|
|
283
|
-
options?: __HttpHandlerOptions
|
|
271
|
+
options?: __HttpHandlerOptions,
|
|
284
272
|
): Promise<DeleteRotationCommandOutput>;
|
|
285
273
|
deleteRotation(
|
|
286
274
|
args: DeleteRotationCommandInput,
|
|
287
|
-
cb: (err: any, data?: DeleteRotationCommandOutput) => void
|
|
275
|
+
cb: (err: any, data?: DeleteRotationCommandOutput) => void,
|
|
288
276
|
): void;
|
|
289
277
|
deleteRotation(
|
|
290
278
|
args: DeleteRotationCommandInput,
|
|
291
279
|
options: __HttpHandlerOptions,
|
|
292
|
-
cb: (err: any, data?: DeleteRotationCommandOutput) => void
|
|
280
|
+
cb: (err: any, data?: DeleteRotationCommandOutput) => void,
|
|
293
281
|
): void;
|
|
294
282
|
deleteRotationOverride(
|
|
295
283
|
args: DeleteRotationOverrideCommandInput,
|
|
296
|
-
options?: __HttpHandlerOptions
|
|
284
|
+
options?: __HttpHandlerOptions,
|
|
297
285
|
): Promise<DeleteRotationOverrideCommandOutput>;
|
|
298
286
|
deleteRotationOverride(
|
|
299
287
|
args: DeleteRotationOverrideCommandInput,
|
|
300
|
-
cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void
|
|
288
|
+
cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void,
|
|
301
289
|
): void;
|
|
302
290
|
deleteRotationOverride(
|
|
303
291
|
args: DeleteRotationOverrideCommandInput,
|
|
304
292
|
options: __HttpHandlerOptions,
|
|
305
|
-
cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void
|
|
293
|
+
cb: (err: any, data?: DeleteRotationOverrideCommandOutput) => void,
|
|
306
294
|
): void;
|
|
307
295
|
describeEngagement(
|
|
308
296
|
args: DescribeEngagementCommandInput,
|
|
309
|
-
options?: __HttpHandlerOptions
|
|
297
|
+
options?: __HttpHandlerOptions,
|
|
310
298
|
): Promise<DescribeEngagementCommandOutput>;
|
|
311
299
|
describeEngagement(
|
|
312
300
|
args: DescribeEngagementCommandInput,
|
|
313
|
-
cb: (err: any, data?: DescribeEngagementCommandOutput) => void
|
|
301
|
+
cb: (err: any, data?: DescribeEngagementCommandOutput) => void,
|
|
314
302
|
): void;
|
|
315
303
|
describeEngagement(
|
|
316
304
|
args: DescribeEngagementCommandInput,
|
|
317
305
|
options: __HttpHandlerOptions,
|
|
318
|
-
cb: (err: any, data?: DescribeEngagementCommandOutput) => void
|
|
306
|
+
cb: (err: any, data?: DescribeEngagementCommandOutput) => void,
|
|
319
307
|
): void;
|
|
320
308
|
describePage(
|
|
321
309
|
args: DescribePageCommandInput,
|
|
322
|
-
options?: __HttpHandlerOptions
|
|
310
|
+
options?: __HttpHandlerOptions,
|
|
323
311
|
): Promise<DescribePageCommandOutput>;
|
|
324
312
|
describePage(
|
|
325
313
|
args: DescribePageCommandInput,
|
|
326
|
-
cb: (err: any, data?: DescribePageCommandOutput) => void
|
|
314
|
+
cb: (err: any, data?: DescribePageCommandOutput) => void,
|
|
327
315
|
): void;
|
|
328
316
|
describePage(
|
|
329
317
|
args: DescribePageCommandInput,
|
|
330
318
|
options: __HttpHandlerOptions,
|
|
331
|
-
cb: (err: any, data?: DescribePageCommandOutput) => void
|
|
319
|
+
cb: (err: any, data?: DescribePageCommandOutput) => void,
|
|
332
320
|
): void;
|
|
333
321
|
getContact(
|
|
334
322
|
args: GetContactCommandInput,
|
|
335
|
-
options?: __HttpHandlerOptions
|
|
323
|
+
options?: __HttpHandlerOptions,
|
|
336
324
|
): Promise<GetContactCommandOutput>;
|
|
337
325
|
getContact(
|
|
338
326
|
args: GetContactCommandInput,
|
|
339
|
-
cb: (err: any, data?: GetContactCommandOutput) => void
|
|
327
|
+
cb: (err: any, data?: GetContactCommandOutput) => void,
|
|
340
328
|
): void;
|
|
341
329
|
getContact(
|
|
342
330
|
args: GetContactCommandInput,
|
|
343
331
|
options: __HttpHandlerOptions,
|
|
344
|
-
cb: (err: any, data?: GetContactCommandOutput) => void
|
|
332
|
+
cb: (err: any, data?: GetContactCommandOutput) => void,
|
|
345
333
|
): void;
|
|
346
334
|
getContactChannel(
|
|
347
335
|
args: GetContactChannelCommandInput,
|
|
348
|
-
options?: __HttpHandlerOptions
|
|
336
|
+
options?: __HttpHandlerOptions,
|
|
349
337
|
): Promise<GetContactChannelCommandOutput>;
|
|
350
338
|
getContactChannel(
|
|
351
339
|
args: GetContactChannelCommandInput,
|
|
352
|
-
cb: (err: any, data?: GetContactChannelCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: GetContactChannelCommandOutput) => void,
|
|
353
341
|
): void;
|
|
354
342
|
getContactChannel(
|
|
355
343
|
args: GetContactChannelCommandInput,
|
|
356
344
|
options: __HttpHandlerOptions,
|
|
357
|
-
cb: (err: any, data?: GetContactChannelCommandOutput) => void
|
|
345
|
+
cb: (err: any, data?: GetContactChannelCommandOutput) => void,
|
|
358
346
|
): void;
|
|
359
347
|
getContactPolicy(
|
|
360
348
|
args: GetContactPolicyCommandInput,
|
|
361
|
-
options?: __HttpHandlerOptions
|
|
349
|
+
options?: __HttpHandlerOptions,
|
|
362
350
|
): Promise<GetContactPolicyCommandOutput>;
|
|
363
351
|
getContactPolicy(
|
|
364
352
|
args: GetContactPolicyCommandInput,
|
|
365
|
-
cb: (err: any, data?: GetContactPolicyCommandOutput) => void
|
|
353
|
+
cb: (err: any, data?: GetContactPolicyCommandOutput) => void,
|
|
366
354
|
): void;
|
|
367
355
|
getContactPolicy(
|
|
368
356
|
args: GetContactPolicyCommandInput,
|
|
369
357
|
options: __HttpHandlerOptions,
|
|
370
|
-
cb: (err: any, data?: GetContactPolicyCommandOutput) => void
|
|
358
|
+
cb: (err: any, data?: GetContactPolicyCommandOutput) => void,
|
|
371
359
|
): void;
|
|
372
360
|
getRotation(
|
|
373
361
|
args: GetRotationCommandInput,
|
|
374
|
-
options?: __HttpHandlerOptions
|
|
362
|
+
options?: __HttpHandlerOptions,
|
|
375
363
|
): Promise<GetRotationCommandOutput>;
|
|
376
364
|
getRotation(
|
|
377
365
|
args: GetRotationCommandInput,
|
|
378
|
-
cb: (err: any, data?: GetRotationCommandOutput) => void
|
|
366
|
+
cb: (err: any, data?: GetRotationCommandOutput) => void,
|
|
379
367
|
): void;
|
|
380
368
|
getRotation(
|
|
381
369
|
args: GetRotationCommandInput,
|
|
382
370
|
options: __HttpHandlerOptions,
|
|
383
|
-
cb: (err: any, data?: GetRotationCommandOutput) => void
|
|
371
|
+
cb: (err: any, data?: GetRotationCommandOutput) => void,
|
|
384
372
|
): void;
|
|
385
373
|
getRotationOverride(
|
|
386
374
|
args: GetRotationOverrideCommandInput,
|
|
387
|
-
options?: __HttpHandlerOptions
|
|
375
|
+
options?: __HttpHandlerOptions,
|
|
388
376
|
): Promise<GetRotationOverrideCommandOutput>;
|
|
389
377
|
getRotationOverride(
|
|
390
378
|
args: GetRotationOverrideCommandInput,
|
|
391
|
-
cb: (err: any, data?: GetRotationOverrideCommandOutput) => void
|
|
379
|
+
cb: (err: any, data?: GetRotationOverrideCommandOutput) => void,
|
|
392
380
|
): void;
|
|
393
381
|
getRotationOverride(
|
|
394
382
|
args: GetRotationOverrideCommandInput,
|
|
395
383
|
options: __HttpHandlerOptions,
|
|
396
|
-
cb: (err: any, data?: GetRotationOverrideCommandOutput) => void
|
|
384
|
+
cb: (err: any, data?: GetRotationOverrideCommandOutput) => void,
|
|
397
385
|
): void;
|
|
398
386
|
listContactChannels(
|
|
399
387
|
args: ListContactChannelsCommandInput,
|
|
400
|
-
options?: __HttpHandlerOptions
|
|
388
|
+
options?: __HttpHandlerOptions,
|
|
401
389
|
): Promise<ListContactChannelsCommandOutput>;
|
|
402
390
|
listContactChannels(
|
|
403
391
|
args: ListContactChannelsCommandInput,
|
|
404
|
-
cb: (err: any, data?: ListContactChannelsCommandOutput) => void
|
|
392
|
+
cb: (err: any, data?: ListContactChannelsCommandOutput) => void,
|
|
405
393
|
): void;
|
|
406
394
|
listContactChannels(
|
|
407
395
|
args: ListContactChannelsCommandInput,
|
|
408
396
|
options: __HttpHandlerOptions,
|
|
409
|
-
cb: (err: any, data?: ListContactChannelsCommandOutput) => void
|
|
397
|
+
cb: (err: any, data?: ListContactChannelsCommandOutput) => void,
|
|
410
398
|
): void;
|
|
411
399
|
listContacts(): Promise<ListContactsCommandOutput>;
|
|
412
400
|
listContacts(
|
|
413
401
|
args: ListContactsCommandInput,
|
|
414
|
-
options?: __HttpHandlerOptions
|
|
402
|
+
options?: __HttpHandlerOptions,
|
|
415
403
|
): Promise<ListContactsCommandOutput>;
|
|
416
404
|
listContacts(
|
|
417
405
|
args: ListContactsCommandInput,
|
|
418
|
-
cb: (err: any, data?: ListContactsCommandOutput) => void
|
|
406
|
+
cb: (err: any, data?: ListContactsCommandOutput) => void,
|
|
419
407
|
): void;
|
|
420
408
|
listContacts(
|
|
421
409
|
args: ListContactsCommandInput,
|
|
422
410
|
options: __HttpHandlerOptions,
|
|
423
|
-
cb: (err: any, data?: ListContactsCommandOutput) => void
|
|
411
|
+
cb: (err: any, data?: ListContactsCommandOutput) => void,
|
|
424
412
|
): void;
|
|
425
413
|
listEngagements(): Promise<ListEngagementsCommandOutput>;
|
|
426
414
|
listEngagements(
|
|
427
415
|
args: ListEngagementsCommandInput,
|
|
428
|
-
options?: __HttpHandlerOptions
|
|
416
|
+
options?: __HttpHandlerOptions,
|
|
429
417
|
): Promise<ListEngagementsCommandOutput>;
|
|
430
418
|
listEngagements(
|
|
431
419
|
args: ListEngagementsCommandInput,
|
|
432
|
-
cb: (err: any, data?: ListEngagementsCommandOutput) => void
|
|
420
|
+
cb: (err: any, data?: ListEngagementsCommandOutput) => void,
|
|
433
421
|
): void;
|
|
434
422
|
listEngagements(
|
|
435
423
|
args: ListEngagementsCommandInput,
|
|
436
424
|
options: __HttpHandlerOptions,
|
|
437
|
-
cb: (err: any, data?: ListEngagementsCommandOutput) => void
|
|
425
|
+
cb: (err: any, data?: ListEngagementsCommandOutput) => void,
|
|
438
426
|
): void;
|
|
439
427
|
listPageReceipts(
|
|
440
428
|
args: ListPageReceiptsCommandInput,
|
|
441
|
-
options?: __HttpHandlerOptions
|
|
429
|
+
options?: __HttpHandlerOptions,
|
|
442
430
|
): Promise<ListPageReceiptsCommandOutput>;
|
|
443
431
|
listPageReceipts(
|
|
444
432
|
args: ListPageReceiptsCommandInput,
|
|
445
|
-
cb: (err: any, data?: ListPageReceiptsCommandOutput) => void
|
|
433
|
+
cb: (err: any, data?: ListPageReceiptsCommandOutput) => void,
|
|
446
434
|
): void;
|
|
447
435
|
listPageReceipts(
|
|
448
436
|
args: ListPageReceiptsCommandInput,
|
|
449
437
|
options: __HttpHandlerOptions,
|
|
450
|
-
cb: (err: any, data?: ListPageReceiptsCommandOutput) => void
|
|
438
|
+
cb: (err: any, data?: ListPageReceiptsCommandOutput) => void,
|
|
451
439
|
): void;
|
|
452
440
|
listPageResolutions(
|
|
453
441
|
args: ListPageResolutionsCommandInput,
|
|
454
|
-
options?: __HttpHandlerOptions
|
|
442
|
+
options?: __HttpHandlerOptions,
|
|
455
443
|
): Promise<ListPageResolutionsCommandOutput>;
|
|
456
444
|
listPageResolutions(
|
|
457
445
|
args: ListPageResolutionsCommandInput,
|
|
458
|
-
cb: (err: any, data?: ListPageResolutionsCommandOutput) => void
|
|
446
|
+
cb: (err: any, data?: ListPageResolutionsCommandOutput) => void,
|
|
459
447
|
): void;
|
|
460
448
|
listPageResolutions(
|
|
461
449
|
args: ListPageResolutionsCommandInput,
|
|
462
450
|
options: __HttpHandlerOptions,
|
|
463
|
-
cb: (err: any, data?: ListPageResolutionsCommandOutput) => void
|
|
451
|
+
cb: (err: any, data?: ListPageResolutionsCommandOutput) => void,
|
|
464
452
|
): void;
|
|
465
453
|
listPagesByContact(
|
|
466
454
|
args: ListPagesByContactCommandInput,
|
|
467
|
-
options?: __HttpHandlerOptions
|
|
455
|
+
options?: __HttpHandlerOptions,
|
|
468
456
|
): Promise<ListPagesByContactCommandOutput>;
|
|
469
457
|
listPagesByContact(
|
|
470
458
|
args: ListPagesByContactCommandInput,
|
|
471
|
-
cb: (err: any, data?: ListPagesByContactCommandOutput) => void
|
|
459
|
+
cb: (err: any, data?: ListPagesByContactCommandOutput) => void,
|
|
472
460
|
): void;
|
|
473
461
|
listPagesByContact(
|
|
474
462
|
args: ListPagesByContactCommandInput,
|
|
475
463
|
options: __HttpHandlerOptions,
|
|
476
|
-
cb: (err: any, data?: ListPagesByContactCommandOutput) => void
|
|
464
|
+
cb: (err: any, data?: ListPagesByContactCommandOutput) => void,
|
|
477
465
|
): void;
|
|
478
466
|
listPagesByEngagement(
|
|
479
467
|
args: ListPagesByEngagementCommandInput,
|
|
480
|
-
options?: __HttpHandlerOptions
|
|
468
|
+
options?: __HttpHandlerOptions,
|
|
481
469
|
): Promise<ListPagesByEngagementCommandOutput>;
|
|
482
470
|
listPagesByEngagement(
|
|
483
471
|
args: ListPagesByEngagementCommandInput,
|
|
484
|
-
cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void
|
|
472
|
+
cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void,
|
|
485
473
|
): void;
|
|
486
474
|
listPagesByEngagement(
|
|
487
475
|
args: ListPagesByEngagementCommandInput,
|
|
488
476
|
options: __HttpHandlerOptions,
|
|
489
|
-
cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void
|
|
477
|
+
cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void,
|
|
490
478
|
): void;
|
|
491
479
|
listPreviewRotationShifts(
|
|
492
480
|
args: ListPreviewRotationShiftsCommandInput,
|
|
493
|
-
options?: __HttpHandlerOptions
|
|
481
|
+
options?: __HttpHandlerOptions,
|
|
494
482
|
): Promise<ListPreviewRotationShiftsCommandOutput>;
|
|
495
483
|
listPreviewRotationShifts(
|
|
496
484
|
args: ListPreviewRotationShiftsCommandInput,
|
|
497
|
-
cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void
|
|
485
|
+
cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void,
|
|
498
486
|
): void;
|
|
499
487
|
listPreviewRotationShifts(
|
|
500
488
|
args: ListPreviewRotationShiftsCommandInput,
|
|
501
489
|
options: __HttpHandlerOptions,
|
|
502
|
-
cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void
|
|
490
|
+
cb: (err: any, data?: ListPreviewRotationShiftsCommandOutput) => void,
|
|
503
491
|
): void;
|
|
504
492
|
listRotationOverrides(
|
|
505
493
|
args: ListRotationOverridesCommandInput,
|
|
506
|
-
options?: __HttpHandlerOptions
|
|
494
|
+
options?: __HttpHandlerOptions,
|
|
507
495
|
): Promise<ListRotationOverridesCommandOutput>;
|
|
508
496
|
listRotationOverrides(
|
|
509
497
|
args: ListRotationOverridesCommandInput,
|
|
510
|
-
cb: (err: any, data?: ListRotationOverridesCommandOutput) => void
|
|
498
|
+
cb: (err: any, data?: ListRotationOverridesCommandOutput) => void,
|
|
511
499
|
): void;
|
|
512
500
|
listRotationOverrides(
|
|
513
501
|
args: ListRotationOverridesCommandInput,
|
|
514
502
|
options: __HttpHandlerOptions,
|
|
515
|
-
cb: (err: any, data?: ListRotationOverridesCommandOutput) => void
|
|
503
|
+
cb: (err: any, data?: ListRotationOverridesCommandOutput) => void,
|
|
516
504
|
): void;
|
|
517
505
|
listRotations(): Promise<ListRotationsCommandOutput>;
|
|
518
506
|
listRotations(
|
|
519
507
|
args: ListRotationsCommandInput,
|
|
520
|
-
options?: __HttpHandlerOptions
|
|
508
|
+
options?: __HttpHandlerOptions,
|
|
521
509
|
): Promise<ListRotationsCommandOutput>;
|
|
522
510
|
listRotations(
|
|
523
511
|
args: ListRotationsCommandInput,
|
|
524
|
-
cb: (err: any, data?: ListRotationsCommandOutput) => void
|
|
512
|
+
cb: (err: any, data?: ListRotationsCommandOutput) => void,
|
|
525
513
|
): void;
|
|
526
514
|
listRotations(
|
|
527
515
|
args: ListRotationsCommandInput,
|
|
528
516
|
options: __HttpHandlerOptions,
|
|
529
|
-
cb: (err: any, data?: ListRotationsCommandOutput) => void
|
|
517
|
+
cb: (err: any, data?: ListRotationsCommandOutput) => void,
|
|
530
518
|
): void;
|
|
531
519
|
listRotationShifts(
|
|
532
520
|
args: ListRotationShiftsCommandInput,
|
|
533
|
-
options?: __HttpHandlerOptions
|
|
521
|
+
options?: __HttpHandlerOptions,
|
|
534
522
|
): Promise<ListRotationShiftsCommandOutput>;
|
|
535
523
|
listRotationShifts(
|
|
536
524
|
args: ListRotationShiftsCommandInput,
|
|
537
|
-
cb: (err: any, data?: ListRotationShiftsCommandOutput) => void
|
|
525
|
+
cb: (err: any, data?: ListRotationShiftsCommandOutput) => void,
|
|
538
526
|
): void;
|
|
539
527
|
listRotationShifts(
|
|
540
528
|
args: ListRotationShiftsCommandInput,
|
|
541
529
|
options: __HttpHandlerOptions,
|
|
542
|
-
cb: (err: any, data?: ListRotationShiftsCommandOutput) => void
|
|
530
|
+
cb: (err: any, data?: ListRotationShiftsCommandOutput) => void,
|
|
543
531
|
): void;
|
|
544
532
|
listTagsForResource(
|
|
545
533
|
args: ListTagsForResourceCommandInput,
|
|
546
|
-
options?: __HttpHandlerOptions
|
|
534
|
+
options?: __HttpHandlerOptions,
|
|
547
535
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
548
536
|
listTagsForResource(
|
|
549
537
|
args: ListTagsForResourceCommandInput,
|
|
550
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
538
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
551
539
|
): void;
|
|
552
540
|
listTagsForResource(
|
|
553
541
|
args: ListTagsForResourceCommandInput,
|
|
554
542
|
options: __HttpHandlerOptions,
|
|
555
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
543
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
556
544
|
): void;
|
|
557
545
|
putContactPolicy(
|
|
558
546
|
args: PutContactPolicyCommandInput,
|
|
559
|
-
options?: __HttpHandlerOptions
|
|
547
|
+
options?: __HttpHandlerOptions,
|
|
560
548
|
): Promise<PutContactPolicyCommandOutput>;
|
|
561
549
|
putContactPolicy(
|
|
562
550
|
args: PutContactPolicyCommandInput,
|
|
563
|
-
cb: (err: any, data?: PutContactPolicyCommandOutput) => void
|
|
551
|
+
cb: (err: any, data?: PutContactPolicyCommandOutput) => void,
|
|
564
552
|
): void;
|
|
565
553
|
putContactPolicy(
|
|
566
554
|
args: PutContactPolicyCommandInput,
|
|
567
555
|
options: __HttpHandlerOptions,
|
|
568
|
-
cb: (err: any, data?: PutContactPolicyCommandOutput) => void
|
|
556
|
+
cb: (err: any, data?: PutContactPolicyCommandOutput) => void,
|
|
569
557
|
): void;
|
|
570
558
|
sendActivationCode(
|
|
571
559
|
args: SendActivationCodeCommandInput,
|
|
572
|
-
options?: __HttpHandlerOptions
|
|
560
|
+
options?: __HttpHandlerOptions,
|
|
573
561
|
): Promise<SendActivationCodeCommandOutput>;
|
|
574
562
|
sendActivationCode(
|
|
575
563
|
args: SendActivationCodeCommandInput,
|
|
576
|
-
cb: (err: any, data?: SendActivationCodeCommandOutput) => void
|
|
564
|
+
cb: (err: any, data?: SendActivationCodeCommandOutput) => void,
|
|
577
565
|
): void;
|
|
578
566
|
sendActivationCode(
|
|
579
567
|
args: SendActivationCodeCommandInput,
|
|
580
568
|
options: __HttpHandlerOptions,
|
|
581
|
-
cb: (err: any, data?: SendActivationCodeCommandOutput) => void
|
|
569
|
+
cb: (err: any, data?: SendActivationCodeCommandOutput) => void,
|
|
582
570
|
): void;
|
|
583
571
|
startEngagement(
|
|
584
572
|
args: StartEngagementCommandInput,
|
|
585
|
-
options?: __HttpHandlerOptions
|
|
573
|
+
options?: __HttpHandlerOptions,
|
|
586
574
|
): Promise<StartEngagementCommandOutput>;
|
|
587
575
|
startEngagement(
|
|
588
576
|
args: StartEngagementCommandInput,
|
|
589
|
-
cb: (err: any, data?: StartEngagementCommandOutput) => void
|
|
577
|
+
cb: (err: any, data?: StartEngagementCommandOutput) => void,
|
|
590
578
|
): void;
|
|
591
579
|
startEngagement(
|
|
592
580
|
args: StartEngagementCommandInput,
|
|
593
581
|
options: __HttpHandlerOptions,
|
|
594
|
-
cb: (err: any, data?: StartEngagementCommandOutput) => void
|
|
582
|
+
cb: (err: any, data?: StartEngagementCommandOutput) => void,
|
|
595
583
|
): void;
|
|
596
584
|
stopEngagement(
|
|
597
585
|
args: StopEngagementCommandInput,
|
|
598
|
-
options?: __HttpHandlerOptions
|
|
586
|
+
options?: __HttpHandlerOptions,
|
|
599
587
|
): Promise<StopEngagementCommandOutput>;
|
|
600
588
|
stopEngagement(
|
|
601
589
|
args: StopEngagementCommandInput,
|
|
602
|
-
cb: (err: any, data?: StopEngagementCommandOutput) => void
|
|
590
|
+
cb: (err: any, data?: StopEngagementCommandOutput) => void,
|
|
603
591
|
): void;
|
|
604
592
|
stopEngagement(
|
|
605
593
|
args: StopEngagementCommandInput,
|
|
606
594
|
options: __HttpHandlerOptions,
|
|
607
|
-
cb: (err: any, data?: StopEngagementCommandOutput) => void
|
|
595
|
+
cb: (err: any, data?: StopEngagementCommandOutput) => void,
|
|
608
596
|
): void;
|
|
609
597
|
tagResource(
|
|
610
598
|
args: TagResourceCommandInput,
|
|
611
|
-
options?: __HttpHandlerOptions
|
|
599
|
+
options?: __HttpHandlerOptions,
|
|
612
600
|
): Promise<TagResourceCommandOutput>;
|
|
613
601
|
tagResource(
|
|
614
602
|
args: TagResourceCommandInput,
|
|
615
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
603
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
616
604
|
): void;
|
|
617
605
|
tagResource(
|
|
618
606
|
args: TagResourceCommandInput,
|
|
619
607
|
options: __HttpHandlerOptions,
|
|
620
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
608
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
621
609
|
): void;
|
|
622
610
|
untagResource(
|
|
623
611
|
args: UntagResourceCommandInput,
|
|
624
|
-
options?: __HttpHandlerOptions
|
|
612
|
+
options?: __HttpHandlerOptions,
|
|
625
613
|
): Promise<UntagResourceCommandOutput>;
|
|
626
614
|
untagResource(
|
|
627
615
|
args: UntagResourceCommandInput,
|
|
628
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
616
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
629
617
|
): void;
|
|
630
618
|
untagResource(
|
|
631
619
|
args: UntagResourceCommandInput,
|
|
632
620
|
options: __HttpHandlerOptions,
|
|
633
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
621
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
634
622
|
): void;
|
|
635
623
|
updateContact(
|
|
636
624
|
args: UpdateContactCommandInput,
|
|
637
|
-
options?: __HttpHandlerOptions
|
|
625
|
+
options?: __HttpHandlerOptions,
|
|
638
626
|
): Promise<UpdateContactCommandOutput>;
|
|
639
627
|
updateContact(
|
|
640
628
|
args: UpdateContactCommandInput,
|
|
641
|
-
cb: (err: any, data?: UpdateContactCommandOutput) => void
|
|
629
|
+
cb: (err: any, data?: UpdateContactCommandOutput) => void,
|
|
642
630
|
): void;
|
|
643
631
|
updateContact(
|
|
644
632
|
args: UpdateContactCommandInput,
|
|
645
633
|
options: __HttpHandlerOptions,
|
|
646
|
-
cb: (err: any, data?: UpdateContactCommandOutput) => void
|
|
634
|
+
cb: (err: any, data?: UpdateContactCommandOutput) => void,
|
|
647
635
|
): void;
|
|
648
636
|
updateContactChannel(
|
|
649
637
|
args: UpdateContactChannelCommandInput,
|
|
650
|
-
options?: __HttpHandlerOptions
|
|
638
|
+
options?: __HttpHandlerOptions,
|
|
651
639
|
): Promise<UpdateContactChannelCommandOutput>;
|
|
652
640
|
updateContactChannel(
|
|
653
641
|
args: UpdateContactChannelCommandInput,
|
|
654
|
-
cb: (err: any, data?: UpdateContactChannelCommandOutput) => void
|
|
642
|
+
cb: (err: any, data?: UpdateContactChannelCommandOutput) => void,
|
|
655
643
|
): void;
|
|
656
644
|
updateContactChannel(
|
|
657
645
|
args: UpdateContactChannelCommandInput,
|
|
658
646
|
options: __HttpHandlerOptions,
|
|
659
|
-
cb: (err: any, data?: UpdateContactChannelCommandOutput) => void
|
|
647
|
+
cb: (err: any, data?: UpdateContactChannelCommandOutput) => void,
|
|
660
648
|
): void;
|
|
661
649
|
updateRotation(
|
|
662
650
|
args: UpdateRotationCommandInput,
|
|
663
|
-
options?: __HttpHandlerOptions
|
|
651
|
+
options?: __HttpHandlerOptions,
|
|
664
652
|
): Promise<UpdateRotationCommandOutput>;
|
|
665
653
|
updateRotation(
|
|
666
654
|
args: UpdateRotationCommandInput,
|
|
667
|
-
cb: (err: any, data?: UpdateRotationCommandOutput) => void
|
|
655
|
+
cb: (err: any, data?: UpdateRotationCommandOutput) => void,
|
|
668
656
|
): void;
|
|
669
657
|
updateRotation(
|
|
670
658
|
args: UpdateRotationCommandInput,
|
|
671
659
|
options: __HttpHandlerOptions,
|
|
672
|
-
cb: (err: any, data?: UpdateRotationCommandOutput) => void
|
|
660
|
+
cb: (err: any, data?: UpdateRotationCommandOutput) => void,
|
|
673
661
|
): void;
|
|
674
662
|
paginateListContactChannels(
|
|
675
663
|
args: ListContactChannelsCommandInput,
|
|
676
664
|
paginationConfig?: Pick<
|
|
677
665
|
PaginationConfiguration,
|
|
678
666
|
Exclude<keyof PaginationConfiguration, "client">
|
|
679
|
-
|
|
667
|
+
>,
|
|
680
668
|
): Paginator<ListContactChannelsCommandOutput>;
|
|
681
669
|
paginateListContacts(
|
|
682
670
|
args?: ListContactsCommandInput,
|
|
683
671
|
paginationConfig?: Pick<
|
|
684
672
|
PaginationConfiguration,
|
|
685
673
|
Exclude<keyof PaginationConfiguration, "client">
|
|
686
|
-
|
|
674
|
+
>,
|
|
687
675
|
): Paginator<ListContactsCommandOutput>;
|
|
688
676
|
paginateListEngagements(
|
|
689
677
|
args?: ListEngagementsCommandInput,
|
|
690
678
|
paginationConfig?: Pick<
|
|
691
679
|
PaginationConfiguration,
|
|
692
680
|
Exclude<keyof PaginationConfiguration, "client">
|
|
693
|
-
|
|
681
|
+
>,
|
|
694
682
|
): Paginator<ListEngagementsCommandOutput>;
|
|
695
683
|
paginateListPageReceipts(
|
|
696
684
|
args: ListPageReceiptsCommandInput,
|
|
697
685
|
paginationConfig?: Pick<
|
|
698
686
|
PaginationConfiguration,
|
|
699
687
|
Exclude<keyof PaginationConfiguration, "client">
|
|
700
|
-
|
|
688
|
+
>,
|
|
701
689
|
): Paginator<ListPageReceiptsCommandOutput>;
|
|
702
690
|
paginateListPageResolutions(
|
|
703
691
|
args: ListPageResolutionsCommandInput,
|
|
704
692
|
paginationConfig?: Pick<
|
|
705
693
|
PaginationConfiguration,
|
|
706
694
|
Exclude<keyof PaginationConfiguration, "client">
|
|
707
|
-
|
|
695
|
+
>,
|
|
708
696
|
): Paginator<ListPageResolutionsCommandOutput>;
|
|
709
697
|
paginateListPagesByContact(
|
|
710
698
|
args: ListPagesByContactCommandInput,
|
|
711
699
|
paginationConfig?: Pick<
|
|
712
700
|
PaginationConfiguration,
|
|
713
701
|
Exclude<keyof PaginationConfiguration, "client">
|
|
714
|
-
|
|
702
|
+
>,
|
|
715
703
|
): Paginator<ListPagesByContactCommandOutput>;
|
|
716
704
|
paginateListPagesByEngagement(
|
|
717
705
|
args: ListPagesByEngagementCommandInput,
|
|
718
706
|
paginationConfig?: Pick<
|
|
719
707
|
PaginationConfiguration,
|
|
720
708
|
Exclude<keyof PaginationConfiguration, "client">
|
|
721
|
-
|
|
709
|
+
>,
|
|
722
710
|
): Paginator<ListPagesByEngagementCommandOutput>;
|
|
723
711
|
paginateListPreviewRotationShifts(
|
|
724
712
|
args: ListPreviewRotationShiftsCommandInput,
|
|
725
713
|
paginationConfig?: Pick<
|
|
726
714
|
PaginationConfiguration,
|
|
727
715
|
Exclude<keyof PaginationConfiguration, "client">
|
|
728
|
-
|
|
716
|
+
>,
|
|
729
717
|
): Paginator<ListPreviewRotationShiftsCommandOutput>;
|
|
730
718
|
paginateListRotationOverrides(
|
|
731
719
|
args: ListRotationOverridesCommandInput,
|
|
732
720
|
paginationConfig?: Pick<
|
|
733
721
|
PaginationConfiguration,
|
|
734
722
|
Exclude<keyof PaginationConfiguration, "client">
|
|
735
|
-
|
|
723
|
+
>,
|
|
736
724
|
): Paginator<ListRotationOverridesCommandOutput>;
|
|
737
725
|
paginateListRotations(
|
|
738
726
|
args?: ListRotationsCommandInput,
|
|
739
727
|
paginationConfig?: Pick<
|
|
740
728
|
PaginationConfiguration,
|
|
741
729
|
Exclude<keyof PaginationConfiguration, "client">
|
|
742
|
-
|
|
730
|
+
>,
|
|
743
731
|
): Paginator<ListRotationsCommandOutput>;
|
|
744
732
|
paginateListRotationShifts(
|
|
745
733
|
args: ListRotationShiftsCommandInput,
|
|
746
734
|
paginationConfig?: Pick<
|
|
747
735
|
PaginationConfiguration,
|
|
748
736
|
Exclude<keyof PaginationConfiguration, "client">
|
|
749
|
-
|
|
737
|
+
>,
|
|
750
738
|
): Paginator<ListRotationShiftsCommandOutput>;
|
|
751
739
|
}
|
|
752
|
-
export declare class SSMContacts
|
|
753
|
-
extends SSMContactsClient
|
|
754
|
-
implements SSMContacts {}
|
|
740
|
+
export declare class SSMContacts extends SSMContactsClient implements SSMContacts {}
|