@aws-sdk/client-chime 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/Chime.js +195 -2674
- package/dist-cjs/protocols/Aws_restJson1.js +1768 -3516
- package/dist-es/Chime.js +195 -2674
- package/dist-es/protocols/Aws_restJson1.js +1473 -3221
- package/dist-types/Chime.d.ts +236 -913
- package/dist-types/ts3.4/Chime.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/Chime.d.ts
CHANGED
|
@@ -191,1872 +191,1195 @@ import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from
|
|
|
191
191
|
import { UpdateVoiceConnectorCommandInput, UpdateVoiceConnectorCommandOutput } from "./commands/UpdateVoiceConnectorCommand";
|
|
192
192
|
import { UpdateVoiceConnectorGroupCommandInput, UpdateVoiceConnectorGroupCommandOutput } from "./commands/UpdateVoiceConnectorGroupCommand";
|
|
193
193
|
import { ValidateE911AddressCommandInput, ValidateE911AddressCommandOutput } from "./commands/ValidateE911AddressCommand";
|
|
194
|
-
|
|
195
|
-
* @public
|
|
196
|
-
* <p>The Amazon Chime API (application programming interface) is designed for developers to
|
|
197
|
-
* perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice
|
|
198
|
-
* Connectors. This guide provides detailed information about the Amazon Chime API,
|
|
199
|
-
* including operations, types, inputs and outputs, and error codes. It also includes API actions for use with the Amazon Chime SDK, which developers use to build their own communication applications. For more information about the
|
|
200
|
-
* Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">
|
|
201
|
-
* Using the Amazon Chime SDK
|
|
202
|
-
* </a> in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
203
|
-
* <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the
|
|
204
|
-
* AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p>
|
|
205
|
-
* <dl>
|
|
206
|
-
* <dt>Using an AWS SDK</dt>
|
|
207
|
-
* <dd>
|
|
208
|
-
* <p>
|
|
209
|
-
* You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the
|
|
210
|
-
* <a href="http://aws.amazon.com/developer/">AWS Developer Center</a>.
|
|
211
|
-
* </p>
|
|
212
|
-
* </dd>
|
|
213
|
-
* <dt>Using the AWS CLI</dt>
|
|
214
|
-
* <dd>
|
|
215
|
-
* <p>Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see
|
|
216
|
-
* <a href="https://docs.aws.amazon.com/cli/latest/userguide/installing.html">Installing the AWS Command Line Interface</a>
|
|
217
|
-
* in the <i>AWS Command Line Interface User Guide</i>. For a list of available Amazon Chime commands, see the
|
|
218
|
-
* <a href="https://docs.aws.amazon.com/cli/latest/reference/chime/index.html">Amazon Chime commands</a> in the
|
|
219
|
-
* <i>AWS CLI Command Reference</i>.
|
|
220
|
-
* </p>
|
|
221
|
-
* </dd>
|
|
222
|
-
* <dt>Using REST APIs</dt>
|
|
223
|
-
* <dd>
|
|
224
|
-
* <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports signature version 4. For more information, see
|
|
225
|
-
* <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>
|
|
226
|
-
* in the <i>Amazon Web Services General Reference</i>.</p>
|
|
227
|
-
*
|
|
228
|
-
* <p>When making REST API calls, use the service name <code>chime</code> and REST endpoint <code>https://service.chime.aws.amazon.com</code>.</p>
|
|
229
|
-
* </dd>
|
|
230
|
-
* </dl>
|
|
231
|
-
*
|
|
232
|
-
* <p>Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see
|
|
233
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/ag/security-iam.html">Identity and Access Management for Amazon Chime</a>
|
|
234
|
-
* in the <i>Amazon Chime Administration Guide</i>.</p>
|
|
235
|
-
*/
|
|
236
|
-
export declare class Chime extends ChimeClient {
|
|
194
|
+
export interface Chime {
|
|
237
195
|
/**
|
|
238
|
-
* @
|
|
239
|
-
* <p>Associates phone numbers with the specified Amazon Chime Voice Connector.</p>
|
|
196
|
+
* @see {@link AssociatePhoneNumbersWithVoiceConnectorCommand}
|
|
240
197
|
*/
|
|
241
198
|
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumbersWithVoiceConnectorCommandOutput>;
|
|
242
199
|
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorCommandOutput) => void): void;
|
|
243
200
|
associatePhoneNumbersWithVoiceConnector(args: AssociatePhoneNumbersWithVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorCommandOutput) => void): void;
|
|
244
201
|
/**
|
|
245
|
-
* @
|
|
246
|
-
* <p>Associates phone numbers with the specified Amazon Chime Voice Connector group.</p>
|
|
202
|
+
* @see {@link AssociatePhoneNumbersWithVoiceConnectorGroupCommand}
|
|
247
203
|
*/
|
|
248
204
|
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput>;
|
|
249
205
|
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput) => void): void;
|
|
250
206
|
associatePhoneNumbersWithVoiceConnectorGroup(args: AssociatePhoneNumbersWithVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumbersWithVoiceConnectorGroupCommandOutput) => void): void;
|
|
251
207
|
/**
|
|
252
|
-
* @
|
|
253
|
-
* <p>Associates a phone number with the specified Amazon Chime user.</p>
|
|
208
|
+
* @see {@link AssociatePhoneNumberWithUserCommand}
|
|
254
209
|
*/
|
|
255
210
|
associatePhoneNumberWithUser(args: AssociatePhoneNumberWithUserCommandInput, options?: __HttpHandlerOptions): Promise<AssociatePhoneNumberWithUserCommandOutput>;
|
|
256
211
|
associatePhoneNumberWithUser(args: AssociatePhoneNumberWithUserCommandInput, cb: (err: any, data?: AssociatePhoneNumberWithUserCommandOutput) => void): void;
|
|
257
212
|
associatePhoneNumberWithUser(args: AssociatePhoneNumberWithUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociatePhoneNumberWithUserCommandOutput) => void): void;
|
|
258
213
|
/**
|
|
259
|
-
* @
|
|
260
|
-
* <p>Associates the specified sign-in delegate groups with the specified Amazon Chime account.</p>
|
|
214
|
+
* @see {@link AssociateSigninDelegateGroupsWithAccountCommand}
|
|
261
215
|
*/
|
|
262
216
|
associateSigninDelegateGroupsWithAccount(args: AssociateSigninDelegateGroupsWithAccountCommandInput, options?: __HttpHandlerOptions): Promise<AssociateSigninDelegateGroupsWithAccountCommandOutput>;
|
|
263
217
|
associateSigninDelegateGroupsWithAccount(args: AssociateSigninDelegateGroupsWithAccountCommandInput, cb: (err: any, data?: AssociateSigninDelegateGroupsWithAccountCommandOutput) => void): void;
|
|
264
218
|
associateSigninDelegateGroupsWithAccount(args: AssociateSigninDelegateGroupsWithAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSigninDelegateGroupsWithAccountCommandOutput) => void): void;
|
|
265
219
|
/**
|
|
266
|
-
* @
|
|
267
|
-
* <p>
|
|
268
|
-
* Creates up to 100 new attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
269
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
270
|
-
* in the
|
|
271
|
-
* <i>Amazon Chime Developer Guide</i>.
|
|
272
|
-
* </p>
|
|
220
|
+
* @see {@link BatchCreateAttendeeCommand}
|
|
273
221
|
*/
|
|
274
222
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateAttendeeCommandOutput>;
|
|
275
223
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
276
224
|
batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
|
|
277
225
|
/**
|
|
278
|
-
* @
|
|
279
|
-
* <p>Adds a specified number of users to a channel.</p>
|
|
226
|
+
* @see {@link BatchCreateChannelMembershipCommand}
|
|
280
227
|
*/
|
|
281
228
|
batchCreateChannelMembership(args: BatchCreateChannelMembershipCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateChannelMembershipCommandOutput>;
|
|
282
229
|
batchCreateChannelMembership(args: BatchCreateChannelMembershipCommandInput, cb: (err: any, data?: BatchCreateChannelMembershipCommandOutput) => void): void;
|
|
283
230
|
batchCreateChannelMembership(args: BatchCreateChannelMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateChannelMembershipCommandOutput) => void): void;
|
|
284
231
|
/**
|
|
285
|
-
* @
|
|
286
|
-
* <p>Adds up to 50 members to a chat room in an Amazon Chime Enterprise account. Members can be users or bots. The member role designates whether the member is a chat room administrator or a general chat room member.</p>
|
|
232
|
+
* @see {@link BatchCreateRoomMembershipCommand}
|
|
287
233
|
*/
|
|
288
234
|
batchCreateRoomMembership(args: BatchCreateRoomMembershipCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateRoomMembershipCommandOutput>;
|
|
289
235
|
batchCreateRoomMembership(args: BatchCreateRoomMembershipCommandInput, cb: (err: any, data?: BatchCreateRoomMembershipCommandOutput) => void): void;
|
|
290
236
|
batchCreateRoomMembership(args: BatchCreateRoomMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateRoomMembershipCommandOutput) => void): void;
|
|
291
237
|
/**
|
|
292
|
-
* @
|
|
293
|
-
* <p>
|
|
294
|
-
* Moves phone numbers into the
|
|
295
|
-
* <b>Deletion queue</b>. Phone numbers must be disassociated from any users or Amazon Chime Voice Connectors before they can be deleted.
|
|
296
|
-
* </p>
|
|
297
|
-
*
|
|
298
|
-
* <p>
|
|
299
|
-
* Phone numbers remain in the
|
|
300
|
-
* <b>Deletion queue</b> for 7 days before they are deleted permanently.
|
|
301
|
-
* </p>
|
|
238
|
+
* @see {@link BatchDeletePhoneNumberCommand}
|
|
302
239
|
*/
|
|
303
240
|
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeletePhoneNumberCommandOutput>;
|
|
304
241
|
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, cb: (err: any, data?: BatchDeletePhoneNumberCommandOutput) => void): void;
|
|
305
242
|
batchDeletePhoneNumber(args: BatchDeletePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeletePhoneNumberCommandOutput) => void): void;
|
|
306
243
|
/**
|
|
307
|
-
* @
|
|
308
|
-
* <p>Suspends up to 50 users from a <code>Team</code> or <code>EnterpriseLWA</code> Amazon Chime
|
|
309
|
-
* account. For more information about different account types, see <a href="https://docs.aws.amazon.com/chime/latest/ag/manage-chime-account.html">Managing Your Amazon Chime Accounts</a> in the <i>Amazon Chime Administration
|
|
310
|
-
* Guide</i>.</p>
|
|
311
|
-
*
|
|
312
|
-
* <p>Users suspended from a <code>Team</code> account are disassociated from the account,but they
|
|
313
|
-
* can continue to use Amazon Chime as free users. To remove the suspension from suspended
|
|
314
|
-
* <code>Team</code> account users, invite them to the <code>Team</code> account again.
|
|
315
|
-
* You can use the <a>InviteUsers</a> action to do so.</p>
|
|
316
|
-
*
|
|
317
|
-
* <p>Users suspended from an <code>EnterpriseLWA</code> account are immediately signed out of
|
|
318
|
-
* Amazon Chime and can no longer sign in. To remove the suspension from suspended <code>EnterpriseLWA</code> account users, use the <a>BatchUnsuspendUser</a> action.</p>
|
|
319
|
-
*
|
|
320
|
-
* <p>
|
|
321
|
-
* To sign out users without suspending them, use the
|
|
322
|
-
* <a>LogoutUser</a>
|
|
323
|
-
* action.
|
|
324
|
-
* </p>
|
|
244
|
+
* @see {@link BatchSuspendUserCommand}
|
|
325
245
|
*/
|
|
326
246
|
batchSuspendUser(args: BatchSuspendUserCommandInput, options?: __HttpHandlerOptions): Promise<BatchSuspendUserCommandOutput>;
|
|
327
247
|
batchSuspendUser(args: BatchSuspendUserCommandInput, cb: (err: any, data?: BatchSuspendUserCommandOutput) => void): void;
|
|
328
248
|
batchSuspendUser(args: BatchSuspendUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchSuspendUserCommandOutput) => void): void;
|
|
329
249
|
/**
|
|
330
|
-
* @
|
|
331
|
-
* <p>Removes the suspension from up to 50 previously suspended users for the specified Amazon
|
|
332
|
-
* Chime <code>EnterpriseLWA</code> account. Only users on <code>EnterpriseLWA</code>
|
|
333
|
-
* accounts can be unsuspended using this action. For more information about different account types, see
|
|
334
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/ag/manage-chime-account.html">
|
|
335
|
-
* Managing Your Amazon Chime Accounts
|
|
336
|
-
* </a> in the account types, in the <i>Amazon Chime Administration Guide</i>.
|
|
337
|
-
* </p>
|
|
338
|
-
*
|
|
339
|
-
* <p>
|
|
340
|
-
* Previously suspended users who are unsuspended using this action are returned to
|
|
341
|
-
* <code>Registered</code>
|
|
342
|
-
* status. Users who are not previously suspended are ignored.
|
|
343
|
-
* </p>
|
|
250
|
+
* @see {@link BatchUnsuspendUserCommand}
|
|
344
251
|
*/
|
|
345
252
|
batchUnsuspendUser(args: BatchUnsuspendUserCommandInput, options?: __HttpHandlerOptions): Promise<BatchUnsuspendUserCommandOutput>;
|
|
346
253
|
batchUnsuspendUser(args: BatchUnsuspendUserCommandInput, cb: (err: any, data?: BatchUnsuspendUserCommandOutput) => void): void;
|
|
347
254
|
batchUnsuspendUser(args: BatchUnsuspendUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUnsuspendUserCommandOutput) => void): void;
|
|
348
255
|
/**
|
|
349
|
-
* @
|
|
350
|
-
* <p>Updates phone number product types or calling names. You can update one attribute at a time for each <code>UpdatePhoneNumberRequestItem</code>. For example, you can update the product type or the calling name.</p>
|
|
351
|
-
* <p>For toll-free numbers, you cannot use the Amazon Chime Business Calling product type. For numbers outside the U.S., you must use the Amazon Chime SIP Media Application Dial-In product type.</p>
|
|
352
|
-
* <p>Updates to outbound calling names can take up to 72 hours to complete. Pending updates to outbound calling names must be complete before you can request another update.</p>
|
|
256
|
+
* @see {@link BatchUpdatePhoneNumberCommand}
|
|
353
257
|
*/
|
|
354
258
|
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdatePhoneNumberCommandOutput>;
|
|
355
259
|
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, cb: (err: any, data?: BatchUpdatePhoneNumberCommandOutput) => void): void;
|
|
356
260
|
batchUpdatePhoneNumber(args: BatchUpdatePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdatePhoneNumberCommandOutput) => void): void;
|
|
357
261
|
/**
|
|
358
|
-
* @
|
|
359
|
-
* <p>Updates user details within the <a>UpdateUserRequestItem</a> object for up to 20 users for the specified Amazon Chime account. Currently, only <code>LicenseType</code> updates are supported for this action.</p>
|
|
262
|
+
* @see {@link BatchUpdateUserCommand}
|
|
360
263
|
*/
|
|
361
264
|
batchUpdateUser(args: BatchUpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<BatchUpdateUserCommandOutput>;
|
|
362
265
|
batchUpdateUser(args: BatchUpdateUserCommandInput, cb: (err: any, data?: BatchUpdateUserCommandOutput) => void): void;
|
|
363
266
|
batchUpdateUser(args: BatchUpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchUpdateUserCommandOutput) => void): void;
|
|
364
267
|
/**
|
|
365
|
-
* @
|
|
366
|
-
* <p>Creates an Amazon Chime account under the administrator's AWS account. Only <code>Team</code>
|
|
367
|
-
* account types are currently supported for this action. For more information about different account types, see
|
|
368
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/ag/manage-chime-account.html">Managing Your Amazon Chime Accounts</a> in the <i>Amazon Chime Administration Guide</i>.</p>
|
|
268
|
+
* @see {@link CreateAccountCommand}
|
|
369
269
|
*/
|
|
370
270
|
createAccount(args: CreateAccountCommandInput, options?: __HttpHandlerOptions): Promise<CreateAccountCommandOutput>;
|
|
371
271
|
createAccount(args: CreateAccountCommandInput, cb: (err: any, data?: CreateAccountCommandOutput) => void): void;
|
|
372
272
|
createAccount(args: CreateAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAccountCommandOutput) => void): void;
|
|
373
273
|
/**
|
|
374
|
-
* @
|
|
375
|
-
* <p>Creates an Amazon Chime SDK messaging <code>AppInstance</code> under an AWS account. Only SDK messaging customers use this API.
|
|
376
|
-
* <code>CreateAppInstance</code> supports idempotency behavior as described in the AWS API Standard.</p>
|
|
274
|
+
* @see {@link CreateAppInstanceCommand}
|
|
377
275
|
*/
|
|
378
276
|
createAppInstance(args: CreateAppInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppInstanceCommandOutput>;
|
|
379
277
|
createAppInstance(args: CreateAppInstanceCommandInput, cb: (err: any, data?: CreateAppInstanceCommandOutput) => void): void;
|
|
380
278
|
createAppInstance(args: CreateAppInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppInstanceCommandOutput) => void): void;
|
|
381
279
|
/**
|
|
382
|
-
* @
|
|
383
|
-
* <p>Promotes an <code>AppInstanceUser</code> to an <code>AppInstanceAdmin</code>. The promoted user can perform the following actions.
|
|
384
|
-
* </p>
|
|
385
|
-
*
|
|
386
|
-
* <ul>
|
|
387
|
-
* <li>
|
|
388
|
-
* <p>
|
|
389
|
-
* <code>ChannelModerator</code> actions across all channels in the <code>AppInstance</code>.</p>
|
|
390
|
-
* </li>
|
|
391
|
-
* <li>
|
|
392
|
-
* <p>
|
|
393
|
-
* <code>DeleteChannelMessage</code> actions.</p>
|
|
394
|
-
* </li>
|
|
395
|
-
* </ul>
|
|
396
|
-
*
|
|
397
|
-
* <p>Only an <code>AppInstanceUser</code> can be promoted to an <code>AppInstanceAdmin</code> role.</p>
|
|
280
|
+
* @see {@link CreateAppInstanceAdminCommand}
|
|
398
281
|
*/
|
|
399
282
|
createAppInstanceAdmin(args: CreateAppInstanceAdminCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppInstanceAdminCommandOutput>;
|
|
400
283
|
createAppInstanceAdmin(args: CreateAppInstanceAdminCommandInput, cb: (err: any, data?: CreateAppInstanceAdminCommandOutput) => void): void;
|
|
401
284
|
createAppInstanceAdmin(args: CreateAppInstanceAdminCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppInstanceAdminCommandOutput) => void): void;
|
|
402
285
|
/**
|
|
403
|
-
* @
|
|
404
|
-
* <p>Creates a user under an Amazon Chime <code>AppInstance</code>. The request consists of a unique <code>appInstanceUserId</code> and
|
|
405
|
-
* <code>Name</code> for that user.</p>
|
|
286
|
+
* @see {@link CreateAppInstanceUserCommand}
|
|
406
287
|
*/
|
|
407
288
|
createAppInstanceUser(args: CreateAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppInstanceUserCommandOutput>;
|
|
408
289
|
createAppInstanceUser(args: CreateAppInstanceUserCommandInput, cb: (err: any, data?: CreateAppInstanceUserCommandOutput) => void): void;
|
|
409
290
|
createAppInstanceUser(args: CreateAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppInstanceUserCommandOutput) => void): void;
|
|
410
291
|
/**
|
|
411
|
-
* @
|
|
412
|
-
* <p>
|
|
413
|
-
* Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
414
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
415
|
-
* in the
|
|
416
|
-
* <i>Amazon Chime Developer Guide</i>.
|
|
417
|
-
* </p>
|
|
292
|
+
* @see {@link CreateAttendeeCommand}
|
|
418
293
|
*/
|
|
419
294
|
createAttendee(args: CreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttendeeCommandOutput>;
|
|
420
295
|
createAttendee(args: CreateAttendeeCommandInput, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
421
296
|
createAttendee(args: CreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
|
|
422
297
|
/**
|
|
423
|
-
* @
|
|
424
|
-
* <p>Creates a bot for an Amazon Chime Enterprise account.</p>
|
|
298
|
+
* @see {@link CreateBotCommand}
|
|
425
299
|
*/
|
|
426
300
|
createBot(args: CreateBotCommandInput, options?: __HttpHandlerOptions): Promise<CreateBotCommandOutput>;
|
|
427
301
|
createBot(args: CreateBotCommandInput, cb: (err: any, data?: CreateBotCommandOutput) => void): void;
|
|
428
302
|
createBot(args: CreateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBotCommandOutput) => void): void;
|
|
429
303
|
/**
|
|
430
|
-
* @
|
|
431
|
-
* <p>Creates a channel to which you can add users and send messages.</p>
|
|
432
|
-
*
|
|
433
|
-
* <p>
|
|
434
|
-
* <b>Restriction</b>: You can't change a channel's
|
|
435
|
-
* privacy.</p>
|
|
436
|
-
*
|
|
437
|
-
* <note>
|
|
438
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
439
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
440
|
-
* the header.</p>
|
|
441
|
-
* </note>
|
|
304
|
+
* @see {@link CreateChannelCommand}
|
|
442
305
|
*/
|
|
443
306
|
createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
|
|
444
307
|
createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
445
308
|
createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
|
|
446
309
|
/**
|
|
447
|
-
* @
|
|
448
|
-
* <p>Permanently bans a member from a channel. Moderators can't add banned members to a
|
|
449
|
-
* channel. To undo a ban, you first have to <code>DeleteChannelBan</code>, and then
|
|
450
|
-
* <code>CreateChannelMembership</code>. Bans are cleaned up when you delete users or
|
|
451
|
-
* channels.</p>
|
|
452
|
-
* <p>If you ban a user who is already part of a channel, that user is automatically kicked
|
|
453
|
-
* from the channel.</p>
|
|
454
|
-
*
|
|
455
|
-
* <note>
|
|
456
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
457
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
458
|
-
* the header.</p>
|
|
459
|
-
* </note>
|
|
310
|
+
* @see {@link CreateChannelBanCommand}
|
|
460
311
|
*/
|
|
461
312
|
createChannelBan(args: CreateChannelBanCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelBanCommandOutput>;
|
|
462
313
|
createChannelBan(args: CreateChannelBanCommandInput, cb: (err: any, data?: CreateChannelBanCommandOutput) => void): void;
|
|
463
314
|
createChannelBan(args: CreateChannelBanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelBanCommandOutput) => void): void;
|
|
464
315
|
/**
|
|
465
|
-
* @
|
|
466
|
-
* <p>Adds a user to a channel. The <code>InvitedBy</code> response field is derived from the
|
|
467
|
-
* request header. A channel member can:</p>
|
|
468
|
-
*
|
|
469
|
-
* <ul>
|
|
470
|
-
* <li>
|
|
471
|
-
* <p>List messages</p>
|
|
472
|
-
* </li>
|
|
473
|
-
* <li>
|
|
474
|
-
* <p>Send messages</p>
|
|
475
|
-
* </li>
|
|
476
|
-
* <li>
|
|
477
|
-
* <p>Receive messages</p>
|
|
478
|
-
* </li>
|
|
479
|
-
* <li>
|
|
480
|
-
* <p>Edit their own messages</p>
|
|
481
|
-
* </li>
|
|
482
|
-
* <li>
|
|
483
|
-
* <p>Leave the channel</p>
|
|
484
|
-
* </li>
|
|
485
|
-
* </ul>
|
|
486
|
-
*
|
|
487
|
-
* <p>Privacy settings impact this action as follows:</p>
|
|
488
|
-
*
|
|
489
|
-
* <ul>
|
|
490
|
-
* <li>
|
|
491
|
-
* <p>Public Channels: You do not need to be a member to list messages, but you must be
|
|
492
|
-
* a member to send messages.</p>
|
|
493
|
-
* </li>
|
|
494
|
-
* <li>
|
|
495
|
-
* <p>Private Channels: You must be a member to list or send messages.</p>
|
|
496
|
-
* </li>
|
|
497
|
-
* </ul>
|
|
498
|
-
*
|
|
499
|
-
* <note>
|
|
500
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
501
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
502
|
-
* the header.</p>
|
|
503
|
-
* </note>
|
|
316
|
+
* @see {@link CreateChannelMembershipCommand}
|
|
504
317
|
*/
|
|
505
318
|
createChannelMembership(args: CreateChannelMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelMembershipCommandOutput>;
|
|
506
319
|
createChannelMembership(args: CreateChannelMembershipCommandInput, cb: (err: any, data?: CreateChannelMembershipCommandOutput) => void): void;
|
|
507
320
|
createChannelMembership(args: CreateChannelMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelMembershipCommandOutput) => void): void;
|
|
508
321
|
/**
|
|
509
|
-
* @
|
|
510
|
-
* <p>Creates a new <code>ChannelModerator</code>. A channel moderator can:</p>
|
|
511
|
-
*
|
|
512
|
-
* <ul>
|
|
513
|
-
* <li>
|
|
514
|
-
* <p>Add and remove other members of the channel.</p>
|
|
515
|
-
* </li>
|
|
516
|
-
* <li>
|
|
517
|
-
* <p>Add and remove other moderators of the channel.</p>
|
|
518
|
-
* </li>
|
|
519
|
-
* <li>
|
|
520
|
-
* <p>Add and remove user bans for the channel.</p>
|
|
521
|
-
* </li>
|
|
522
|
-
* <li>
|
|
523
|
-
* <p>Redact messages in the channel.</p>
|
|
524
|
-
* </li>
|
|
525
|
-
* <li>
|
|
526
|
-
* <p>List messages in the channel.</p>
|
|
527
|
-
* </li>
|
|
528
|
-
* </ul>
|
|
529
|
-
*
|
|
530
|
-
* <note>
|
|
531
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
532
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
533
|
-
* the header.</p>
|
|
534
|
-
* </note>
|
|
322
|
+
* @see {@link CreateChannelModeratorCommand}
|
|
535
323
|
*/
|
|
536
324
|
createChannelModerator(args: CreateChannelModeratorCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelModeratorCommandOutput>;
|
|
537
325
|
createChannelModerator(args: CreateChannelModeratorCommandInput, cb: (err: any, data?: CreateChannelModeratorCommandOutput) => void): void;
|
|
538
326
|
createChannelModerator(args: CreateChannelModeratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelModeratorCommandOutput) => void): void;
|
|
539
327
|
/**
|
|
540
|
-
* @
|
|
541
|
-
* <p>Creates a media capture pipeline.</p>
|
|
328
|
+
* @see {@link CreateMediaCapturePipelineCommand}
|
|
542
329
|
*/
|
|
543
330
|
createMediaCapturePipeline(args: CreateMediaCapturePipelineCommandInput, options?: __HttpHandlerOptions): Promise<CreateMediaCapturePipelineCommandOutput>;
|
|
544
331
|
createMediaCapturePipeline(args: CreateMediaCapturePipelineCommandInput, cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void): void;
|
|
545
332
|
createMediaCapturePipeline(args: CreateMediaCapturePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMediaCapturePipelineCommandOutput) => void): void;
|
|
546
333
|
/**
|
|
547
|
-
* @
|
|
548
|
-
* <p>
|
|
549
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see
|
|
550
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html">Amazon Chime SDK Media Regions</a>
|
|
551
|
-
* in the
|
|
552
|
-
* <i>Amazon Chime Developer Guide</i>
|
|
553
|
-
* . For more information about the Amazon Chime SDK, see
|
|
554
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
555
|
-
* in the
|
|
556
|
-
* <i>Amazon Chime Developer Guide</i>
|
|
557
|
-
* .
|
|
558
|
-
* </p>
|
|
334
|
+
* @see {@link CreateMeetingCommand}
|
|
559
335
|
*/
|
|
560
336
|
createMeeting(args: CreateMeetingCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingCommandOutput>;
|
|
561
337
|
createMeeting(args: CreateMeetingCommandInput, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
|
|
562
338
|
createMeeting(args: CreateMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
|
|
563
339
|
/**
|
|
564
|
-
* @
|
|
565
|
-
* <p>Uses the join token and call metadata in a meeting request (From number, To number, and so forth) to initiate an outbound call to a public
|
|
566
|
-
* switched telephone network (PSTN) and join them into a Chime meeting. Also ensures that the From number belongs to the customer.</p>
|
|
567
|
-
*
|
|
568
|
-
* <p>To play welcome audio or implement an interactive voice response (IVR), use the
|
|
569
|
-
* <code>CreateSipMediaApplicationCall</code> action with the corresponding SIP media application ID.</p>
|
|
340
|
+
* @see {@link CreateMeetingDialOutCommand}
|
|
570
341
|
*/
|
|
571
342
|
createMeetingDialOut(args: CreateMeetingDialOutCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingDialOutCommandOutput>;
|
|
572
343
|
createMeetingDialOut(args: CreateMeetingDialOutCommandInput, cb: (err: any, data?: CreateMeetingDialOutCommandOutput) => void): void;
|
|
573
344
|
createMeetingDialOut(args: CreateMeetingDialOutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingDialOutCommandOutput) => void): void;
|
|
574
345
|
/**
|
|
575
|
-
* @
|
|
576
|
-
* <p>
|
|
577
|
-
* Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see
|
|
578
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html">Amazon Chime SDK Media Regions</a>
|
|
579
|
-
* in the
|
|
580
|
-
* <i>Amazon Chime Developer Guide</i>
|
|
581
|
-
* . For more information about the Amazon Chime SDK, see
|
|
582
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
583
|
-
* in the
|
|
584
|
-
* <i>Amazon Chime Developer Guide</i>
|
|
585
|
-
* .
|
|
586
|
-
* </p>
|
|
346
|
+
* @see {@link CreateMeetingWithAttendeesCommand}
|
|
587
347
|
*/
|
|
588
348
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingWithAttendeesCommandOutput>;
|
|
589
349
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
|
|
590
350
|
createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
|
|
591
351
|
/**
|
|
592
|
-
* @
|
|
593
|
-
* <p>Creates an order for phone numbers to be provisioned. For toll-free numbers, you cannot use the Amazon Chime Business Calling product type.
|
|
594
|
-
* For numbers outside the U.S., you must use the Amazon Chime SIP Media Application Dial-In product type.</p>
|
|
352
|
+
* @see {@link CreatePhoneNumberOrderCommand}
|
|
595
353
|
*/
|
|
596
354
|
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options?: __HttpHandlerOptions): Promise<CreatePhoneNumberOrderCommandOutput>;
|
|
597
355
|
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, cb: (err: any, data?: CreatePhoneNumberOrderCommandOutput) => void): void;
|
|
598
356
|
createPhoneNumberOrder(args: CreatePhoneNumberOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePhoneNumberOrderCommandOutput) => void): void;
|
|
599
357
|
/**
|
|
600
|
-
* @
|
|
601
|
-
* <p>Creates a proxy session on the specified Amazon Chime Voice Connector for the specified participant phone numbers.</p>
|
|
358
|
+
* @see {@link CreateProxySessionCommand}
|
|
602
359
|
*/
|
|
603
360
|
createProxySession(args: CreateProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<CreateProxySessionCommandOutput>;
|
|
604
361
|
createProxySession(args: CreateProxySessionCommandInput, cb: (err: any, data?: CreateProxySessionCommandOutput) => void): void;
|
|
605
362
|
createProxySession(args: CreateProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProxySessionCommandOutput) => void): void;
|
|
606
363
|
/**
|
|
607
|
-
* @
|
|
608
|
-
* <p>Creates a chat room for the specified Amazon Chime Enterprise account.</p>
|
|
364
|
+
* @see {@link CreateRoomCommand}
|
|
609
365
|
*/
|
|
610
366
|
createRoom(args: CreateRoomCommandInput, options?: __HttpHandlerOptions): Promise<CreateRoomCommandOutput>;
|
|
611
367
|
createRoom(args: CreateRoomCommandInput, cb: (err: any, data?: CreateRoomCommandOutput) => void): void;
|
|
612
368
|
createRoom(args: CreateRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRoomCommandOutput) => void): void;
|
|
613
369
|
/**
|
|
614
|
-
* @
|
|
615
|
-
* <p>Adds a member to a chat room in an Amazon Chime Enterprise account. A member can be either a user or a bot. The member role designates whether the member is a chat room administrator or a general chat room member.</p>
|
|
370
|
+
* @see {@link CreateRoomMembershipCommand}
|
|
616
371
|
*/
|
|
617
372
|
createRoomMembership(args: CreateRoomMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateRoomMembershipCommandOutput>;
|
|
618
373
|
createRoomMembership(args: CreateRoomMembershipCommandInput, cb: (err: any, data?: CreateRoomMembershipCommandOutput) => void): void;
|
|
619
374
|
createRoomMembership(args: CreateRoomMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRoomMembershipCommandOutput) => void): void;
|
|
620
375
|
/**
|
|
621
|
-
* @
|
|
622
|
-
* <p>Creates a SIP media application.</p>
|
|
376
|
+
* @see {@link CreateSipMediaApplicationCommand}
|
|
623
377
|
*/
|
|
624
378
|
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateSipMediaApplicationCommandOutput>;
|
|
625
379
|
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, cb: (err: any, data?: CreateSipMediaApplicationCommandOutput) => void): void;
|
|
626
380
|
createSipMediaApplication(args: CreateSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSipMediaApplicationCommandOutput) => void): void;
|
|
627
381
|
/**
|
|
628
|
-
* @
|
|
629
|
-
* <p>Creates an outbound call to a phone number from the phone number specified in the request, and it invokes the endpoint of the specified
|
|
630
|
-
* <code>sipMediaApplicationId</code>.</p>
|
|
382
|
+
* @see {@link CreateSipMediaApplicationCallCommand}
|
|
631
383
|
*/
|
|
632
384
|
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options?: __HttpHandlerOptions): Promise<CreateSipMediaApplicationCallCommandOutput>;
|
|
633
385
|
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, cb: (err: any, data?: CreateSipMediaApplicationCallCommandOutput) => void): void;
|
|
634
386
|
createSipMediaApplicationCall(args: CreateSipMediaApplicationCallCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSipMediaApplicationCallCommandOutput) => void): void;
|
|
635
387
|
/**
|
|
636
|
-
* @
|
|
637
|
-
* <p>Creates a SIP rule which can be used to run a SIP media application as a target for a specific trigger type.</p>
|
|
388
|
+
* @see {@link CreateSipRuleCommand}
|
|
638
389
|
*/
|
|
639
390
|
createSipRule(args: CreateSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateSipRuleCommandOutput>;
|
|
640
391
|
createSipRule(args: CreateSipRuleCommandInput, cb: (err: any, data?: CreateSipRuleCommandOutput) => void): void;
|
|
641
392
|
createSipRule(args: CreateSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSipRuleCommandOutput) => void): void;
|
|
642
393
|
/**
|
|
643
|
-
* @
|
|
644
|
-
* <p>Creates a user under the specified Amazon Chime account.</p>
|
|
394
|
+
* @see {@link CreateUserCommand}
|
|
645
395
|
*/
|
|
646
396
|
createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
|
|
647
397
|
createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
648
398
|
createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
|
|
649
399
|
/**
|
|
650
|
-
* @
|
|
651
|
-
* <p>Creates an Amazon Chime Voice Connector under the administrator's AWS account. You can choose to create an Amazon Chime Voice Connector in a specific AWS Region.</p>
|
|
652
|
-
*
|
|
653
|
-
* <p>
|
|
654
|
-
* Enabling
|
|
655
|
-
* <a>CreateVoiceConnectorRequest$RequireEncryption</a>
|
|
656
|
-
* configures your Amazon Chime Voice Connector to use TLS transport for SIP signaling and Secure RTP (SRTP) for media. Inbound calls use TLS transport, and unencrypted outbound calls are blocked.
|
|
657
|
-
* </p>
|
|
400
|
+
* @see {@link CreateVoiceConnectorCommand}
|
|
658
401
|
*/
|
|
659
402
|
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateVoiceConnectorCommandOutput>;
|
|
660
403
|
createVoiceConnector(args: CreateVoiceConnectorCommandInput, cb: (err: any, data?: CreateVoiceConnectorCommandOutput) => void): void;
|
|
661
404
|
createVoiceConnector(args: CreateVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVoiceConnectorCommandOutput) => void): void;
|
|
662
405
|
/**
|
|
663
|
-
* @
|
|
664
|
-
* <p>Creates an Amazon Chime Voice Connector group under the administrator's AWS account. You can
|
|
665
|
-
* associate Amazon Chime Voice Connectors with the Amazon Chime Voice Connector group by
|
|
666
|
-
* including <code>VoiceConnectorItems</code> in the request.</p>
|
|
667
|
-
* <p>You can include Amazon Chime Voice Connectors from different AWS Regions in your group. This
|
|
668
|
-
* creates a fault tolerant mechanism for fallback in case of availability events.</p>
|
|
406
|
+
* @see {@link CreateVoiceConnectorGroupCommand}
|
|
669
407
|
*/
|
|
670
408
|
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateVoiceConnectorGroupCommandOutput>;
|
|
671
409
|
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, cb: (err: any, data?: CreateVoiceConnectorGroupCommandOutput) => void): void;
|
|
672
410
|
createVoiceConnectorGroup(args: CreateVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVoiceConnectorGroupCommandOutput) => void): void;
|
|
673
411
|
/**
|
|
674
|
-
* @
|
|
675
|
-
* <p>Deletes the specified Amazon Chime account. You must suspend all users before deleting
|
|
676
|
-
* <code>Team</code> account. You can use the <a>BatchSuspendUser</a> action
|
|
677
|
-
* to dodo.</p>
|
|
678
|
-
*
|
|
679
|
-
* <p>For <code>EnterpriseLWA</code> and <code>EnterpriseAD</code> accounts, you must release the
|
|
680
|
-
* claimed domains for your Amazon Chime account before deletion. As soon as you release
|
|
681
|
-
* the domain, all users under that account are suspended.</p>
|
|
682
|
-
*
|
|
683
|
-
* <p>Deleted accounts appear in your <code>Disabled</code> accounts list for 90 days. To restore
|
|
684
|
-
* deleted account from your <code>Disabled</code> accounts list, you must contact AWS
|
|
685
|
-
* Support.</p>
|
|
686
|
-
*
|
|
687
|
-
* <p>After 90 days, deleted accounts are permanently removed from your
|
|
688
|
-
* <code>Disabled</code> accounts list.</p>
|
|
412
|
+
* @see {@link DeleteAccountCommand}
|
|
689
413
|
*/
|
|
690
414
|
deleteAccount(args: DeleteAccountCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAccountCommandOutput>;
|
|
691
415
|
deleteAccount(args: DeleteAccountCommandInput, cb: (err: any, data?: DeleteAccountCommandOutput) => void): void;
|
|
692
416
|
deleteAccount(args: DeleteAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAccountCommandOutput) => void): void;
|
|
693
417
|
/**
|
|
694
|
-
* @
|
|
695
|
-
* <p>Deletes an <code>AppInstance</code> and all associated data asynchronously.</p>
|
|
418
|
+
* @see {@link DeleteAppInstanceCommand}
|
|
696
419
|
*/
|
|
697
420
|
deleteAppInstance(args: DeleteAppInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppInstanceCommandOutput>;
|
|
698
421
|
deleteAppInstance(args: DeleteAppInstanceCommandInput, cb: (err: any, data?: DeleteAppInstanceCommandOutput) => void): void;
|
|
699
422
|
deleteAppInstance(args: DeleteAppInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppInstanceCommandOutput) => void): void;
|
|
700
423
|
/**
|
|
701
|
-
* @
|
|
702
|
-
* <p>Demotes an <code>AppInstanceAdmin</code> to an <code>AppInstanceUser</code>. This action does not delete the user.</p>
|
|
424
|
+
* @see {@link DeleteAppInstanceAdminCommand}
|
|
703
425
|
*/
|
|
704
426
|
deleteAppInstanceAdmin(args: DeleteAppInstanceAdminCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppInstanceAdminCommandOutput>;
|
|
705
427
|
deleteAppInstanceAdmin(args: DeleteAppInstanceAdminCommandInput, cb: (err: any, data?: DeleteAppInstanceAdminCommandOutput) => void): void;
|
|
706
428
|
deleteAppInstanceAdmin(args: DeleteAppInstanceAdminCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppInstanceAdminCommandOutput) => void): void;
|
|
707
429
|
/**
|
|
708
|
-
* @
|
|
709
|
-
* <p>Deletes the streaming configurations of an <code>AppInstance</code>.</p>
|
|
430
|
+
* @see {@link DeleteAppInstanceStreamingConfigurationsCommand}
|
|
710
431
|
*/
|
|
711
432
|
deleteAppInstanceStreamingConfigurations(args: DeleteAppInstanceStreamingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppInstanceStreamingConfigurationsCommandOutput>;
|
|
712
433
|
deleteAppInstanceStreamingConfigurations(args: DeleteAppInstanceStreamingConfigurationsCommandInput, cb: (err: any, data?: DeleteAppInstanceStreamingConfigurationsCommandOutput) => void): void;
|
|
713
434
|
deleteAppInstanceStreamingConfigurations(args: DeleteAppInstanceStreamingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppInstanceStreamingConfigurationsCommandOutput) => void): void;
|
|
714
435
|
/**
|
|
715
|
-
* @
|
|
716
|
-
* <p>Deletes an <code>AppInstanceUser</code>.</p>
|
|
436
|
+
* @see {@link DeleteAppInstanceUserCommand}
|
|
717
437
|
*/
|
|
718
438
|
deleteAppInstanceUser(args: DeleteAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppInstanceUserCommandOutput>;
|
|
719
439
|
deleteAppInstanceUser(args: DeleteAppInstanceUserCommandInput, cb: (err: any, data?: DeleteAppInstanceUserCommandOutput) => void): void;
|
|
720
440
|
deleteAppInstanceUser(args: DeleteAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppInstanceUserCommandOutput) => void): void;
|
|
721
441
|
/**
|
|
722
|
-
* @
|
|
723
|
-
* <p>Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their
|
|
724
|
-
* <code>JoinToken</code>. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see
|
|
725
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
726
|
-
* in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
442
|
+
* @see {@link DeleteAttendeeCommand}
|
|
727
443
|
*/
|
|
728
444
|
deleteAttendee(args: DeleteAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttendeeCommandOutput>;
|
|
729
445
|
deleteAttendee(args: DeleteAttendeeCommandInput, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
|
|
730
446
|
deleteAttendee(args: DeleteAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
|
|
731
447
|
/**
|
|
732
|
-
* @
|
|
733
|
-
* <p>Immediately makes a channel and its memberships inaccessible and marks them for
|
|
734
|
-
* deletion. This is an irreversible process.</p>
|
|
735
|
-
*
|
|
736
|
-
* <note>
|
|
737
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
738
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
739
|
-
* the header.</p>
|
|
740
|
-
* </note>
|
|
448
|
+
* @see {@link DeleteChannelCommand}
|
|
741
449
|
*/
|
|
742
450
|
deleteChannel(args: DeleteChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelCommandOutput>;
|
|
743
451
|
deleteChannel(args: DeleteChannelCommandInput, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
|
|
744
452
|
deleteChannel(args: DeleteChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
|
|
745
453
|
/**
|
|
746
|
-
* @
|
|
747
|
-
* <p>Removes a user from a channel's ban list.</p>
|
|
748
|
-
*
|
|
749
|
-
* <note>
|
|
750
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
751
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
752
|
-
* the header.</p>
|
|
753
|
-
* </note>
|
|
454
|
+
* @see {@link DeleteChannelBanCommand}
|
|
754
455
|
*/
|
|
755
456
|
deleteChannelBan(args: DeleteChannelBanCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelBanCommandOutput>;
|
|
756
457
|
deleteChannelBan(args: DeleteChannelBanCommandInput, cb: (err: any, data?: DeleteChannelBanCommandOutput) => void): void;
|
|
757
458
|
deleteChannelBan(args: DeleteChannelBanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelBanCommandOutput) => void): void;
|
|
758
459
|
/**
|
|
759
|
-
* @
|
|
760
|
-
* <p>Removes a member from a channel.</p>
|
|
761
|
-
*
|
|
762
|
-
* <note>
|
|
763
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
764
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
765
|
-
* the header.</p>
|
|
766
|
-
* </note>
|
|
460
|
+
* @see {@link DeleteChannelMembershipCommand}
|
|
767
461
|
*/
|
|
768
462
|
deleteChannelMembership(args: DeleteChannelMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelMembershipCommandOutput>;
|
|
769
463
|
deleteChannelMembership(args: DeleteChannelMembershipCommandInput, cb: (err: any, data?: DeleteChannelMembershipCommandOutput) => void): void;
|
|
770
464
|
deleteChannelMembership(args: DeleteChannelMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelMembershipCommandOutput) => void): void;
|
|
771
465
|
/**
|
|
772
|
-
* @
|
|
773
|
-
* <p>Deletes a channel message. Only admins can perform this action. Deletion makes messages
|
|
774
|
-
* inaccessible immediately. A background process deletes any revisions created by
|
|
775
|
-
* <code>UpdateChannelMessage</code>.</p>
|
|
776
|
-
*
|
|
777
|
-
* <note>
|
|
778
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
779
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
780
|
-
* the header.</p>
|
|
781
|
-
* </note>
|
|
466
|
+
* @see {@link DeleteChannelMessageCommand}
|
|
782
467
|
*/
|
|
783
468
|
deleteChannelMessage(args: DeleteChannelMessageCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelMessageCommandOutput>;
|
|
784
469
|
deleteChannelMessage(args: DeleteChannelMessageCommandInput, cb: (err: any, data?: DeleteChannelMessageCommandOutput) => void): void;
|
|
785
470
|
deleteChannelMessage(args: DeleteChannelMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelMessageCommandOutput) => void): void;
|
|
786
471
|
/**
|
|
787
|
-
* @
|
|
788
|
-
* <p>Deletes a channel moderator.</p>
|
|
789
|
-
*
|
|
790
|
-
* <note>
|
|
791
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
792
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
793
|
-
* the header.</p>
|
|
794
|
-
* </note>
|
|
472
|
+
* @see {@link DeleteChannelModeratorCommand}
|
|
795
473
|
*/
|
|
796
474
|
deleteChannelModerator(args: DeleteChannelModeratorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelModeratorCommandOutput>;
|
|
797
475
|
deleteChannelModerator(args: DeleteChannelModeratorCommandInput, cb: (err: any, data?: DeleteChannelModeratorCommandOutput) => void): void;
|
|
798
476
|
deleteChannelModerator(args: DeleteChannelModeratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelModeratorCommandOutput) => void): void;
|
|
799
477
|
/**
|
|
800
|
-
* @
|
|
801
|
-
* <p>Deletes the events configuration that allows a bot to receive outgoing events.</p>
|
|
478
|
+
* @see {@link DeleteEventsConfigurationCommand}
|
|
802
479
|
*/
|
|
803
480
|
deleteEventsConfiguration(args: DeleteEventsConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventsConfigurationCommandOutput>;
|
|
804
481
|
deleteEventsConfiguration(args: DeleteEventsConfigurationCommandInput, cb: (err: any, data?: DeleteEventsConfigurationCommandOutput) => void): void;
|
|
805
482
|
deleteEventsConfiguration(args: DeleteEventsConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventsConfigurationCommandOutput) => void): void;
|
|
806
483
|
/**
|
|
807
|
-
* @
|
|
808
|
-
* <p>Deletes the media capture pipeline.</p>
|
|
484
|
+
* @see {@link DeleteMediaCapturePipelineCommand}
|
|
809
485
|
*/
|
|
810
486
|
deleteMediaCapturePipeline(args: DeleteMediaCapturePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMediaCapturePipelineCommandOutput>;
|
|
811
487
|
deleteMediaCapturePipeline(args: DeleteMediaCapturePipelineCommandInput, cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void): void;
|
|
812
488
|
deleteMediaCapturePipeline(args: DeleteMediaCapturePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMediaCapturePipelineCommandOutput) => void): void;
|
|
813
489
|
/**
|
|
814
|
-
* @
|
|
815
|
-
* <p>Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from
|
|
816
|
-
* joining the meeting. For more information about the Amazon Chime SDK, see
|
|
817
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a> in the
|
|
818
|
-
* <i>Amazon Chime Developer Guide</i>.</p>
|
|
490
|
+
* @see {@link DeleteMeetingCommand}
|
|
819
491
|
*/
|
|
820
492
|
deleteMeeting(args: DeleteMeetingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMeetingCommandOutput>;
|
|
821
493
|
deleteMeeting(args: DeleteMeetingCommandInput, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
|
|
822
494
|
deleteMeeting(args: DeleteMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
|
|
823
495
|
/**
|
|
824
|
-
* @
|
|
825
|
-
* <p>Moves the specified phone number into the <b>Deletion queue</b>. A
|
|
826
|
-
* phone number must be disassociated from any users or Amazon Chime Voice Connectors
|
|
827
|
-
* before it can be deleted.</p>
|
|
828
|
-
*
|
|
829
|
-
* <p>Deleted phone numbers remain in the
|
|
830
|
-
* <b>Deletion queue</b>
|
|
831
|
-
* for 7 days before they are deleted permanently.</p>
|
|
496
|
+
* @see {@link DeletePhoneNumberCommand}
|
|
832
497
|
*/
|
|
833
498
|
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<DeletePhoneNumberCommandOutput>;
|
|
834
499
|
deletePhoneNumber(args: DeletePhoneNumberCommandInput, cb: (err: any, data?: DeletePhoneNumberCommandOutput) => void): void;
|
|
835
500
|
deletePhoneNumber(args: DeletePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePhoneNumberCommandOutput) => void): void;
|
|
836
501
|
/**
|
|
837
|
-
* @
|
|
838
|
-
* <p>Deletes the specified proxy session from the specified Amazon Chime Voice Connector.</p>
|
|
502
|
+
* @see {@link DeleteProxySessionCommand}
|
|
839
503
|
*/
|
|
840
504
|
deleteProxySession(args: DeleteProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProxySessionCommandOutput>;
|
|
841
505
|
deleteProxySession(args: DeleteProxySessionCommandInput, cb: (err: any, data?: DeleteProxySessionCommandOutput) => void): void;
|
|
842
506
|
deleteProxySession(args: DeleteProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProxySessionCommandOutput) => void): void;
|
|
843
507
|
/**
|
|
844
|
-
* @
|
|
845
|
-
* <p>Deletes a chat room in an Amazon Chime Enterprise account.</p>
|
|
508
|
+
* @see {@link DeleteRoomCommand}
|
|
846
509
|
*/
|
|
847
510
|
deleteRoom(args: DeleteRoomCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRoomCommandOutput>;
|
|
848
511
|
deleteRoom(args: DeleteRoomCommandInput, cb: (err: any, data?: DeleteRoomCommandOutput) => void): void;
|
|
849
512
|
deleteRoom(args: DeleteRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRoomCommandOutput) => void): void;
|
|
850
513
|
/**
|
|
851
|
-
* @
|
|
852
|
-
* <p>Removes a member from a chat room in an Amazon Chime Enterprise account.</p>
|
|
514
|
+
* @see {@link DeleteRoomMembershipCommand}
|
|
853
515
|
*/
|
|
854
516
|
deleteRoomMembership(args: DeleteRoomMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRoomMembershipCommandOutput>;
|
|
855
517
|
deleteRoomMembership(args: DeleteRoomMembershipCommandInput, cb: (err: any, data?: DeleteRoomMembershipCommandOutput) => void): void;
|
|
856
518
|
deleteRoomMembership(args: DeleteRoomMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRoomMembershipCommandOutput) => void): void;
|
|
857
519
|
/**
|
|
858
|
-
* @
|
|
859
|
-
* <p>Deletes a SIP media application.</p>
|
|
520
|
+
* @see {@link DeleteSipMediaApplicationCommand}
|
|
860
521
|
*/
|
|
861
522
|
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSipMediaApplicationCommandOutput>;
|
|
862
523
|
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, cb: (err: any, data?: DeleteSipMediaApplicationCommandOutput) => void): void;
|
|
863
524
|
deleteSipMediaApplication(args: DeleteSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSipMediaApplicationCommandOutput) => void): void;
|
|
864
525
|
/**
|
|
865
|
-
* @
|
|
866
|
-
* <p>Deletes a SIP rule. You must disable a SIP rule before you can delete it.</p>
|
|
526
|
+
* @see {@link DeleteSipRuleCommand}
|
|
867
527
|
*/
|
|
868
528
|
deleteSipRule(args: DeleteSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSipRuleCommandOutput>;
|
|
869
529
|
deleteSipRule(args: DeleteSipRuleCommandInput, cb: (err: any, data?: DeleteSipRuleCommandOutput) => void): void;
|
|
870
530
|
deleteSipRule(args: DeleteSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSipRuleCommandOutput) => void): void;
|
|
871
531
|
/**
|
|
872
|
-
* @
|
|
873
|
-
* <p>Deletes the specified Amazon Chime Voice Connector. Any phone numbers associated with the
|
|
874
|
-
* Amazon Chime Voice Connector must be disassociated from it before it can be
|
|
875
|
-
* deleted.</p>
|
|
532
|
+
* @see {@link DeleteVoiceConnectorCommand}
|
|
876
533
|
*/
|
|
877
534
|
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorCommandOutput>;
|
|
878
535
|
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, cb: (err: any, data?: DeleteVoiceConnectorCommandOutput) => void): void;
|
|
879
536
|
deleteVoiceConnector(args: DeleteVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorCommandOutput) => void): void;
|
|
880
537
|
/**
|
|
881
|
-
* @
|
|
882
|
-
* <p>Deletes the emergency calling configuration details from the specified Amazon Chime Voice Connector.</p>
|
|
538
|
+
* @see {@link DeleteVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
883
539
|
*/
|
|
884
540
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
885
541
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
886
542
|
deleteVoiceConnectorEmergencyCallingConfiguration(args: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
887
543
|
/**
|
|
888
|
-
* @
|
|
889
|
-
* <p>Deletes the specified Amazon Chime Voice Connector group. Any
|
|
890
|
-
* <code>VoiceConnectorItems</code>
|
|
891
|
-
* and phone numbers associated with the group must be removed before it can be deleted.</p>
|
|
544
|
+
* @see {@link DeleteVoiceConnectorGroupCommand}
|
|
892
545
|
*/
|
|
893
546
|
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorGroupCommandOutput>;
|
|
894
547
|
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, cb: (err: any, data?: DeleteVoiceConnectorGroupCommandOutput) => void): void;
|
|
895
548
|
deleteVoiceConnectorGroup(args: DeleteVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorGroupCommandOutput) => void): void;
|
|
896
549
|
/**
|
|
897
|
-
* @
|
|
898
|
-
* <p>Deletes the origination settings for the specified Amazon Chime Voice Connector.</p>
|
|
899
|
-
*
|
|
900
|
-
* <note>
|
|
901
|
-
* <p>If emergency calling is configured for the Amazon Chime Voice Connector, it must be deleted prior to deleting the origination settings.</p>
|
|
902
|
-
* </note>
|
|
550
|
+
* @see {@link DeleteVoiceConnectorOriginationCommand}
|
|
903
551
|
*/
|
|
904
552
|
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorOriginationCommandOutput>;
|
|
905
553
|
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorOriginationCommandOutput) => void): void;
|
|
906
554
|
deleteVoiceConnectorOrigination(args: DeleteVoiceConnectorOriginationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorOriginationCommandOutput) => void): void;
|
|
907
555
|
/**
|
|
908
|
-
* @
|
|
909
|
-
* <p>Deletes the proxy configuration from the specified Amazon Chime Voice Connector.</p>
|
|
556
|
+
* @see {@link DeleteVoiceConnectorProxyCommand}
|
|
910
557
|
*/
|
|
911
558
|
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorProxyCommandOutput>;
|
|
912
559
|
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, cb: (err: any, data?: DeleteVoiceConnectorProxyCommandOutput) => void): void;
|
|
913
560
|
deleteVoiceConnectorProxy(args: DeleteVoiceConnectorProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorProxyCommandOutput) => void): void;
|
|
914
561
|
/**
|
|
915
|
-
* @
|
|
916
|
-
* <p>Deletes the streaming configuration for the specified Amazon Chime Voice Connector.</p>
|
|
562
|
+
* @see {@link DeleteVoiceConnectorStreamingConfigurationCommand}
|
|
917
563
|
*/
|
|
918
564
|
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
919
565
|
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
920
566
|
deleteVoiceConnectorStreamingConfiguration(args: DeleteVoiceConnectorStreamingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
921
567
|
/**
|
|
922
|
-
* @
|
|
923
|
-
* <p>Deletes the termination settings for the specified Amazon Chime Voice Connector.</p>
|
|
924
|
-
*
|
|
925
|
-
* <note>
|
|
926
|
-
* <p>If emergency calling is configured for the Amazon Chime Voice Connector, it must be deleted prior to deleting the termination settings.</p>
|
|
927
|
-
* </note>
|
|
568
|
+
* @see {@link DeleteVoiceConnectorTerminationCommand}
|
|
928
569
|
*/
|
|
929
570
|
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorTerminationCommandOutput>;
|
|
930
571
|
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, cb: (err: any, data?: DeleteVoiceConnectorTerminationCommandOutput) => void): void;
|
|
931
572
|
deleteVoiceConnectorTermination(args: DeleteVoiceConnectorTerminationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorTerminationCommandOutput) => void): void;
|
|
932
573
|
/**
|
|
933
|
-
* @
|
|
934
|
-
* <p>Deletes the specified SIP credentials used by your equipment to authenticate during call termination.</p>
|
|
574
|
+
* @see {@link DeleteVoiceConnectorTerminationCredentialsCommand}
|
|
935
575
|
*/
|
|
936
576
|
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
937
577
|
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: DeleteVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
938
578
|
deleteVoiceConnectorTerminationCredentials(args: DeleteVoiceConnectorTerminationCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
939
579
|
/**
|
|
940
|
-
* @
|
|
941
|
-
* <p>Returns the full details of an <code>AppInstance</code>.</p>
|
|
580
|
+
* @see {@link DescribeAppInstanceCommand}
|
|
942
581
|
*/
|
|
943
582
|
describeAppInstance(args: DescribeAppInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAppInstanceCommandOutput>;
|
|
944
583
|
describeAppInstance(args: DescribeAppInstanceCommandInput, cb: (err: any, data?: DescribeAppInstanceCommandOutput) => void): void;
|
|
945
584
|
describeAppInstance(args: DescribeAppInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAppInstanceCommandOutput) => void): void;
|
|
946
585
|
/**
|
|
947
|
-
* @
|
|
948
|
-
* <p>Returns the full details of an <code>AppInstanceAdmin</code>.</p>
|
|
586
|
+
* @see {@link DescribeAppInstanceAdminCommand}
|
|
949
587
|
*/
|
|
950
588
|
describeAppInstanceAdmin(args: DescribeAppInstanceAdminCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAppInstanceAdminCommandOutput>;
|
|
951
589
|
describeAppInstanceAdmin(args: DescribeAppInstanceAdminCommandInput, cb: (err: any, data?: DescribeAppInstanceAdminCommandOutput) => void): void;
|
|
952
590
|
describeAppInstanceAdmin(args: DescribeAppInstanceAdminCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAppInstanceAdminCommandOutput) => void): void;
|
|
953
591
|
/**
|
|
954
|
-
* @
|
|
955
|
-
* <p>Returns the full details of an <code>AppInstanceUser</code>.</p>
|
|
592
|
+
* @see {@link DescribeAppInstanceUserCommand}
|
|
956
593
|
*/
|
|
957
594
|
describeAppInstanceUser(args: DescribeAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAppInstanceUserCommandOutput>;
|
|
958
595
|
describeAppInstanceUser(args: DescribeAppInstanceUserCommandInput, cb: (err: any, data?: DescribeAppInstanceUserCommandOutput) => void): void;
|
|
959
596
|
describeAppInstanceUser(args: DescribeAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAppInstanceUserCommandOutput) => void): void;
|
|
960
597
|
/**
|
|
961
|
-
* @
|
|
962
|
-
* <p>Returns the full details of a channel in an Amazon Chime
|
|
963
|
-
* <code>AppInstance</code>.</p>
|
|
964
|
-
*
|
|
965
|
-
* <note>
|
|
966
|
-
*
|
|
967
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
968
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
969
|
-
* the header.</p>
|
|
970
|
-
* </note>
|
|
598
|
+
* @see {@link DescribeChannelCommand}
|
|
971
599
|
*/
|
|
972
600
|
describeChannel(args: DescribeChannelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelCommandOutput>;
|
|
973
601
|
describeChannel(args: DescribeChannelCommandInput, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
|
|
974
602
|
describeChannel(args: DescribeChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
|
|
975
603
|
/**
|
|
976
|
-
* @
|
|
977
|
-
* <p>Returns the full details of a channel ban.</p>
|
|
978
|
-
*
|
|
979
|
-
* <note>
|
|
980
|
-
*
|
|
981
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
982
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
983
|
-
* the header.</p>
|
|
984
|
-
* </note>
|
|
604
|
+
* @see {@link DescribeChannelBanCommand}
|
|
985
605
|
*/
|
|
986
606
|
describeChannelBan(args: DescribeChannelBanCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelBanCommandOutput>;
|
|
987
607
|
describeChannelBan(args: DescribeChannelBanCommandInput, cb: (err: any, data?: DescribeChannelBanCommandOutput) => void): void;
|
|
988
608
|
describeChannelBan(args: DescribeChannelBanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelBanCommandOutput) => void): void;
|
|
989
609
|
/**
|
|
990
|
-
* @
|
|
991
|
-
* <p>Returns the full details of a user's channel membership.</p>
|
|
992
|
-
* <note>
|
|
993
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
994
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
995
|
-
* the header.</p>
|
|
996
|
-
* </note>
|
|
610
|
+
* @see {@link DescribeChannelMembershipCommand}
|
|
997
611
|
*/
|
|
998
612
|
describeChannelMembership(args: DescribeChannelMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelMembershipCommandOutput>;
|
|
999
613
|
describeChannelMembership(args: DescribeChannelMembershipCommandInput, cb: (err: any, data?: DescribeChannelMembershipCommandOutput) => void): void;
|
|
1000
614
|
describeChannelMembership(args: DescribeChannelMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelMembershipCommandOutput) => void): void;
|
|
1001
615
|
/**
|
|
1002
|
-
* @
|
|
1003
|
-
* <p> Returns the details of a channel based on the membership of the specified
|
|
1004
|
-
* <code>AppInstanceUser</code>.</p>
|
|
1005
|
-
*
|
|
1006
|
-
* <note>
|
|
1007
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1008
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1009
|
-
* the header.</p>
|
|
1010
|
-
* </note>
|
|
616
|
+
* @see {@link DescribeChannelMembershipForAppInstanceUserCommand}
|
|
1011
617
|
*/
|
|
1012
618
|
describeChannelMembershipForAppInstanceUser(args: DescribeChannelMembershipForAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelMembershipForAppInstanceUserCommandOutput>;
|
|
1013
619
|
describeChannelMembershipForAppInstanceUser(args: DescribeChannelMembershipForAppInstanceUserCommandInput, cb: (err: any, data?: DescribeChannelMembershipForAppInstanceUserCommandOutput) => void): void;
|
|
1014
620
|
describeChannelMembershipForAppInstanceUser(args: DescribeChannelMembershipForAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelMembershipForAppInstanceUserCommandOutput) => void): void;
|
|
1015
621
|
/**
|
|
1016
|
-
* @
|
|
1017
|
-
* <p>Returns the full details of a channel moderated by the specified
|
|
1018
|
-
* <code>AppInstanceUser</code>.</p>
|
|
1019
|
-
*
|
|
1020
|
-
* <note>
|
|
1021
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1022
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1023
|
-
* the header.</p>
|
|
1024
|
-
* </note>
|
|
622
|
+
* @see {@link DescribeChannelModeratedByAppInstanceUserCommand}
|
|
1025
623
|
*/
|
|
1026
624
|
describeChannelModeratedByAppInstanceUser(args: DescribeChannelModeratedByAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelModeratedByAppInstanceUserCommandOutput>;
|
|
1027
625
|
describeChannelModeratedByAppInstanceUser(args: DescribeChannelModeratedByAppInstanceUserCommandInput, cb: (err: any, data?: DescribeChannelModeratedByAppInstanceUserCommandOutput) => void): void;
|
|
1028
626
|
describeChannelModeratedByAppInstanceUser(args: DescribeChannelModeratedByAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelModeratedByAppInstanceUserCommandOutput) => void): void;
|
|
1029
627
|
/**
|
|
1030
|
-
* @
|
|
1031
|
-
* <p>Returns the full details of a single ChannelModerator.</p>
|
|
1032
|
-
* <note>
|
|
1033
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1034
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1035
|
-
* the header.</p>
|
|
1036
|
-
* </note>
|
|
628
|
+
* @see {@link DescribeChannelModeratorCommand}
|
|
1037
629
|
*/
|
|
1038
630
|
describeChannelModerator(args: DescribeChannelModeratorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelModeratorCommandOutput>;
|
|
1039
631
|
describeChannelModerator(args: DescribeChannelModeratorCommandInput, cb: (err: any, data?: DescribeChannelModeratorCommandOutput) => void): void;
|
|
1040
632
|
describeChannelModerator(args: DescribeChannelModeratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelModeratorCommandOutput) => void): void;
|
|
1041
633
|
/**
|
|
1042
|
-
* @
|
|
1043
|
-
* <p>Disassociates the primary provisioned phone number from the specified Amazon Chime user.</p>
|
|
634
|
+
* @see {@link DisassociatePhoneNumberFromUserCommand}
|
|
1044
635
|
*/
|
|
1045
636
|
disassociatePhoneNumberFromUser(args: DisassociatePhoneNumberFromUserCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumberFromUserCommandOutput>;
|
|
1046
637
|
disassociatePhoneNumberFromUser(args: DisassociatePhoneNumberFromUserCommandInput, cb: (err: any, data?: DisassociatePhoneNumberFromUserCommandOutput) => void): void;
|
|
1047
638
|
disassociatePhoneNumberFromUser(args: DisassociatePhoneNumberFromUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumberFromUserCommandOutput) => void): void;
|
|
1048
639
|
/**
|
|
1049
|
-
* @
|
|
1050
|
-
* <p>Disassociates the specified phone numbers from the specified Amazon Chime Voice Connector.</p>
|
|
640
|
+
* @see {@link DisassociatePhoneNumbersFromVoiceConnectorCommand}
|
|
1051
641
|
*/
|
|
1052
642
|
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumbersFromVoiceConnectorCommandOutput>;
|
|
1053
643
|
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorCommandOutput) => void): void;
|
|
1054
644
|
disassociatePhoneNumbersFromVoiceConnector(args: DisassociatePhoneNumbersFromVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorCommandOutput) => void): void;
|
|
1055
645
|
/**
|
|
1056
|
-
* @
|
|
1057
|
-
* <p>Disassociates the specified phone numbers from the specified Amazon Chime Voice Connector group.</p>
|
|
646
|
+
* @see {@link DisassociatePhoneNumbersFromVoiceConnectorGroupCommand}
|
|
1058
647
|
*/
|
|
1059
648
|
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput>;
|
|
1060
649
|
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput) => void): void;
|
|
1061
650
|
disassociatePhoneNumbersFromVoiceConnectorGroup(args: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociatePhoneNumbersFromVoiceConnectorGroupCommandOutput) => void): void;
|
|
1062
651
|
/**
|
|
1063
|
-
* @
|
|
1064
|
-
* <p>Disassociates the specified sign-in delegate groups from the specified Amazon Chime account.</p>
|
|
652
|
+
* @see {@link DisassociateSigninDelegateGroupsFromAccountCommand}
|
|
1065
653
|
*/
|
|
1066
654
|
disassociateSigninDelegateGroupsFromAccount(args: DisassociateSigninDelegateGroupsFromAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateSigninDelegateGroupsFromAccountCommandOutput>;
|
|
1067
655
|
disassociateSigninDelegateGroupsFromAccount(args: DisassociateSigninDelegateGroupsFromAccountCommandInput, cb: (err: any, data?: DisassociateSigninDelegateGroupsFromAccountCommandOutput) => void): void;
|
|
1068
656
|
disassociateSigninDelegateGroupsFromAccount(args: DisassociateSigninDelegateGroupsFromAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateSigninDelegateGroupsFromAccountCommandOutput) => void): void;
|
|
1069
657
|
/**
|
|
1070
|
-
* @
|
|
1071
|
-
* <p>Retrieves details for the specified Amazon Chime account, such as account type and supported
|
|
1072
|
-
* licenses.</p>
|
|
658
|
+
* @see {@link GetAccountCommand}
|
|
1073
659
|
*/
|
|
1074
660
|
getAccount(args: GetAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountCommandOutput>;
|
|
1075
661
|
getAccount(args: GetAccountCommandInput, cb: (err: any, data?: GetAccountCommandOutput) => void): void;
|
|
1076
662
|
getAccount(args: GetAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountCommandOutput) => void): void;
|
|
1077
663
|
/**
|
|
1078
|
-
* @
|
|
1079
|
-
* <p>Retrieves account settings for the specified Amazon Chime account ID, such as remote control
|
|
1080
|
-
* and dialout settings. For more information about these settings, see
|
|
1081
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/ag/policies.html">Use the Policies Page</a> in the <i>Amazon Chime Administration Guide</i>.
|
|
1082
|
-
* </p>
|
|
664
|
+
* @see {@link GetAccountSettingsCommand}
|
|
1083
665
|
*/
|
|
1084
666
|
getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSettingsCommandOutput>;
|
|
1085
667
|
getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
1086
668
|
getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
1087
669
|
/**
|
|
1088
|
-
* @
|
|
1089
|
-
* <p>Gets the retention settings for an <code>AppInstance</code>.</p>
|
|
670
|
+
* @see {@link GetAppInstanceRetentionSettingsCommand}
|
|
1090
671
|
*/
|
|
1091
672
|
getAppInstanceRetentionSettings(args: GetAppInstanceRetentionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAppInstanceRetentionSettingsCommandOutput>;
|
|
1092
673
|
getAppInstanceRetentionSettings(args: GetAppInstanceRetentionSettingsCommandInput, cb: (err: any, data?: GetAppInstanceRetentionSettingsCommandOutput) => void): void;
|
|
1093
674
|
getAppInstanceRetentionSettings(args: GetAppInstanceRetentionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppInstanceRetentionSettingsCommandOutput) => void): void;
|
|
1094
675
|
/**
|
|
1095
|
-
* @
|
|
1096
|
-
* <p>Gets the streaming settings for an <code>AppInstance</code>.</p>
|
|
676
|
+
* @see {@link GetAppInstanceStreamingConfigurationsCommand}
|
|
1097
677
|
*/
|
|
1098
678
|
getAppInstanceStreamingConfigurations(args: GetAppInstanceStreamingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<GetAppInstanceStreamingConfigurationsCommandOutput>;
|
|
1099
679
|
getAppInstanceStreamingConfigurations(args: GetAppInstanceStreamingConfigurationsCommandInput, cb: (err: any, data?: GetAppInstanceStreamingConfigurationsCommandOutput) => void): void;
|
|
1100
680
|
getAppInstanceStreamingConfigurations(args: GetAppInstanceStreamingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppInstanceStreamingConfigurationsCommandOutput) => void): void;
|
|
1101
681
|
/**
|
|
1102
|
-
* @
|
|
1103
|
-
* <p>
|
|
1104
|
-
* Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see
|
|
1105
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
1106
|
-
* in the
|
|
1107
|
-
* <i>Amazon Chime Developer Guide</i>
|
|
1108
|
-
* .
|
|
1109
|
-
* </p>
|
|
682
|
+
* @see {@link GetAttendeeCommand}
|
|
1110
683
|
*/
|
|
1111
684
|
getAttendee(args: GetAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<GetAttendeeCommandOutput>;
|
|
1112
685
|
getAttendee(args: GetAttendeeCommandInput, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
|
|
1113
686
|
getAttendee(args: GetAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
|
|
1114
687
|
/**
|
|
1115
|
-
* @
|
|
1116
|
-
* <p>Retrieves details for the specified bot, such as bot email address, bot type, status, and display name.</p>
|
|
688
|
+
* @see {@link GetBotCommand}
|
|
1117
689
|
*/
|
|
1118
690
|
getBot(args: GetBotCommandInput, options?: __HttpHandlerOptions): Promise<GetBotCommandOutput>;
|
|
1119
691
|
getBot(args: GetBotCommandInput, cb: (err: any, data?: GetBotCommandOutput) => void): void;
|
|
1120
692
|
getBot(args: GetBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBotCommandOutput) => void): void;
|
|
1121
693
|
/**
|
|
1122
|
-
* @
|
|
1123
|
-
* <p>Gets the full details of a channel message.</p>
|
|
1124
|
-
*
|
|
1125
|
-
* <note>
|
|
1126
|
-
* <p>The x-amz-chime-bearer request header is mandatory. Use the
|
|
1127
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1128
|
-
* the header.</p>
|
|
1129
|
-
* </note>
|
|
694
|
+
* @see {@link GetChannelMessageCommand}
|
|
1130
695
|
*/
|
|
1131
696
|
getChannelMessage(args: GetChannelMessageCommandInput, options?: __HttpHandlerOptions): Promise<GetChannelMessageCommandOutput>;
|
|
1132
697
|
getChannelMessage(args: GetChannelMessageCommandInput, cb: (err: any, data?: GetChannelMessageCommandOutput) => void): void;
|
|
1133
698
|
getChannelMessage(args: GetChannelMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetChannelMessageCommandOutput) => void): void;
|
|
1134
699
|
/**
|
|
1135
|
-
* @
|
|
1136
|
-
* <p>Gets details for an events configuration that allows a bot to receive outgoing events, such as an HTTPS endpoint or Lambda function ARN.</p>
|
|
700
|
+
* @see {@link GetEventsConfigurationCommand}
|
|
1137
701
|
*/
|
|
1138
702
|
getEventsConfiguration(args: GetEventsConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetEventsConfigurationCommandOutput>;
|
|
1139
703
|
getEventsConfiguration(args: GetEventsConfigurationCommandInput, cb: (err: any, data?: GetEventsConfigurationCommandOutput) => void): void;
|
|
1140
704
|
getEventsConfiguration(args: GetEventsConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEventsConfigurationCommandOutput) => void): void;
|
|
1141
705
|
/**
|
|
1142
|
-
* @
|
|
1143
|
-
* <p>Retrieves global settings for the administrator's AWS account, such as Amazon Chime Business
|
|
1144
|
-
* Calling and Amazon Chime Voice Connector settings.</p>
|
|
706
|
+
* @see {@link GetGlobalSettingsCommand}
|
|
1145
707
|
*/
|
|
1146
708
|
getGlobalSettings(args: GetGlobalSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetGlobalSettingsCommandOutput>;
|
|
1147
709
|
getGlobalSettings(args: GetGlobalSettingsCommandInput, cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void): void;
|
|
1148
710
|
getGlobalSettings(args: GetGlobalSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGlobalSettingsCommandOutput) => void): void;
|
|
1149
711
|
/**
|
|
1150
|
-
* @
|
|
1151
|
-
* <p>Gets an existing media capture pipeline.</p>
|
|
712
|
+
* @see {@link GetMediaCapturePipelineCommand}
|
|
1152
713
|
*/
|
|
1153
714
|
getMediaCapturePipeline(args: GetMediaCapturePipelineCommandInput, options?: __HttpHandlerOptions): Promise<GetMediaCapturePipelineCommandOutput>;
|
|
1154
715
|
getMediaCapturePipeline(args: GetMediaCapturePipelineCommandInput, cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void): void;
|
|
1155
716
|
getMediaCapturePipeline(args: GetMediaCapturePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMediaCapturePipelineCommandOutput) => void): void;
|
|
1156
717
|
/**
|
|
1157
|
-
* @
|
|
1158
|
-
* <p>
|
|
1159
|
-
* Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see
|
|
1160
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
1161
|
-
* in the
|
|
1162
|
-
* <i>Amazon Chime Developer Guide</i>
|
|
1163
|
-
* .
|
|
1164
|
-
* </p>
|
|
718
|
+
* @see {@link GetMeetingCommand}
|
|
1165
719
|
*/
|
|
1166
720
|
getMeeting(args: GetMeetingCommandInput, options?: __HttpHandlerOptions): Promise<GetMeetingCommandOutput>;
|
|
1167
721
|
getMeeting(args: GetMeetingCommandInput, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
|
|
1168
722
|
getMeeting(args: GetMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
|
|
1169
723
|
/**
|
|
1170
|
-
* @
|
|
1171
|
-
* <p>The details of the endpoint for the messaging session.</p>
|
|
724
|
+
* @see {@link GetMessagingSessionEndpointCommand}
|
|
1172
725
|
*/
|
|
1173
726
|
getMessagingSessionEndpoint(args: GetMessagingSessionEndpointCommandInput, options?: __HttpHandlerOptions): Promise<GetMessagingSessionEndpointCommandOutput>;
|
|
1174
727
|
getMessagingSessionEndpoint(args: GetMessagingSessionEndpointCommandInput, cb: (err: any, data?: GetMessagingSessionEndpointCommandOutput) => void): void;
|
|
1175
728
|
getMessagingSessionEndpoint(args: GetMessagingSessionEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMessagingSessionEndpointCommandOutput) => void): void;
|
|
1176
729
|
/**
|
|
1177
|
-
* @
|
|
1178
|
-
* <p>Retrieves details for the specified phone number ID, such as associations, capabilities, and product type.</p>
|
|
730
|
+
* @see {@link GetPhoneNumberCommand}
|
|
1179
731
|
*/
|
|
1180
732
|
getPhoneNumber(args: GetPhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<GetPhoneNumberCommandOutput>;
|
|
1181
733
|
getPhoneNumber(args: GetPhoneNumberCommandInput, cb: (err: any, data?: GetPhoneNumberCommandOutput) => void): void;
|
|
1182
734
|
getPhoneNumber(args: GetPhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPhoneNumberCommandOutput) => void): void;
|
|
1183
735
|
/**
|
|
1184
|
-
* @
|
|
1185
|
-
* <p>Retrieves details for the specified phone number order, such as the order creation timestamp, phone
|
|
1186
|
-
* numbers in E.164 format, product type, and order status.</p>
|
|
736
|
+
* @see {@link GetPhoneNumberOrderCommand}
|
|
1187
737
|
*/
|
|
1188
738
|
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetPhoneNumberOrderCommandOutput>;
|
|
1189
739
|
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, cb: (err: any, data?: GetPhoneNumberOrderCommandOutput) => void): void;
|
|
1190
740
|
getPhoneNumberOrder(args: GetPhoneNumberOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPhoneNumberOrderCommandOutput) => void): void;
|
|
1191
741
|
/**
|
|
1192
|
-
* @
|
|
1193
|
-
* <p>Retrieves the phone number settings for the administrator's AWS account, such as the default outbound calling name.</p>
|
|
742
|
+
* @see {@link GetPhoneNumberSettingsCommand}
|
|
1194
743
|
*/
|
|
1195
744
|
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetPhoneNumberSettingsCommandOutput>;
|
|
1196
745
|
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, cb: (err: any, data?: GetPhoneNumberSettingsCommandOutput) => void): void;
|
|
1197
746
|
getPhoneNumberSettings(args: GetPhoneNumberSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPhoneNumberSettingsCommandOutput) => void): void;
|
|
1198
747
|
/**
|
|
1199
|
-
* @
|
|
1200
|
-
* <p>Gets the specified proxy session details for the specified Amazon Chime Voice Connector.</p>
|
|
748
|
+
* @see {@link GetProxySessionCommand}
|
|
1201
749
|
*/
|
|
1202
750
|
getProxySession(args: GetProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<GetProxySessionCommandOutput>;
|
|
1203
751
|
getProxySession(args: GetProxySessionCommandInput, cb: (err: any, data?: GetProxySessionCommandOutput) => void): void;
|
|
1204
752
|
getProxySession(args: GetProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProxySessionCommandOutput) => void): void;
|
|
1205
753
|
/**
|
|
1206
|
-
* @
|
|
1207
|
-
* <p>
|
|
1208
|
-
* Gets the retention settings for the specified Amazon Chime Enterprise account. For more information about retention settings, see
|
|
1209
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/ag/chat-retention.html">Managing Chat Retention Policies</a> in the <i>Amazon Chime Administration Guide</i>.
|
|
1210
|
-
* </p>
|
|
754
|
+
* @see {@link GetRetentionSettingsCommand}
|
|
1211
755
|
*/
|
|
1212
756
|
getRetentionSettings(args: GetRetentionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetRetentionSettingsCommandOutput>;
|
|
1213
757
|
getRetentionSettings(args: GetRetentionSettingsCommandInput, cb: (err: any, data?: GetRetentionSettingsCommandOutput) => void): void;
|
|
1214
758
|
getRetentionSettings(args: GetRetentionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRetentionSettingsCommandOutput) => void): void;
|
|
1215
759
|
/**
|
|
1216
|
-
* @
|
|
1217
|
-
* <p>Retrieves room details, such as the room name, for a room in an Amazon Chime Enterprise account.</p>
|
|
760
|
+
* @see {@link GetRoomCommand}
|
|
1218
761
|
*/
|
|
1219
762
|
getRoom(args: GetRoomCommandInput, options?: __HttpHandlerOptions): Promise<GetRoomCommandOutput>;
|
|
1220
763
|
getRoom(args: GetRoomCommandInput, cb: (err: any, data?: GetRoomCommandOutput) => void): void;
|
|
1221
764
|
getRoom(args: GetRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRoomCommandOutput) => void): void;
|
|
1222
765
|
/**
|
|
1223
|
-
* @
|
|
1224
|
-
* <p>Retrieves the information for a SIP media application, including name, AWS Region, and endpoints.</p>
|
|
766
|
+
* @see {@link GetSipMediaApplicationCommand}
|
|
1225
767
|
*/
|
|
1226
768
|
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetSipMediaApplicationCommandOutput>;
|
|
1227
769
|
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, cb: (err: any, data?: GetSipMediaApplicationCommandOutput) => void): void;
|
|
1228
770
|
getSipMediaApplication(args: GetSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSipMediaApplicationCommandOutput) => void): void;
|
|
1229
771
|
/**
|
|
1230
|
-
* @
|
|
1231
|
-
* <p>Returns the logging configuration for the specified SIP media application.</p>
|
|
772
|
+
* @see {@link GetSipMediaApplicationLoggingConfigurationCommand}
|
|
1232
773
|
*/
|
|
1233
774
|
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetSipMediaApplicationLoggingConfigurationCommandOutput>;
|
|
1234
775
|
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, cb: (err: any, data?: GetSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
1235
776
|
getSipMediaApplicationLoggingConfiguration(args: GetSipMediaApplicationLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
1236
777
|
/**
|
|
1237
|
-
* @
|
|
1238
|
-
* <p>Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target endpoints.</p>
|
|
778
|
+
* @see {@link GetSipRuleCommand}
|
|
1239
779
|
*/
|
|
1240
780
|
getSipRule(args: GetSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetSipRuleCommandOutput>;
|
|
1241
781
|
getSipRule(args: GetSipRuleCommandInput, cb: (err: any, data?: GetSipRuleCommandOutput) => void): void;
|
|
1242
782
|
getSipRule(args: GetSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSipRuleCommandOutput) => void): void;
|
|
1243
783
|
/**
|
|
1244
|
-
* @
|
|
1245
|
-
* <p>Retrieves details for the specified user ID, such as primary email address, license type,and personal meeting PIN.</p>
|
|
1246
|
-
*
|
|
1247
|
-
* <p>
|
|
1248
|
-
* To retrieve user details with an email address instead of a user ID, use the
|
|
1249
|
-
* <a>ListUsers</a> action, and then filter by email address.
|
|
1250
|
-
* </p>
|
|
784
|
+
* @see {@link GetUserCommand}
|
|
1251
785
|
*/
|
|
1252
786
|
getUser(args: GetUserCommandInput, options?: __HttpHandlerOptions): Promise<GetUserCommandOutput>;
|
|
1253
787
|
getUser(args: GetUserCommandInput, cb: (err: any, data?: GetUserCommandOutput) => void): void;
|
|
1254
788
|
getUser(args: GetUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserCommandOutput) => void): void;
|
|
1255
789
|
/**
|
|
1256
|
-
* @
|
|
1257
|
-
* <p>Retrieves settings for the specified user ID, such as any associated phone number settings.</p>
|
|
790
|
+
* @see {@link GetUserSettingsCommand}
|
|
1258
791
|
*/
|
|
1259
792
|
getUserSettings(args: GetUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetUserSettingsCommandOutput>;
|
|
1260
793
|
getUserSettings(args: GetUserSettingsCommandInput, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
1261
794
|
getUserSettings(args: GetUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
1262
795
|
/**
|
|
1263
|
-
* @
|
|
1264
|
-
* <p>Retrieves details for the specified Amazon Chime Voice Connector, such as timestamps,name, outbound host, and encryption requirements.</p>
|
|
796
|
+
* @see {@link GetVoiceConnectorCommand}
|
|
1265
797
|
*/
|
|
1266
798
|
getVoiceConnector(args: GetVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorCommandOutput>;
|
|
1267
799
|
getVoiceConnector(args: GetVoiceConnectorCommandInput, cb: (err: any, data?: GetVoiceConnectorCommandOutput) => void): void;
|
|
1268
800
|
getVoiceConnector(args: GetVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorCommandOutput) => void): void;
|
|
1269
801
|
/**
|
|
1270
|
-
* @
|
|
1271
|
-
* <p>Gets the emergency calling configuration details for the specified Amazon Chime Voice Connector.</p>
|
|
802
|
+
* @see {@link GetVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
1272
803
|
*/
|
|
1273
804
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
1274
805
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
1275
806
|
getVoiceConnectorEmergencyCallingConfiguration(args: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
1276
807
|
/**
|
|
1277
|
-
* @
|
|
1278
|
-
* <p>
|
|
1279
|
-
* Retrieves details for the specified Amazon Chime Voice Connector group, such as timestamps,name, and associated <code>VoiceConnectorItems</code>.</p>
|
|
808
|
+
* @see {@link GetVoiceConnectorGroupCommand}
|
|
1280
809
|
*/
|
|
1281
810
|
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorGroupCommandOutput>;
|
|
1282
811
|
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, cb: (err: any, data?: GetVoiceConnectorGroupCommandOutput) => void): void;
|
|
1283
812
|
getVoiceConnectorGroup(args: GetVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorGroupCommandOutput) => void): void;
|
|
1284
813
|
/**
|
|
1285
|
-
* @
|
|
1286
|
-
* <p>Retrieves the logging configuration details for the specified Amazon Chime Voice Connector. Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.</p>
|
|
814
|
+
* @see {@link GetVoiceConnectorLoggingConfigurationCommand}
|
|
1287
815
|
*/
|
|
1288
816
|
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorLoggingConfigurationCommandOutput>;
|
|
1289
817
|
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
1290
818
|
getVoiceConnectorLoggingConfiguration(args: GetVoiceConnectorLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
1291
819
|
/**
|
|
1292
|
-
* @
|
|
1293
|
-
* <p>Retrieves origination setting details for the specified Amazon Chime Voice Connector.</p>
|
|
820
|
+
* @see {@link GetVoiceConnectorOriginationCommand}
|
|
1294
821
|
*/
|
|
1295
822
|
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorOriginationCommandOutput>;
|
|
1296
823
|
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, cb: (err: any, data?: GetVoiceConnectorOriginationCommandOutput) => void): void;
|
|
1297
824
|
getVoiceConnectorOrigination(args: GetVoiceConnectorOriginationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorOriginationCommandOutput) => void): void;
|
|
1298
825
|
/**
|
|
1299
|
-
* @
|
|
1300
|
-
* <p>Gets the proxy configuration details for the specified Amazon Chime Voice Connector.</p>
|
|
826
|
+
* @see {@link GetVoiceConnectorProxyCommand}
|
|
1301
827
|
*/
|
|
1302
828
|
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorProxyCommandOutput>;
|
|
1303
829
|
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, cb: (err: any, data?: GetVoiceConnectorProxyCommandOutput) => void): void;
|
|
1304
830
|
getVoiceConnectorProxy(args: GetVoiceConnectorProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorProxyCommandOutput) => void): void;
|
|
1305
831
|
/**
|
|
1306
|
-
* @
|
|
1307
|
-
* <p>Retrieves the streaming configuration details for the specified Amazon Chime Voice Connector.
|
|
1308
|
-
* Shows whether media streaming is enabled for sending to Amazon Kinesis. It also shows
|
|
1309
|
-
* the retention period, in hours, for the Amazon Kinesis data.</p>
|
|
832
|
+
* @see {@link GetVoiceConnectorStreamingConfigurationCommand}
|
|
1310
833
|
*/
|
|
1311
834
|
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
1312
835
|
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: GetVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
1313
836
|
getVoiceConnectorStreamingConfiguration(args: GetVoiceConnectorStreamingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
1314
837
|
/**
|
|
1315
|
-
* @
|
|
1316
|
-
* <p>Retrieves termination setting details for the specified Amazon Chime Voice Connector.</p>
|
|
838
|
+
* @see {@link GetVoiceConnectorTerminationCommand}
|
|
1317
839
|
*/
|
|
1318
840
|
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorTerminationCommandOutput>;
|
|
1319
841
|
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, cb: (err: any, data?: GetVoiceConnectorTerminationCommandOutput) => void): void;
|
|
1320
842
|
getVoiceConnectorTermination(args: GetVoiceConnectorTerminationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorTerminationCommandOutput) => void): void;
|
|
1321
843
|
/**
|
|
1322
|
-
* @
|
|
1323
|
-
* <p>Retrieves information about the last time a SIP <code>OPTIONS</code> ping was received from
|
|
1324
|
-
* your SIP infrastructure for the specified Amazon Chime Voice Connector.</p>
|
|
844
|
+
* @see {@link GetVoiceConnectorTerminationHealthCommand}
|
|
1325
845
|
*/
|
|
1326
846
|
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options?: __HttpHandlerOptions): Promise<GetVoiceConnectorTerminationHealthCommandOutput>;
|
|
1327
847
|
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, cb: (err: any, data?: GetVoiceConnectorTerminationHealthCommandOutput) => void): void;
|
|
1328
848
|
getVoiceConnectorTerminationHealth(args: GetVoiceConnectorTerminationHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVoiceConnectorTerminationHealthCommandOutput) => void): void;
|
|
1329
849
|
/**
|
|
1330
|
-
* @
|
|
1331
|
-
* <p>Sends email to a maximum of 50 users, inviting them to the specified Amazon Chime
|
|
1332
|
-
* <code>Team</code> account. Only <code>Team</code> account types are currently
|
|
1333
|
-
* supported for this action.</p>
|
|
850
|
+
* @see {@link InviteUsersCommand}
|
|
1334
851
|
*/
|
|
1335
852
|
inviteUsers(args: InviteUsersCommandInput, options?: __HttpHandlerOptions): Promise<InviteUsersCommandOutput>;
|
|
1336
853
|
inviteUsers(args: InviteUsersCommandInput, cb: (err: any, data?: InviteUsersCommandOutput) => void): void;
|
|
1337
854
|
inviteUsers(args: InviteUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InviteUsersCommandOutput) => void): void;
|
|
1338
855
|
/**
|
|
1339
|
-
* @
|
|
1340
|
-
* <p>Lists the Amazon Chime accounts under the administrator's AWS account. You can filter accounts
|
|
1341
|
-
* by account name prefix. To find out which Amazon Chime account a user belongs to, you can
|
|
1342
|
-
* filter by the user's email address, which returns one account result.</p>
|
|
856
|
+
* @see {@link ListAccountsCommand}
|
|
1343
857
|
*/
|
|
1344
858
|
listAccounts(args: ListAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListAccountsCommandOutput>;
|
|
1345
859
|
listAccounts(args: ListAccountsCommandInput, cb: (err: any, data?: ListAccountsCommandOutput) => void): void;
|
|
1346
860
|
listAccounts(args: ListAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccountsCommandOutput) => void): void;
|
|
1347
861
|
/**
|
|
1348
|
-
* @
|
|
1349
|
-
* <p>Returns a list of the administrators in the <code>AppInstance</code>.</p>
|
|
862
|
+
* @see {@link ListAppInstanceAdminsCommand}
|
|
1350
863
|
*/
|
|
1351
864
|
listAppInstanceAdmins(args: ListAppInstanceAdminsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppInstanceAdminsCommandOutput>;
|
|
1352
865
|
listAppInstanceAdmins(args: ListAppInstanceAdminsCommandInput, cb: (err: any, data?: ListAppInstanceAdminsCommandOutput) => void): void;
|
|
1353
866
|
listAppInstanceAdmins(args: ListAppInstanceAdminsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppInstanceAdminsCommandOutput) => void): void;
|
|
1354
867
|
/**
|
|
1355
|
-
* @
|
|
1356
|
-
* <p>Lists all Amazon Chime <code>AppInstance</code>s created under a single AWS account.</p>
|
|
868
|
+
* @see {@link ListAppInstancesCommand}
|
|
1357
869
|
*/
|
|
1358
870
|
listAppInstances(args: ListAppInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListAppInstancesCommandOutput>;
|
|
1359
871
|
listAppInstances(args: ListAppInstancesCommandInput, cb: (err: any, data?: ListAppInstancesCommandOutput) => void): void;
|
|
1360
872
|
listAppInstances(args: ListAppInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppInstancesCommandOutput) => void): void;
|
|
1361
873
|
/**
|
|
1362
|
-
* @
|
|
1363
|
-
* <p>List all <code>AppInstanceUsers</code>
|
|
1364
|
-
* created under a single <code>AppInstance</code>.
|
|
1365
|
-
* </p>
|
|
874
|
+
* @see {@link ListAppInstanceUsersCommand}
|
|
1366
875
|
*/
|
|
1367
876
|
listAppInstanceUsers(args: ListAppInstanceUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListAppInstanceUsersCommandOutput>;
|
|
1368
877
|
listAppInstanceUsers(args: ListAppInstanceUsersCommandInput, cb: (err: any, data?: ListAppInstanceUsersCommandOutput) => void): void;
|
|
1369
878
|
listAppInstanceUsers(args: ListAppInstanceUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppInstanceUsersCommandOutput) => void): void;
|
|
1370
879
|
/**
|
|
1371
|
-
* @
|
|
1372
|
-
* <p>
|
|
1373
|
-
* Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|
|
1374
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
1375
|
-
* in the <i>Amazon Chime Developer Guide</i>.
|
|
1376
|
-
* </p>
|
|
880
|
+
* @see {@link ListAttendeesCommand}
|
|
1377
881
|
*/
|
|
1378
882
|
listAttendees(args: ListAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<ListAttendeesCommandOutput>;
|
|
1379
883
|
listAttendees(args: ListAttendeesCommandInput, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
1380
884
|
listAttendees(args: ListAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
1381
885
|
/**
|
|
1382
|
-
* @
|
|
1383
|
-
* <p>Lists the tags applied to an Amazon Chime SDK attendee resource.</p>
|
|
886
|
+
* @see {@link ListAttendeeTagsCommand}
|
|
1384
887
|
*/
|
|
1385
888
|
listAttendeeTags(args: ListAttendeeTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListAttendeeTagsCommandOutput>;
|
|
1386
889
|
listAttendeeTags(args: ListAttendeeTagsCommandInput, cb: (err: any, data?: ListAttendeeTagsCommandOutput) => void): void;
|
|
1387
890
|
listAttendeeTags(args: ListAttendeeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeeTagsCommandOutput) => void): void;
|
|
1388
891
|
/**
|
|
1389
|
-
* @
|
|
1390
|
-
* <p>Lists the bots associated with the administrator's Amazon Chime Enterprise account ID.</p>
|
|
892
|
+
* @see {@link ListBotsCommand}
|
|
1391
893
|
*/
|
|
1392
894
|
listBots(args: ListBotsCommandInput, options?: __HttpHandlerOptions): Promise<ListBotsCommandOutput>;
|
|
1393
895
|
listBots(args: ListBotsCommandInput, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
|
|
1394
896
|
listBots(args: ListBotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBotsCommandOutput) => void): void;
|
|
1395
897
|
/**
|
|
1396
|
-
* @
|
|
1397
|
-
* <p>Lists all the users banned from a particular channel.</p>
|
|
1398
|
-
*
|
|
1399
|
-
* <note>
|
|
1400
|
-
*
|
|
1401
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1402
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1403
|
-
* the header.</p>
|
|
1404
|
-
* </note>
|
|
898
|
+
* @see {@link ListChannelBansCommand}
|
|
1405
899
|
*/
|
|
1406
900
|
listChannelBans(args: ListChannelBansCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelBansCommandOutput>;
|
|
1407
901
|
listChannelBans(args: ListChannelBansCommandInput, cb: (err: any, data?: ListChannelBansCommandOutput) => void): void;
|
|
1408
902
|
listChannelBans(args: ListChannelBansCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelBansCommandOutput) => void): void;
|
|
1409
903
|
/**
|
|
1410
|
-
* @
|
|
1411
|
-
* <p>Lists all channel memberships in a channel.</p>
|
|
1412
|
-
*
|
|
1413
|
-
* <note>
|
|
1414
|
-
*
|
|
1415
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1416
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1417
|
-
* the header.</p>
|
|
1418
|
-
* </note>
|
|
904
|
+
* @see {@link ListChannelMembershipsCommand}
|
|
1419
905
|
*/
|
|
1420
906
|
listChannelMemberships(args: ListChannelMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelMembershipsCommandOutput>;
|
|
1421
907
|
listChannelMemberships(args: ListChannelMembershipsCommandInput, cb: (err: any, data?: ListChannelMembershipsCommandOutput) => void): void;
|
|
1422
908
|
listChannelMemberships(args: ListChannelMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelMembershipsCommandOutput) => void): void;
|
|
1423
909
|
/**
|
|
1424
|
-
* @
|
|
1425
|
-
* <p> Lists all channels that a particular <code>AppInstanceUser</code> is a part of. Only an
|
|
1426
|
-
* <code>AppInstanceAdmin</code> can call the API with a user ARN that is not their own. </p>
|
|
1427
|
-
*
|
|
1428
|
-
* <note>
|
|
1429
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1430
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1431
|
-
* the header.</p>
|
|
1432
|
-
* </note>
|
|
910
|
+
* @see {@link ListChannelMembershipsForAppInstanceUserCommand}
|
|
1433
911
|
*/
|
|
1434
912
|
listChannelMembershipsForAppInstanceUser(args: ListChannelMembershipsForAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelMembershipsForAppInstanceUserCommandOutput>;
|
|
1435
913
|
listChannelMembershipsForAppInstanceUser(args: ListChannelMembershipsForAppInstanceUserCommandInput, cb: (err: any, data?: ListChannelMembershipsForAppInstanceUserCommandOutput) => void): void;
|
|
1436
914
|
listChannelMembershipsForAppInstanceUser(args: ListChannelMembershipsForAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelMembershipsForAppInstanceUserCommandOutput) => void): void;
|
|
1437
915
|
/**
|
|
1438
|
-
* @
|
|
1439
|
-
* <p>List all the messages in a channel. Returns a paginated list of
|
|
1440
|
-
* <code>ChannelMessages</code>. By default, sorted by creation timestamp in descending
|
|
1441
|
-
* order.</p>
|
|
1442
|
-
* <note>
|
|
1443
|
-
* <p>Redacted messages appear in the results as empty, since they are only redacted, not
|
|
1444
|
-
* deleted. Deleted messages do not appear in the results. This action always returns the
|
|
1445
|
-
* latest version of an edited message.</p>
|
|
1446
|
-
* <p>Also, the x-amz-chime-bearer request header is mandatory. Use the
|
|
1447
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1448
|
-
* the header.</p>
|
|
1449
|
-
* </note>
|
|
916
|
+
* @see {@link ListChannelMessagesCommand}
|
|
1450
917
|
*/
|
|
1451
918
|
listChannelMessages(args: ListChannelMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelMessagesCommandOutput>;
|
|
1452
919
|
listChannelMessages(args: ListChannelMessagesCommandInput, cb: (err: any, data?: ListChannelMessagesCommandOutput) => void): void;
|
|
1453
920
|
listChannelMessages(args: ListChannelMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelMessagesCommandOutput) => void): void;
|
|
1454
921
|
/**
|
|
1455
|
-
* @
|
|
1456
|
-
* <p>Lists all the moderators for a channel.</p>
|
|
1457
|
-
* <note>
|
|
1458
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1459
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1460
|
-
* the header.</p>
|
|
1461
|
-
* </note>
|
|
922
|
+
* @see {@link ListChannelModeratorsCommand}
|
|
1462
923
|
*/
|
|
1463
924
|
listChannelModerators(args: ListChannelModeratorsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelModeratorsCommandOutput>;
|
|
1464
925
|
listChannelModerators(args: ListChannelModeratorsCommandInput, cb: (err: any, data?: ListChannelModeratorsCommandOutput) => void): void;
|
|
1465
926
|
listChannelModerators(args: ListChannelModeratorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelModeratorsCommandOutput) => void): void;
|
|
1466
927
|
/**
|
|
1467
|
-
* @
|
|
1468
|
-
* <p>Lists all Channels created under a single Chime App as a paginated list. You can specify
|
|
1469
|
-
* filters to narrow results.</p>
|
|
1470
|
-
*
|
|
1471
|
-
* <p class="title">
|
|
1472
|
-
* <b>Functionality & restrictions</b>
|
|
1473
|
-
* </p>
|
|
1474
|
-
* <ul>
|
|
1475
|
-
* <li>
|
|
1476
|
-
* <p>Use privacy = <code>PUBLIC</code> to retrieve all public channels in the
|
|
1477
|
-
* account.</p>
|
|
1478
|
-
* </li>
|
|
1479
|
-
* <li>
|
|
1480
|
-
* <p>Only an <code>AppInstanceAdmin</code> can set privacy = <code>PRIVATE</code> to
|
|
1481
|
-
* list the private channels in an account.</p>
|
|
1482
|
-
* </li>
|
|
1483
|
-
* </ul>
|
|
1484
|
-
*
|
|
1485
|
-
* <note>
|
|
1486
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1487
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1488
|
-
* the header.</p>
|
|
1489
|
-
* </note>
|
|
928
|
+
* @see {@link ListChannelsCommand}
|
|
1490
929
|
*/
|
|
1491
930
|
listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
|
|
1492
931
|
listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
1493
932
|
listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
1494
933
|
/**
|
|
1495
|
-
* @
|
|
1496
|
-
* <p>A list of the channels moderated by an <code>AppInstanceUser</code>.</p>
|
|
1497
|
-
*
|
|
1498
|
-
* <note>
|
|
1499
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1500
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1501
|
-
* the header.</p>
|
|
1502
|
-
* </note>
|
|
934
|
+
* @see {@link ListChannelsModeratedByAppInstanceUserCommand}
|
|
1503
935
|
*/
|
|
1504
936
|
listChannelsModeratedByAppInstanceUser(args: ListChannelsModeratedByAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsModeratedByAppInstanceUserCommandOutput>;
|
|
1505
937
|
listChannelsModeratedByAppInstanceUser(args: ListChannelsModeratedByAppInstanceUserCommandInput, cb: (err: any, data?: ListChannelsModeratedByAppInstanceUserCommandOutput) => void): void;
|
|
1506
938
|
listChannelsModeratedByAppInstanceUser(args: ListChannelsModeratedByAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsModeratedByAppInstanceUserCommandOutput) => void): void;
|
|
1507
939
|
/**
|
|
1508
|
-
* @
|
|
1509
|
-
* <p>Returns a list of media capture pipelines.</p>
|
|
940
|
+
* @see {@link ListMediaCapturePipelinesCommand}
|
|
1510
941
|
*/
|
|
1511
942
|
listMediaCapturePipelines(args: ListMediaCapturePipelinesCommandInput, options?: __HttpHandlerOptions): Promise<ListMediaCapturePipelinesCommandOutput>;
|
|
1512
943
|
listMediaCapturePipelines(args: ListMediaCapturePipelinesCommandInput, cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void): void;
|
|
1513
944
|
listMediaCapturePipelines(args: ListMediaCapturePipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMediaCapturePipelinesCommandOutput) => void): void;
|
|
1514
945
|
/**
|
|
1515
|
-
* @
|
|
1516
|
-
* <p>
|
|
1517
|
-
* Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see
|
|
1518
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">Using the Amazon Chime SDK</a>
|
|
1519
|
-
* in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
946
|
+
* @see {@link ListMeetingsCommand}
|
|
1520
947
|
*/
|
|
1521
948
|
listMeetings(args: ListMeetingsCommandInput, options?: __HttpHandlerOptions): Promise<ListMeetingsCommandOutput>;
|
|
1522
949
|
listMeetings(args: ListMeetingsCommandInput, cb: (err: any, data?: ListMeetingsCommandOutput) => void): void;
|
|
1523
950
|
listMeetings(args: ListMeetingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMeetingsCommandOutput) => void): void;
|
|
1524
951
|
/**
|
|
1525
|
-
* @
|
|
1526
|
-
* <p>Lists the tags applied to an Amazon Chime SDK meeting resource.</p>
|
|
952
|
+
* @see {@link ListMeetingTagsCommand}
|
|
1527
953
|
*/
|
|
1528
954
|
listMeetingTags(args: ListMeetingTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListMeetingTagsCommandOutput>;
|
|
1529
955
|
listMeetingTags(args: ListMeetingTagsCommandInput, cb: (err: any, data?: ListMeetingTagsCommandOutput) => void): void;
|
|
1530
956
|
listMeetingTags(args: ListMeetingTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMeetingTagsCommandOutput) => void): void;
|
|
1531
957
|
/**
|
|
1532
|
-
* @
|
|
1533
|
-
* <p>Lists the phone number orders for the administrator's Amazon Chime account.</p>
|
|
958
|
+
* @see {@link ListPhoneNumberOrdersCommand}
|
|
1534
959
|
*/
|
|
1535
960
|
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumberOrdersCommandOutput>;
|
|
1536
961
|
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, cb: (err: any, data?: ListPhoneNumberOrdersCommandOutput) => void): void;
|
|
1537
962
|
listPhoneNumberOrders(args: ListPhoneNumberOrdersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumberOrdersCommandOutput) => void): void;
|
|
1538
963
|
/**
|
|
1539
|
-
* @
|
|
1540
|
-
* <p>Lists the phone numbers for the specified Amazon Chime account, Amazon Chime user, Amazon Chime Voice Connector, or Amazon Chime Voice Connector group.</p>
|
|
964
|
+
* @see {@link ListPhoneNumbersCommand}
|
|
1541
965
|
*/
|
|
1542
966
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<ListPhoneNumbersCommandOutput>;
|
|
1543
967
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
1544
968
|
listPhoneNumbers(args: ListPhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPhoneNumbersCommandOutput) => void): void;
|
|
1545
969
|
/**
|
|
1546
|
-
* @
|
|
1547
|
-
* <p>Lists the proxy sessions for the specified Amazon Chime Voice Connector.</p>
|
|
970
|
+
* @see {@link ListProxySessionsCommand}
|
|
1548
971
|
*/
|
|
1549
972
|
listProxySessions(args: ListProxySessionsCommandInput, options?: __HttpHandlerOptions): Promise<ListProxySessionsCommandOutput>;
|
|
1550
973
|
listProxySessions(args: ListProxySessionsCommandInput, cb: (err: any, data?: ListProxySessionsCommandOutput) => void): void;
|
|
1551
974
|
listProxySessions(args: ListProxySessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProxySessionsCommandOutput) => void): void;
|
|
1552
975
|
/**
|
|
1553
|
-
* @
|
|
1554
|
-
* <p>Lists the membership details for the specified room in an Amazon Chime Enterprise account,
|
|
1555
|
-
* such as the members' IDs, email addresses, and names.</p>
|
|
976
|
+
* @see {@link ListRoomMembershipsCommand}
|
|
1556
977
|
*/
|
|
1557
978
|
listRoomMemberships(args: ListRoomMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListRoomMembershipsCommandOutput>;
|
|
1558
979
|
listRoomMemberships(args: ListRoomMembershipsCommandInput, cb: (err: any, data?: ListRoomMembershipsCommandOutput) => void): void;
|
|
1559
980
|
listRoomMemberships(args: ListRoomMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoomMembershipsCommandOutput) => void): void;
|
|
1560
981
|
/**
|
|
1561
|
-
* @
|
|
1562
|
-
* <p>Lists the room details for the specified Amazon Chime Enterprise account. Optionally, filter the results by a member ID (user ID or bot ID) to see a list of rooms that the member belongs to.</p>
|
|
982
|
+
* @see {@link ListRoomsCommand}
|
|
1563
983
|
*/
|
|
1564
984
|
listRooms(args: ListRoomsCommandInput, options?: __HttpHandlerOptions): Promise<ListRoomsCommandOutput>;
|
|
1565
985
|
listRooms(args: ListRoomsCommandInput, cb: (err: any, data?: ListRoomsCommandOutput) => void): void;
|
|
1566
986
|
listRooms(args: ListRoomsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoomsCommandOutput) => void): void;
|
|
1567
987
|
/**
|
|
1568
|
-
* @
|
|
1569
|
-
* <p>Lists the SIP media applications under the administrator's AWS account.</p>
|
|
988
|
+
* @see {@link ListSipMediaApplicationsCommand}
|
|
1570
989
|
*/
|
|
1571
990
|
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSipMediaApplicationsCommandOutput>;
|
|
1572
991
|
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, cb: (err: any, data?: ListSipMediaApplicationsCommandOutput) => void): void;
|
|
1573
992
|
listSipMediaApplications(args: ListSipMediaApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSipMediaApplicationsCommandOutput) => void): void;
|
|
1574
993
|
/**
|
|
1575
|
-
* @
|
|
1576
|
-
* <p>Lists the SIP rules under the administrator's AWS account.</p>
|
|
994
|
+
* @see {@link ListSipRulesCommand}
|
|
1577
995
|
*/
|
|
1578
996
|
listSipRules(args: ListSipRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListSipRulesCommandOutput>;
|
|
1579
997
|
listSipRules(args: ListSipRulesCommandInput, cb: (err: any, data?: ListSipRulesCommandOutput) => void): void;
|
|
1580
998
|
listSipRules(args: ListSipRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSipRulesCommandOutput) => void): void;
|
|
1581
999
|
/**
|
|
1582
|
-
* @
|
|
1583
|
-
* <p>Lists supported phone number countries.</p>
|
|
1000
|
+
* @see {@link ListSupportedPhoneNumberCountriesCommand}
|
|
1584
1001
|
*/
|
|
1585
1002
|
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options?: __HttpHandlerOptions): Promise<ListSupportedPhoneNumberCountriesCommandOutput>;
|
|
1586
1003
|
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, cb: (err: any, data?: ListSupportedPhoneNumberCountriesCommandOutput) => void): void;
|
|
1587
1004
|
listSupportedPhoneNumberCountries(args: ListSupportedPhoneNumberCountriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSupportedPhoneNumberCountriesCommandOutput) => void): void;
|
|
1588
1005
|
/**
|
|
1589
|
-
* @
|
|
1590
|
-
* <p>Lists the tags applied to an Amazon Chime SDK meeting resource.</p>
|
|
1006
|
+
* @see {@link ListTagsForResourceCommand}
|
|
1591
1007
|
*/
|
|
1592
1008
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
1593
1009
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1594
1010
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
1595
1011
|
/**
|
|
1596
|
-
* @
|
|
1597
|
-
* <p>Lists the users that belong to the specified Amazon Chime account. You can specify an email
|
|
1598
|
-
* address to list only the user that the email address belongs to.</p>
|
|
1012
|
+
* @see {@link ListUsersCommand}
|
|
1599
1013
|
*/
|
|
1600
1014
|
listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
|
|
1601
1015
|
listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
1602
1016
|
listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
|
|
1603
1017
|
/**
|
|
1604
|
-
* @
|
|
1605
|
-
* <p>Lists the Amazon Chime Voice Connector groups for the administrator's AWS account.</p>
|
|
1018
|
+
* @see {@link ListVoiceConnectorGroupsCommand}
|
|
1606
1019
|
*/
|
|
1607
1020
|
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceConnectorGroupsCommandOutput>;
|
|
1608
1021
|
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, cb: (err: any, data?: ListVoiceConnectorGroupsCommandOutput) => void): void;
|
|
1609
1022
|
listVoiceConnectorGroups(args: ListVoiceConnectorGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceConnectorGroupsCommandOutput) => void): void;
|
|
1610
1023
|
/**
|
|
1611
|
-
* @
|
|
1612
|
-
* <p>Lists the Amazon Chime Voice Connectors for the administrator's AWS account.</p>
|
|
1024
|
+
* @see {@link ListVoiceConnectorsCommand}
|
|
1613
1025
|
*/
|
|
1614
1026
|
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceConnectorsCommandOutput>;
|
|
1615
1027
|
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, cb: (err: any, data?: ListVoiceConnectorsCommandOutput) => void): void;
|
|
1616
1028
|
listVoiceConnectors(args: ListVoiceConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceConnectorsCommandOutput) => void): void;
|
|
1617
1029
|
/**
|
|
1618
|
-
* @
|
|
1619
|
-
* <p>Lists the SIP credentials for the specified Amazon Chime Voice Connector.</p>
|
|
1030
|
+
* @see {@link ListVoiceConnectorTerminationCredentialsCommand}
|
|
1620
1031
|
*/
|
|
1621
1032
|
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<ListVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
1622
1033
|
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: ListVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
1623
1034
|
listVoiceConnectorTerminationCredentials(args: ListVoiceConnectorTerminationCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
1624
1035
|
/**
|
|
1625
|
-
* @
|
|
1626
|
-
* <p>Logs out the specified user from all of the devices they are currently logged into.</p>
|
|
1036
|
+
* @see {@link LogoutUserCommand}
|
|
1627
1037
|
*/
|
|
1628
1038
|
logoutUser(args: LogoutUserCommandInput, options?: __HttpHandlerOptions): Promise<LogoutUserCommandOutput>;
|
|
1629
1039
|
logoutUser(args: LogoutUserCommandInput, cb: (err: any, data?: LogoutUserCommandOutput) => void): void;
|
|
1630
1040
|
logoutUser(args: LogoutUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: LogoutUserCommandOutput) => void): void;
|
|
1631
1041
|
/**
|
|
1632
|
-
* @
|
|
1633
|
-
* <p>Sets the amount of time in days that a given <code>AppInstance</code> retains data.</p>
|
|
1042
|
+
* @see {@link PutAppInstanceRetentionSettingsCommand}
|
|
1634
1043
|
*/
|
|
1635
1044
|
putAppInstanceRetentionSettings(args: PutAppInstanceRetentionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutAppInstanceRetentionSettingsCommandOutput>;
|
|
1636
1045
|
putAppInstanceRetentionSettings(args: PutAppInstanceRetentionSettingsCommandInput, cb: (err: any, data?: PutAppInstanceRetentionSettingsCommandOutput) => void): void;
|
|
1637
1046
|
putAppInstanceRetentionSettings(args: PutAppInstanceRetentionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAppInstanceRetentionSettingsCommandOutput) => void): void;
|
|
1638
1047
|
/**
|
|
1639
|
-
* @
|
|
1640
|
-
* <p>The data streaming configurations of an <code>AppInstance</code>.</p>
|
|
1048
|
+
* @see {@link PutAppInstanceStreamingConfigurationsCommand}
|
|
1641
1049
|
*/
|
|
1642
1050
|
putAppInstanceStreamingConfigurations(args: PutAppInstanceStreamingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<PutAppInstanceStreamingConfigurationsCommandOutput>;
|
|
1643
1051
|
putAppInstanceStreamingConfigurations(args: PutAppInstanceStreamingConfigurationsCommandInput, cb: (err: any, data?: PutAppInstanceStreamingConfigurationsCommandOutput) => void): void;
|
|
1644
1052
|
putAppInstanceStreamingConfigurations(args: PutAppInstanceStreamingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAppInstanceStreamingConfigurationsCommandOutput) => void): void;
|
|
1645
1053
|
/**
|
|
1646
|
-
* @
|
|
1647
|
-
* <p>Creates an events configuration that allows a bot to receive outgoing events sent by Amazon
|
|
1648
|
-
* Chime. Choose either an HTTPS endpoint or a Lambda function ARN. For more information,
|
|
1649
|
-
* see <a>Bot</a>.</p>
|
|
1054
|
+
* @see {@link PutEventsConfigurationCommand}
|
|
1650
1055
|
*/
|
|
1651
1056
|
putEventsConfiguration(args: PutEventsConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutEventsConfigurationCommandOutput>;
|
|
1652
1057
|
putEventsConfiguration(args: PutEventsConfigurationCommandInput, cb: (err: any, data?: PutEventsConfigurationCommandOutput) => void): void;
|
|
1653
1058
|
putEventsConfiguration(args: PutEventsConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEventsConfigurationCommandOutput) => void): void;
|
|
1654
1059
|
/**
|
|
1655
|
-
* @
|
|
1656
|
-
* <p>
|
|
1657
|
-
* Puts retention settings for the specified Amazon Chime Enterprise account. We recommend using AWS CloudTrail to monitor usage of this API for your account. For more information, see
|
|
1658
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/ag/cloudtrail.html">Logging Amazon Chime API Calls with AWS CloudTrail</a>
|
|
1659
|
-
* in the <i>Amazon Chime Administration Guide</i>.</p>
|
|
1660
|
-
*
|
|
1661
|
-
* <p>
|
|
1662
|
-
* To turn off existing retention settings, remove the number of days from the corresponding
|
|
1663
|
-
* <b>RetentionDays</b>
|
|
1664
|
-
* field in the
|
|
1665
|
-
* <b>RetentionSettings</b>
|
|
1666
|
-
* object. For more information about retention settings, see
|
|
1667
|
-
* <a href="https://docs.aws.amazon.com/chime/latest/ag/chat-retention.html">Managing Chat Retention Policies</a>
|
|
1668
|
-
* in the <i>Amazon Chime Administration Guide</i>.</p>
|
|
1060
|
+
* @see {@link PutRetentionSettingsCommand}
|
|
1669
1061
|
*/
|
|
1670
1062
|
putRetentionSettings(args: PutRetentionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutRetentionSettingsCommandOutput>;
|
|
1671
1063
|
putRetentionSettings(args: PutRetentionSettingsCommandInput, cb: (err: any, data?: PutRetentionSettingsCommandOutput) => void): void;
|
|
1672
1064
|
putRetentionSettings(args: PutRetentionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRetentionSettingsCommandOutput) => void): void;
|
|
1673
1065
|
/**
|
|
1674
|
-
* @
|
|
1675
|
-
* <p>Updates the logging configuration for the specified SIP media application.</p>
|
|
1066
|
+
* @see {@link PutSipMediaApplicationLoggingConfigurationCommand}
|
|
1676
1067
|
*/
|
|
1677
1068
|
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutSipMediaApplicationLoggingConfigurationCommandOutput>;
|
|
1678
1069
|
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, cb: (err: any, data?: PutSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
1679
1070
|
putSipMediaApplicationLoggingConfiguration(args: PutSipMediaApplicationLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSipMediaApplicationLoggingConfigurationCommandOutput) => void): void;
|
|
1680
1071
|
/**
|
|
1681
|
-
* @
|
|
1682
|
-
* <p>Puts emergency calling configuration details to the specified Amazon Chime Voice Connector, such as emergency phone numbers and calling countries. Origination and termination settings must be enabled for
|
|
1683
|
-
* the Amazon Chime Voice Connector before emergency calling can be configured.</p>
|
|
1072
|
+
* @see {@link PutVoiceConnectorEmergencyCallingConfigurationCommand}
|
|
1684
1073
|
*/
|
|
1685
1074
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
|
|
1686
1075
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
1687
1076
|
putVoiceConnectorEmergencyCallingConfiguration(args: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput) => void): void;
|
|
1688
1077
|
/**
|
|
1689
|
-
* @
|
|
1690
|
-
* <p>Adds a logging configuration for the specified Amazon Chime Voice Connector. The logging configuration specifies whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.</p>
|
|
1078
|
+
* @see {@link PutVoiceConnectorLoggingConfigurationCommand}
|
|
1691
1079
|
*/
|
|
1692
1080
|
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorLoggingConfigurationCommandOutput>;
|
|
1693
1081
|
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
1694
1082
|
putVoiceConnectorLoggingConfiguration(args: PutVoiceConnectorLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorLoggingConfigurationCommandOutput) => void): void;
|
|
1695
1083
|
/**
|
|
1696
|
-
* @
|
|
1697
|
-
* <p>Adds origination settings for the specified Amazon Chime Voice Connector.</p>
|
|
1698
|
-
*
|
|
1699
|
-
* <note>
|
|
1700
|
-
* <p>If emergency calling is configured for the Amazon Chime Voice Connector, it must be deleted prior to turning off origination settings.</p>
|
|
1701
|
-
* </note>
|
|
1084
|
+
* @see {@link PutVoiceConnectorOriginationCommand}
|
|
1702
1085
|
*/
|
|
1703
1086
|
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorOriginationCommandOutput>;
|
|
1704
1087
|
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, cb: (err: any, data?: PutVoiceConnectorOriginationCommandOutput) => void): void;
|
|
1705
1088
|
putVoiceConnectorOrigination(args: PutVoiceConnectorOriginationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorOriginationCommandOutput) => void): void;
|
|
1706
1089
|
/**
|
|
1707
|
-
* @
|
|
1708
|
-
* <p>Puts the specified proxy configuration to the specified Amazon Chime Voice Connector.</p>
|
|
1090
|
+
* @see {@link PutVoiceConnectorProxyCommand}
|
|
1709
1091
|
*/
|
|
1710
1092
|
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorProxyCommandOutput>;
|
|
1711
1093
|
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, cb: (err: any, data?: PutVoiceConnectorProxyCommandOutput) => void): void;
|
|
1712
1094
|
putVoiceConnectorProxy(args: PutVoiceConnectorProxyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorProxyCommandOutput) => void): void;
|
|
1713
1095
|
/**
|
|
1714
|
-
* @
|
|
1715
|
-
* <p>Adds a streaming configuration for the specified Amazon Chime Voice Connector. The streaming
|
|
1716
|
-
* configuration specifies whether media streaming is enabled for sending to Kinesis.
|
|
1717
|
-
* It also sets the retention period, in hours, for the Amazon Kinesis data.</p>
|
|
1096
|
+
* @see {@link PutVoiceConnectorStreamingConfigurationCommand}
|
|
1718
1097
|
*/
|
|
1719
1098
|
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorStreamingConfigurationCommandOutput>;
|
|
1720
1099
|
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, cb: (err: any, data?: PutVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
1721
1100
|
putVoiceConnectorStreamingConfiguration(args: PutVoiceConnectorStreamingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorStreamingConfigurationCommandOutput) => void): void;
|
|
1722
1101
|
/**
|
|
1723
|
-
* @
|
|
1724
|
-
* <p>Adds termination settings for the specified Amazon Chime Voice Connector.</p>
|
|
1725
|
-
*
|
|
1726
|
-
* <note>
|
|
1727
|
-
* <p>If emergency calling is configured for the Amazon Chime Voice Connector, it must be deleted prior to turning off termination settings.</p>
|
|
1728
|
-
* </note>
|
|
1102
|
+
* @see {@link PutVoiceConnectorTerminationCommand}
|
|
1729
1103
|
*/
|
|
1730
1104
|
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorTerminationCommandOutput>;
|
|
1731
1105
|
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, cb: (err: any, data?: PutVoiceConnectorTerminationCommandOutput) => void): void;
|
|
1732
1106
|
putVoiceConnectorTermination(args: PutVoiceConnectorTerminationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorTerminationCommandOutput) => void): void;
|
|
1733
1107
|
/**
|
|
1734
|
-
* @
|
|
1735
|
-
* <p>Adds termination SIP credentials for the specified Amazon Chime Voice Connector.</p>
|
|
1108
|
+
* @see {@link PutVoiceConnectorTerminationCredentialsCommand}
|
|
1736
1109
|
*/
|
|
1737
1110
|
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<PutVoiceConnectorTerminationCredentialsCommandOutput>;
|
|
1738
1111
|
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, cb: (err: any, data?: PutVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
1739
1112
|
putVoiceConnectorTerminationCredentials(args: PutVoiceConnectorTerminationCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutVoiceConnectorTerminationCredentialsCommandOutput) => void): void;
|
|
1740
1113
|
/**
|
|
1741
|
-
* @
|
|
1742
|
-
* <p>Redacts message content, but not metadata. The message exists in the back end, but the
|
|
1743
|
-
* action returns null content, and the state shows as redacted.</p>
|
|
1744
|
-
*
|
|
1745
|
-
* <note>
|
|
1746
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1747
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1748
|
-
* the header.</p>
|
|
1749
|
-
* </note>
|
|
1114
|
+
* @see {@link RedactChannelMessageCommand}
|
|
1750
1115
|
*/
|
|
1751
1116
|
redactChannelMessage(args: RedactChannelMessageCommandInput, options?: __HttpHandlerOptions): Promise<RedactChannelMessageCommandOutput>;
|
|
1752
1117
|
redactChannelMessage(args: RedactChannelMessageCommandInput, cb: (err: any, data?: RedactChannelMessageCommandOutput) => void): void;
|
|
1753
1118
|
redactChannelMessage(args: RedactChannelMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RedactChannelMessageCommandOutput) => void): void;
|
|
1754
1119
|
/**
|
|
1755
|
-
* @
|
|
1756
|
-
* <p>Redacts the specified message from the specified Amazon Chime conversation.</p>
|
|
1120
|
+
* @see {@link RedactConversationMessageCommand}
|
|
1757
1121
|
*/
|
|
1758
1122
|
redactConversationMessage(args: RedactConversationMessageCommandInput, options?: __HttpHandlerOptions): Promise<RedactConversationMessageCommandOutput>;
|
|
1759
1123
|
redactConversationMessage(args: RedactConversationMessageCommandInput, cb: (err: any, data?: RedactConversationMessageCommandOutput) => void): void;
|
|
1760
1124
|
redactConversationMessage(args: RedactConversationMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RedactConversationMessageCommandOutput) => void): void;
|
|
1761
1125
|
/**
|
|
1762
|
-
* @
|
|
1763
|
-
* <p>Redacts the specified message from the specified Amazon Chime channel.</p>
|
|
1126
|
+
* @see {@link RedactRoomMessageCommand}
|
|
1764
1127
|
*/
|
|
1765
1128
|
redactRoomMessage(args: RedactRoomMessageCommandInput, options?: __HttpHandlerOptions): Promise<RedactRoomMessageCommandOutput>;
|
|
1766
1129
|
redactRoomMessage(args: RedactRoomMessageCommandInput, cb: (err: any, data?: RedactRoomMessageCommandOutput) => void): void;
|
|
1767
1130
|
redactRoomMessage(args: RedactRoomMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RedactRoomMessageCommandOutput) => void): void;
|
|
1768
1131
|
/**
|
|
1769
|
-
* @
|
|
1770
|
-
* <p>Regenerates the security token for a bot.</p>
|
|
1132
|
+
* @see {@link RegenerateSecurityTokenCommand}
|
|
1771
1133
|
*/
|
|
1772
1134
|
regenerateSecurityToken(args: RegenerateSecurityTokenCommandInput, options?: __HttpHandlerOptions): Promise<RegenerateSecurityTokenCommandOutput>;
|
|
1773
1135
|
regenerateSecurityToken(args: RegenerateSecurityTokenCommandInput, cb: (err: any, data?: RegenerateSecurityTokenCommandOutput) => void): void;
|
|
1774
1136
|
regenerateSecurityToken(args: RegenerateSecurityTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegenerateSecurityTokenCommandOutput) => void): void;
|
|
1775
1137
|
/**
|
|
1776
|
-
* @
|
|
1777
|
-
* <p>Resets the personal meeting PIN for the specified user on an Amazon Chime account. Returns
|
|
1778
|
-
* the <a>User</a> object with the updated personal meeting PIN.</p>
|
|
1138
|
+
* @see {@link ResetPersonalPINCommand}
|
|
1779
1139
|
*/
|
|
1780
1140
|
resetPersonalPIN(args: ResetPersonalPINCommandInput, options?: __HttpHandlerOptions): Promise<ResetPersonalPINCommandOutput>;
|
|
1781
1141
|
resetPersonalPIN(args: ResetPersonalPINCommandInput, cb: (err: any, data?: ResetPersonalPINCommandOutput) => void): void;
|
|
1782
1142
|
resetPersonalPIN(args: ResetPersonalPINCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetPersonalPINCommandOutput) => void): void;
|
|
1783
1143
|
/**
|
|
1784
|
-
* @
|
|
1785
|
-
* <p>Moves a phone number from the <b>Deletion queue</b> back into the
|
|
1786
|
-
* phone number <b>Inventory</b>.</p>
|
|
1144
|
+
* @see {@link RestorePhoneNumberCommand}
|
|
1787
1145
|
*/
|
|
1788
1146
|
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<RestorePhoneNumberCommandOutput>;
|
|
1789
1147
|
restorePhoneNumber(args: RestorePhoneNumberCommandInput, cb: (err: any, data?: RestorePhoneNumberCommandOutput) => void): void;
|
|
1790
1148
|
restorePhoneNumber(args: RestorePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestorePhoneNumberCommandOutput) => void): void;
|
|
1791
1149
|
/**
|
|
1792
|
-
* @
|
|
1793
|
-
* <p>Searches for phone numbers that can be ordered. For US numbers, provide at least one of
|
|
1794
|
-
* the following search filters: <code>AreaCode</code>, <code>City</code>,
|
|
1795
|
-
* <code>State</code>, or <code>TollFreePrefix</code>. If you provide
|
|
1796
|
-
* <code>City</code>, you must also provide <code>State</code>. Numbers outside the US only
|
|
1797
|
-
* support the <code>PhoneNumberType</code> filter, which you must use.</p>
|
|
1150
|
+
* @see {@link SearchAvailablePhoneNumbersCommand}
|
|
1798
1151
|
*/
|
|
1799
1152
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options?: __HttpHandlerOptions): Promise<SearchAvailablePhoneNumbersCommandOutput>;
|
|
1800
1153
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
1801
1154
|
searchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void): void;
|
|
1802
1155
|
/**
|
|
1803
|
-
* @
|
|
1804
|
-
* <p>Sends a message to a particular channel that the member is a part of.</p>
|
|
1805
|
-
*
|
|
1806
|
-
* <note>
|
|
1807
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1808
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1809
|
-
* the header.</p>
|
|
1810
|
-
*
|
|
1811
|
-
* <p>Also, <code>STANDARD</code> messages can contain 4KB of data and the 1KB of metadata.
|
|
1812
|
-
* <code>CONTROL</code> messages can contain 30 bytes of data and no metadata.</p>
|
|
1813
|
-
* </note>
|
|
1156
|
+
* @see {@link SendChannelMessageCommand}
|
|
1814
1157
|
*/
|
|
1815
1158
|
sendChannelMessage(args: SendChannelMessageCommandInput, options?: __HttpHandlerOptions): Promise<SendChannelMessageCommandOutput>;
|
|
1816
1159
|
sendChannelMessage(args: SendChannelMessageCommandInput, cb: (err: any, data?: SendChannelMessageCommandOutput) => void): void;
|
|
1817
1160
|
sendChannelMessage(args: SendChannelMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendChannelMessageCommandOutput) => void): void;
|
|
1818
1161
|
/**
|
|
1819
|
-
* @
|
|
1820
|
-
* <p>Starts transcription for the specified <code>meetingId</code>. </p>
|
|
1162
|
+
* @see {@link StartMeetingTranscriptionCommand}
|
|
1821
1163
|
*/
|
|
1822
1164
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartMeetingTranscriptionCommandOutput>;
|
|
1823
1165
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
1824
1166
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
1825
1167
|
/**
|
|
1826
|
-
* @
|
|
1827
|
-
* <p>Stops transcription for the specified <code>meetingId</code>.</p>
|
|
1168
|
+
* @see {@link StopMeetingTranscriptionCommand}
|
|
1828
1169
|
*/
|
|
1829
1170
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopMeetingTranscriptionCommandOutput>;
|
|
1830
1171
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
1831
1172
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
1832
1173
|
/**
|
|
1833
|
-
* @
|
|
1834
|
-
* <p>Applies the specified tags to the specified Amazon Chime SDK attendee.</p>
|
|
1174
|
+
* @see {@link TagAttendeeCommand}
|
|
1835
1175
|
*/
|
|
1836
1176
|
tagAttendee(args: TagAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<TagAttendeeCommandOutput>;
|
|
1837
1177
|
tagAttendee(args: TagAttendeeCommandInput, cb: (err: any, data?: TagAttendeeCommandOutput) => void): void;
|
|
1838
1178
|
tagAttendee(args: TagAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagAttendeeCommandOutput) => void): void;
|
|
1839
1179
|
/**
|
|
1840
|
-
* @
|
|
1841
|
-
* <p>Applies the specified tags to the specified Amazon Chime SDK meeting.</p>
|
|
1180
|
+
* @see {@link TagMeetingCommand}
|
|
1842
1181
|
*/
|
|
1843
1182
|
tagMeeting(args: TagMeetingCommandInput, options?: __HttpHandlerOptions): Promise<TagMeetingCommandOutput>;
|
|
1844
1183
|
tagMeeting(args: TagMeetingCommandInput, cb: (err: any, data?: TagMeetingCommandOutput) => void): void;
|
|
1845
1184
|
tagMeeting(args: TagMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagMeetingCommandOutput) => void): void;
|
|
1846
1185
|
/**
|
|
1847
|
-
* @
|
|
1848
|
-
* <p>Applies the specified tags to the specified Amazon Chime SDK meeting resource.</p>
|
|
1186
|
+
* @see {@link TagResourceCommand}
|
|
1849
1187
|
*/
|
|
1850
1188
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
1851
1189
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
1852
1190
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
1853
1191
|
/**
|
|
1854
|
-
* @
|
|
1855
|
-
* <p>Untags the specified tags from the specified Amazon Chime SDK attendee.</p>
|
|
1192
|
+
* @see {@link UntagAttendeeCommand}
|
|
1856
1193
|
*/
|
|
1857
1194
|
untagAttendee(args: UntagAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<UntagAttendeeCommandOutput>;
|
|
1858
1195
|
untagAttendee(args: UntagAttendeeCommandInput, cb: (err: any, data?: UntagAttendeeCommandOutput) => void): void;
|
|
1859
1196
|
untagAttendee(args: UntagAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagAttendeeCommandOutput) => void): void;
|
|
1860
1197
|
/**
|
|
1861
|
-
* @
|
|
1862
|
-
* <p>Untags the specified tags from the specified Amazon Chime SDK meeting.</p>
|
|
1198
|
+
* @see {@link UntagMeetingCommand}
|
|
1863
1199
|
*/
|
|
1864
1200
|
untagMeeting(args: UntagMeetingCommandInput, options?: __HttpHandlerOptions): Promise<UntagMeetingCommandOutput>;
|
|
1865
1201
|
untagMeeting(args: UntagMeetingCommandInput, cb: (err: any, data?: UntagMeetingCommandOutput) => void): void;
|
|
1866
1202
|
untagMeeting(args: UntagMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagMeetingCommandOutput) => void): void;
|
|
1867
1203
|
/**
|
|
1868
|
-
* @
|
|
1869
|
-
* <p>Untags the specified tags from the specified Amazon Chime SDK meeting resource.</p>
|
|
1204
|
+
* @see {@link UntagResourceCommand}
|
|
1870
1205
|
*/
|
|
1871
1206
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
1872
1207
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
1873
1208
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
1874
1209
|
/**
|
|
1875
|
-
* @
|
|
1876
|
-
* <p>Updates account details for the specified Amazon Chime account. Currently, only account name and default license updates are supported for this action.</p>
|
|
1210
|
+
* @see {@link UpdateAccountCommand}
|
|
1877
1211
|
*/
|
|
1878
1212
|
updateAccount(args: UpdateAccountCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccountCommandOutput>;
|
|
1879
1213
|
updateAccount(args: UpdateAccountCommandInput, cb: (err: any, data?: UpdateAccountCommandOutput) => void): void;
|
|
1880
1214
|
updateAccount(args: UpdateAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountCommandOutput) => void): void;
|
|
1881
1215
|
/**
|
|
1882
|
-
* @
|
|
1883
|
-
* <p>Updates the settings for the specified Amazon Chime account. You can update settings for
|
|
1884
|
-
* remote control of shared screens, or for the dial-out option. For more information about
|
|
1885
|
-
* these settings, see <a href="https://docs.aws.amazon.com/chime/latest/ag/policies.html">Use
|
|
1886
|
-
* the Policies Page</a> in the <i>Amazon Chime Administration
|
|
1887
|
-
* Guide</i>.</p>
|
|
1216
|
+
* @see {@link UpdateAccountSettingsCommand}
|
|
1888
1217
|
*/
|
|
1889
1218
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccountSettingsCommandOutput>;
|
|
1890
1219
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
1891
1220
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
1892
1221
|
/**
|
|
1893
|
-
* @
|
|
1894
|
-
* <p>Updates <code>AppInstance</code> metadata.</p>
|
|
1222
|
+
* @see {@link UpdateAppInstanceCommand}
|
|
1895
1223
|
*/
|
|
1896
1224
|
updateAppInstance(args: UpdateAppInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAppInstanceCommandOutput>;
|
|
1897
1225
|
updateAppInstance(args: UpdateAppInstanceCommandInput, cb: (err: any, data?: UpdateAppInstanceCommandOutput) => void): void;
|
|
1898
1226
|
updateAppInstance(args: UpdateAppInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAppInstanceCommandOutput) => void): void;
|
|
1899
1227
|
/**
|
|
1900
|
-
* @
|
|
1901
|
-
* <p>Updates the details of an <code>AppInstanceUser</code>. You can update names and metadata.</p>
|
|
1228
|
+
* @see {@link UpdateAppInstanceUserCommand}
|
|
1902
1229
|
*/
|
|
1903
1230
|
updateAppInstanceUser(args: UpdateAppInstanceUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAppInstanceUserCommandOutput>;
|
|
1904
1231
|
updateAppInstanceUser(args: UpdateAppInstanceUserCommandInput, cb: (err: any, data?: UpdateAppInstanceUserCommandOutput) => void): void;
|
|
1905
1232
|
updateAppInstanceUser(args: UpdateAppInstanceUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAppInstanceUserCommandOutput) => void): void;
|
|
1906
1233
|
/**
|
|
1907
|
-
* @
|
|
1908
|
-
* <p>Updates the status of the specified bot, such as starting or stopping the bot from running in your Amazon Chime Enterprise account.</p>
|
|
1234
|
+
* @see {@link UpdateBotCommand}
|
|
1909
1235
|
*/
|
|
1910
1236
|
updateBot(args: UpdateBotCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBotCommandOutput>;
|
|
1911
1237
|
updateBot(args: UpdateBotCommandInput, cb: (err: any, data?: UpdateBotCommandOutput) => void): void;
|
|
1912
1238
|
updateBot(args: UpdateBotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBotCommandOutput) => void): void;
|
|
1913
1239
|
/**
|
|
1914
|
-
* @
|
|
1915
|
-
* <p>Update a channel's attributes.</p>
|
|
1916
|
-
* <p>
|
|
1917
|
-
* <b>Restriction</b>: You can't change a channel's privacy. </p>
|
|
1918
|
-
* <note>
|
|
1919
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1920
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1921
|
-
* the header.</p>
|
|
1922
|
-
* </note>
|
|
1240
|
+
* @see {@link UpdateChannelCommand}
|
|
1923
1241
|
*/
|
|
1924
1242
|
updateChannel(args: UpdateChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelCommandOutput>;
|
|
1925
1243
|
updateChannel(args: UpdateChannelCommandInput, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
|
|
1926
1244
|
updateChannel(args: UpdateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
|
|
1927
1245
|
/**
|
|
1928
|
-
* @
|
|
1929
|
-
* <p>Updates the content of a message.</p>
|
|
1930
|
-
*
|
|
1931
|
-
* <note>
|
|
1932
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1933
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1934
|
-
* the header.</p>
|
|
1935
|
-
* </note>
|
|
1246
|
+
* @see {@link UpdateChannelMessageCommand}
|
|
1936
1247
|
*/
|
|
1937
1248
|
updateChannelMessage(args: UpdateChannelMessageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelMessageCommandOutput>;
|
|
1938
1249
|
updateChannelMessage(args: UpdateChannelMessageCommandInput, cb: (err: any, data?: UpdateChannelMessageCommandOutput) => void): void;
|
|
1939
1250
|
updateChannelMessage(args: UpdateChannelMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelMessageCommandOutput) => void): void;
|
|
1940
1251
|
/**
|
|
1941
|
-
* @
|
|
1942
|
-
* <p>The details of the time when a user last read messages in a channel.</p>
|
|
1943
|
-
*
|
|
1944
|
-
* <note>
|
|
1945
|
-
* <p>The <code>x-amz-chime-bearer</code> request header is mandatory. Use the
|
|
1946
|
-
* <code>AppInstanceUserArn</code> of the user that makes the API call as the value in
|
|
1947
|
-
* the header.</p>
|
|
1948
|
-
* </note>
|
|
1252
|
+
* @see {@link UpdateChannelReadMarkerCommand}
|
|
1949
1253
|
*/
|
|
1950
1254
|
updateChannelReadMarker(args: UpdateChannelReadMarkerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelReadMarkerCommandOutput>;
|
|
1951
1255
|
updateChannelReadMarker(args: UpdateChannelReadMarkerCommandInput, cb: (err: any, data?: UpdateChannelReadMarkerCommandOutput) => void): void;
|
|
1952
1256
|
updateChannelReadMarker(args: UpdateChannelReadMarkerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelReadMarkerCommandOutput) => void): void;
|
|
1953
1257
|
/**
|
|
1954
|
-
* @
|
|
1955
|
-
* <p>Updates global settings for the administrator's AWS account, such as Amazon Chime Business Calling and Amazon Chime Voice Connector settings.</p>
|
|
1258
|
+
* @see {@link UpdateGlobalSettingsCommand}
|
|
1956
1259
|
*/
|
|
1957
1260
|
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGlobalSettingsCommandOutput>;
|
|
1958
1261
|
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
|
|
1959
1262
|
updateGlobalSettings(args: UpdateGlobalSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGlobalSettingsCommandOutput) => void): void;
|
|
1960
1263
|
/**
|
|
1961
|
-
* @
|
|
1962
|
-
* <p>Updates phone number details, such as product type or calling name, for the specified phone number ID. You can update one phone number detail at a time. For example, you can update either the product type or the calling name in one action.</p>
|
|
1963
|
-
* <p>For toll-free numbers, you cannot use the Amazon Chime Business Calling product type. For numbers outside the U.S., you must use the Amazon Chime SIP Media Application Dial-In product type.</p>
|
|
1964
|
-
* <p>Updates to outbound calling names can take 72 hours to complete. Pending updates to outbound calling names must be complete before you can request another update.</p>
|
|
1264
|
+
* @see {@link UpdatePhoneNumberCommand}
|
|
1965
1265
|
*/
|
|
1966
1266
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePhoneNumberCommandOutput>;
|
|
1967
1267
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
1968
1268
|
updatePhoneNumber(args: UpdatePhoneNumberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePhoneNumberCommandOutput) => void): void;
|
|
1969
1269
|
/**
|
|
1970
|
-
* @
|
|
1971
|
-
* <p>Updates the phone number settings for the administrator's AWS account, such as the default
|
|
1972
|
-
* outbound calling name. You can update the default outbound calling name once every seven
|
|
1973
|
-
* days. Outbound calling names can take up to 72 hours to update.</p>
|
|
1270
|
+
* @see {@link UpdatePhoneNumberSettingsCommand}
|
|
1974
1271
|
*/
|
|
1975
1272
|
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePhoneNumberSettingsCommandOutput>;
|
|
1976
1273
|
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, cb: (err: any, data?: UpdatePhoneNumberSettingsCommandOutput) => void): void;
|
|
1977
1274
|
updatePhoneNumberSettings(args: UpdatePhoneNumberSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePhoneNumberSettingsCommandOutput) => void): void;
|
|
1978
1275
|
/**
|
|
1979
|
-
* @
|
|
1980
|
-
* <p>Updates the specified proxy session details, such as voice or SMS capabilities.</p>
|
|
1276
|
+
* @see {@link UpdateProxySessionCommand}
|
|
1981
1277
|
*/
|
|
1982
1278
|
updateProxySession(args: UpdateProxySessionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProxySessionCommandOutput>;
|
|
1983
1279
|
updateProxySession(args: UpdateProxySessionCommandInput, cb: (err: any, data?: UpdateProxySessionCommandOutput) => void): void;
|
|
1984
1280
|
updateProxySession(args: UpdateProxySessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProxySessionCommandOutput) => void): void;
|
|
1985
1281
|
/**
|
|
1986
|
-
* @
|
|
1987
|
-
* <p>Updates room details, such as the room name, for a room in an Amazon Chime Enterprise account.</p>
|
|
1282
|
+
* @see {@link UpdateRoomCommand}
|
|
1988
1283
|
*/
|
|
1989
1284
|
updateRoom(args: UpdateRoomCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoomCommandOutput>;
|
|
1990
1285
|
updateRoom(args: UpdateRoomCommandInput, cb: (err: any, data?: UpdateRoomCommandOutput) => void): void;
|
|
1991
1286
|
updateRoom(args: UpdateRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoomCommandOutput) => void): void;
|
|
1992
1287
|
/**
|
|
1993
|
-
* @
|
|
1994
|
-
* <p>Updates room membership details, such as the member role, for a room in an Amazon Chime
|
|
1995
|
-
* Enterprise account. The member role designates whether the member is a chat room
|
|
1996
|
-
* administrator or a general chat room member. The member role can be updated only for
|
|
1997
|
-
* user IDs.</p>
|
|
1288
|
+
* @see {@link UpdateRoomMembershipCommand}
|
|
1998
1289
|
*/
|
|
1999
1290
|
updateRoomMembership(args: UpdateRoomMembershipCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoomMembershipCommandOutput>;
|
|
2000
1291
|
updateRoomMembership(args: UpdateRoomMembershipCommandInput, cb: (err: any, data?: UpdateRoomMembershipCommandOutput) => void): void;
|
|
2001
1292
|
updateRoomMembership(args: UpdateRoomMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoomMembershipCommandOutput) => void): void;
|
|
2002
1293
|
/**
|
|
2003
|
-
* @
|
|
2004
|
-
* <p>Updates the details of the specified SIP media application.</p>
|
|
1294
|
+
* @see {@link UpdateSipMediaApplicationCommand}
|
|
2005
1295
|
*/
|
|
2006
1296
|
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSipMediaApplicationCommandOutput>;
|
|
2007
1297
|
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, cb: (err: any, data?: UpdateSipMediaApplicationCommandOutput) => void): void;
|
|
2008
1298
|
updateSipMediaApplication(args: UpdateSipMediaApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSipMediaApplicationCommandOutput) => void): void;
|
|
2009
1299
|
/**
|
|
2010
|
-
* @
|
|
2011
|
-
* <p>Invokes the AWS Lambda function associated with the SIP media application and transaction ID in an update request. The Lambda function can then return a new set of actions.</p>
|
|
1300
|
+
* @see {@link UpdateSipMediaApplicationCallCommand}
|
|
2012
1301
|
*/
|
|
2013
1302
|
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSipMediaApplicationCallCommandOutput>;
|
|
2014
1303
|
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, cb: (err: any, data?: UpdateSipMediaApplicationCallCommandOutput) => void): void;
|
|
2015
1304
|
updateSipMediaApplicationCall(args: UpdateSipMediaApplicationCallCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSipMediaApplicationCallCommandOutput) => void): void;
|
|
2016
1305
|
/**
|
|
2017
|
-
* @
|
|
2018
|
-
* <p>Updates the details of the specified SIP rule.</p>
|
|
1306
|
+
* @see {@link UpdateSipRuleCommand}
|
|
2019
1307
|
*/
|
|
2020
1308
|
updateSipRule(args: UpdateSipRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSipRuleCommandOutput>;
|
|
2021
1309
|
updateSipRule(args: UpdateSipRuleCommandInput, cb: (err: any, data?: UpdateSipRuleCommandOutput) => void): void;
|
|
2022
1310
|
updateSipRule(args: UpdateSipRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSipRuleCommandOutput) => void): void;
|
|
2023
1311
|
/**
|
|
2024
|
-
* @
|
|
2025
|
-
* <p>Updates user details for a specified user ID. Currently, only <code>LicenseType</code> updates are supported for this action.</p>
|
|
1312
|
+
* @see {@link UpdateUserCommand}
|
|
2026
1313
|
*/
|
|
2027
1314
|
updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
|
|
2028
1315
|
updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
2029
1316
|
updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
2030
1317
|
/**
|
|
2031
|
-
* @
|
|
2032
|
-
* <p>Updates the settings for the specified user, such as phone number settings.</p>
|
|
1318
|
+
* @see {@link UpdateUserSettingsCommand}
|
|
2033
1319
|
*/
|
|
2034
1320
|
updateUserSettings(args: UpdateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserSettingsCommandOutput>;
|
|
2035
1321
|
updateUserSettings(args: UpdateUserSettingsCommandInput, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
2036
1322
|
updateUserSettings(args: UpdateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
2037
1323
|
/**
|
|
2038
|
-
* @
|
|
2039
|
-
* <p>Updates details for the specified Amazon Chime Voice Connector.</p>
|
|
1324
|
+
* @see {@link UpdateVoiceConnectorCommand}
|
|
2040
1325
|
*/
|
|
2041
1326
|
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVoiceConnectorCommandOutput>;
|
|
2042
1327
|
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, cb: (err: any, data?: UpdateVoiceConnectorCommandOutput) => void): void;
|
|
2043
1328
|
updateVoiceConnector(args: UpdateVoiceConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVoiceConnectorCommandOutput) => void): void;
|
|
2044
1329
|
/**
|
|
2045
|
-
* @
|
|
2046
|
-
* <p>Updates details of the specified Amazon Chime Voice Connector group, such as the name and
|
|
2047
|
-
* Amazon Chime Voice Connector priority ranking.</p>
|
|
1330
|
+
* @see {@link UpdateVoiceConnectorGroupCommand}
|
|
2048
1331
|
*/
|
|
2049
1332
|
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVoiceConnectorGroupCommandOutput>;
|
|
2050
1333
|
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, cb: (err: any, data?: UpdateVoiceConnectorGroupCommandOutput) => void): void;
|
|
2051
1334
|
updateVoiceConnectorGroup(args: UpdateVoiceConnectorGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVoiceConnectorGroupCommandOutput) => void): void;
|
|
2052
1335
|
/**
|
|
2053
|
-
* @
|
|
2054
|
-
* <p>Validates an address to be used for 911 calls made with Amazon
|
|
2055
|
-
* Chime Voice Connectors. You can use validated addresses
|
|
2056
|
-
* in a Presence Information Data Format Location Object file that you include in SIP requests.
|
|
2057
|
-
* That helps ensure that addresses are routed to the appropriate Public Safety Answering Point.</p>
|
|
1336
|
+
* @see {@link ValidateE911AddressCommand}
|
|
2058
1337
|
*/
|
|
2059
1338
|
validateE911Address(args: ValidateE911AddressCommandInput, options?: __HttpHandlerOptions): Promise<ValidateE911AddressCommandOutput>;
|
|
2060
1339
|
validateE911Address(args: ValidateE911AddressCommandInput, cb: (err: any, data?: ValidateE911AddressCommandOutput) => void): void;
|
|
2061
1340
|
validateE911Address(args: ValidateE911AddressCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateE911AddressCommandOutput) => void): void;
|
|
2062
1341
|
}
|
|
1342
|
+
/**
|
|
1343
|
+
* @public
|
|
1344
|
+
* <p>The Amazon Chime API (application programming interface) is designed for developers to
|
|
1345
|
+
* perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice
|
|
1346
|
+
* Connectors. This guide provides detailed information about the Amazon Chime API,
|
|
1347
|
+
* including operations, types, inputs and outputs, and error codes. It also includes API actions for use with the Amazon Chime SDK, which developers use to build their own communication applications. For more information about the
|
|
1348
|
+
* Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html">
|
|
1349
|
+
* Using the Amazon Chime SDK
|
|
1350
|
+
* </a> in the <i>Amazon Chime Developer Guide</i>.</p>
|
|
1351
|
+
* <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the
|
|
1352
|
+
* AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p>
|
|
1353
|
+
* <dl>
|
|
1354
|
+
* <dt>Using an AWS SDK</dt>
|
|
1355
|
+
* <dd>
|
|
1356
|
+
* <p>
|
|
1357
|
+
* You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the
|
|
1358
|
+
* <a href="http://aws.amazon.com/developer/">AWS Developer Center</a>.
|
|
1359
|
+
* </p>
|
|
1360
|
+
* </dd>
|
|
1361
|
+
* <dt>Using the AWS CLI</dt>
|
|
1362
|
+
* <dd>
|
|
1363
|
+
* <p>Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see
|
|
1364
|
+
* <a href="https://docs.aws.amazon.com/cli/latest/userguide/installing.html">Installing the AWS Command Line Interface</a>
|
|
1365
|
+
* in the <i>AWS Command Line Interface User Guide</i>. For a list of available Amazon Chime commands, see the
|
|
1366
|
+
* <a href="https://docs.aws.amazon.com/cli/latest/reference/chime/index.html">Amazon Chime commands</a> in the
|
|
1367
|
+
* <i>AWS CLI Command Reference</i>.
|
|
1368
|
+
* </p>
|
|
1369
|
+
* </dd>
|
|
1370
|
+
* <dt>Using REST APIs</dt>
|
|
1371
|
+
* <dd>
|
|
1372
|
+
* <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports signature version 4. For more information, see
|
|
1373
|
+
* <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>
|
|
1374
|
+
* in the <i>Amazon Web Services General Reference</i>.</p>
|
|
1375
|
+
*
|
|
1376
|
+
* <p>When making REST API calls, use the service name <code>chime</code> and REST endpoint <code>https://service.chime.aws.amazon.com</code>.</p>
|
|
1377
|
+
* </dd>
|
|
1378
|
+
* </dl>
|
|
1379
|
+
*
|
|
1380
|
+
* <p>Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see
|
|
1381
|
+
* <a href="https://docs.aws.amazon.com/chime/latest/ag/security-iam.html">Identity and Access Management for Amazon Chime</a>
|
|
1382
|
+
* in the <i>Amazon Chime Administration Guide</i>.</p>
|
|
1383
|
+
*/
|
|
1384
|
+
export declare class Chime extends ChimeClient implements Chime {
|
|
1385
|
+
}
|