@aws-sdk/client-chime-sdk-voice 3.699.0 → 3.703.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.
Files changed (30) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +149 -0
  3. package/dist-es/ChimeSDKVoice.js +6 -0
  4. package/dist-es/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
  5. package/dist-es/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
  6. package/dist-es/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +17 -0
  9. package/dist-es/protocols/Aws_restJson1.js +73 -0
  10. package/dist-types/ChimeSDKVoice.d.ts +21 -0
  11. package/dist-types/ChimeSDKVoiceClient.d.ts +5 -2
  12. package/dist-types/commands/CreateVoiceConnectorCommand.d.ts +2 -0
  13. package/dist-types/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.d.ts +90 -0
  14. package/dist-types/commands/GetVoiceConnectorCommand.d.ts +1 -0
  15. package/dist-types/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.d.ts +100 -0
  16. package/dist-types/commands/ListVoiceConnectorsCommand.d.ts +1 -0
  17. package/dist-types/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.d.ts +108 -0
  18. package/dist-types/commands/UpdateVoiceConnectorCommand.d.ts +1 -0
  19. package/dist-types/commands/index.d.ts +3 -0
  20. package/dist-types/models/models_0.d.ts +159 -0
  21. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  22. package/dist-types/ts3.4/ChimeSDKVoice.d.ts +69 -0
  23. package/dist-types/ts3.4/ChimeSDKVoiceClient.d.ts +18 -0
  24. package/dist-types/ts3.4/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.d.ts +47 -0
  25. package/dist-types/ts3.4/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.d.ts +51 -0
  26. package/dist-types/ts3.4/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.d.ts +51 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +46 -0
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  30. package/package.json +1 -1
@@ -1141,6 +1141,18 @@ export declare const VoiceConnectorAwsRegion: {
1141
1141
  * @public
1142
1142
  */
1143
1143
  export type VoiceConnectorAwsRegion = (typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
1144
+ /**
1145
+ * @public
1146
+ * @enum
1147
+ */
1148
+ export declare const VoiceConnectorIntegrationType: {
1149
+ readonly CONNECT_ANALYTICS_CONNECTOR: "CONNECT_ANALYTICS_CONNECTOR";
1150
+ readonly CONNECT_CALL_TRANSFER_CONNECTOR: "CONNECT_CALL_TRANSFER_CONNECTOR";
1151
+ };
1152
+ /**
1153
+ * @public
1154
+ */
1155
+ export type VoiceConnectorIntegrationType = (typeof VoiceConnectorIntegrationType)[keyof typeof VoiceConnectorIntegrationType];
1144
1156
  /**
1145
1157
  * @public
1146
1158
  */
@@ -1166,6 +1178,39 @@ export interface CreateVoiceConnectorRequest {
1166
1178
  * @public
1167
1179
  */
1168
1180
  Tags?: Tag[] | undefined;
1181
+ /**
1182
+ * <p>The connectors for use with Amazon Connect.</p>
1183
+ * <p>The following options are available:</p>
1184
+ * <ul>
1185
+ * <li>
1186
+ * <p>
1187
+ * <code>CONNECT_CALL_TRANSFER_CONNECTOR</code> - Enables enterprises to integrate
1188
+ * Amazon Connect with other voice systems to directly transfer voice calls and
1189
+ * metadata without using the public telephone network. They can use Amazon Connect
1190
+ * telephony and Interactive Voice Response (IVR) with their existing voice systems to
1191
+ * modernize the IVR experience of their existing contact center and their enterprise
1192
+ * and branch voice systems. Additionally, enterprises migrating their contact center to
1193
+ * Amazon Connect can start with Connect telephony and IVR for immediate
1194
+ * modernization ahead of agent migration.</p>
1195
+ * </li>
1196
+ * <li>
1197
+ * <p>
1198
+ * <code>CONNECT_ANALYTICS_CONNECTOR</code> - Enables enterprises to integrate
1199
+ * Amazon Connect with other voice systems for real-time and post-call analytics.
1200
+ * They can use Amazon Connect Contact Lens with their existing voice systems to
1201
+ * provides call recordings, conversational analytics (including contact transcript,
1202
+ * sensitive data redaction, content categorization, theme detection, sentiment
1203
+ * analysis, real-time alerts, and post-contact summary), and agent performance
1204
+ * evaluations (including evaluation forms, automated evaluation, supervisor review)
1205
+ * with a rich user experience to display, search and filter customer interactions, and
1206
+ * programmatic access to data streams and the data lake. Additionally, enterprises
1207
+ * migrating their contact center to Amazon Connect can start with Contact Lens
1208
+ * analytics and performance insights ahead of agent migration.</p>
1209
+ * </li>
1210
+ * </ul>
1211
+ * @public
1212
+ */
1213
+ IntegrationType?: VoiceConnectorIntegrationType | undefined;
1169
1214
  }
1170
1215
  /**
1171
1216
  * <p>The Amazon Chime SDK Voice Connector configuration, including outbound
@@ -1214,6 +1259,11 @@ export interface VoiceConnector {
1214
1259
  * @public
1215
1260
  */
1216
1261
  VoiceConnectorArn?: string | undefined;
1262
+ /**
1263
+ * <p>The connectors for use with Amazon Connect.</p>
1264
+ * @public
1265
+ */
1266
+ IntegrationType?: VoiceConnectorIntegrationType | undefined;
1217
1267
  }
1218
1268
  /**
1219
1269
  * @public
@@ -1541,6 +1591,17 @@ export interface DeleteVoiceConnectorEmergencyCallingConfigurationRequest {
1541
1591
  */
1542
1592
  VoiceConnectorId: string | undefined;
1543
1593
  }
1594
+ /**
1595
+ * @public
1596
+ */
1597
+ export interface DeleteVoiceConnectorExternalSystemsConfigurationRequest {
1598
+ /**
1599
+ * <p>The ID of the Voice Connector for which to delete the external system
1600
+ * configuration.</p>
1601
+ * @public
1602
+ */
1603
+ VoiceConnectorId: string | undefined;
1604
+ }
1544
1605
  /**
1545
1606
  * @public
1546
1607
  */
@@ -2260,6 +2321,73 @@ export interface GetVoiceConnectorEmergencyCallingConfigurationResponse {
2260
2321
  */
2261
2322
  EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
2262
2323
  }
2324
+ /**
2325
+ * @public
2326
+ */
2327
+ export interface GetVoiceConnectorExternalSystemsConfigurationRequest {
2328
+ /**
2329
+ * <p>The ID of the Voice Connector for which to return information about the
2330
+ * external system configuration.</p>
2331
+ * @public
2332
+ */
2333
+ VoiceConnectorId: string | undefined;
2334
+ }
2335
+ /**
2336
+ * @public
2337
+ * @enum
2338
+ */
2339
+ export declare const ContactCenterSystemType: {
2340
+ readonly AVAYA_AURA_CALL_CENTER_ELITE: "AVAYA_AURA_CALL_CENTER_ELITE";
2341
+ readonly AVAYA_AURA_CONTACT_CENTER: "AVAYA_AURA_CONTACT_CENTER";
2342
+ readonly CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE: "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE";
2343
+ readonly GENESYS_ENGAGE_ON_PREMISES: "GENESYS_ENGAGE_ON_PREMISES";
2344
+ };
2345
+ /**
2346
+ * @public
2347
+ */
2348
+ export type ContactCenterSystemType = (typeof ContactCenterSystemType)[keyof typeof ContactCenterSystemType];
2349
+ /**
2350
+ * @public
2351
+ * @enum
2352
+ */
2353
+ export declare const SessionBorderControllerType: {
2354
+ readonly AUDIOCODES_MEDIANT_SBC: "AUDIOCODES_MEDIANT_SBC";
2355
+ readonly AVAYA_SBCE: "AVAYA_SBCE";
2356
+ readonly CISCO_UNIFIED_BORDER_ELEMENT: "CISCO_UNIFIED_BORDER_ELEMENT";
2357
+ readonly ORACLE_ACME_PACKET_SBC: "ORACLE_ACME_PACKET_SBC";
2358
+ readonly RIBBON_SBC: "RIBBON_SBC";
2359
+ };
2360
+ /**
2361
+ * @public
2362
+ */
2363
+ export type SessionBorderControllerType = (typeof SessionBorderControllerType)[keyof typeof SessionBorderControllerType];
2364
+ /**
2365
+ * <p>Contains information about an external systems configuration for a Voice
2366
+ * Connector.</p>
2367
+ * @public
2368
+ */
2369
+ export interface ExternalSystemsConfiguration {
2370
+ /**
2371
+ * <p>The session border controllers.</p>
2372
+ * @public
2373
+ */
2374
+ SessionBorderControllerTypes?: SessionBorderControllerType[] | undefined;
2375
+ /**
2376
+ * <p>The contact center system.</p>
2377
+ * @public
2378
+ */
2379
+ ContactCenterSystemTypes?: ContactCenterSystemType[] | undefined;
2380
+ }
2381
+ /**
2382
+ * @public
2383
+ */
2384
+ export interface GetVoiceConnectorExternalSystemsConfigurationResponse {
2385
+ /**
2386
+ * <p>An object that contains information about an external systems configuration for a Voice Connector.</p>
2387
+ * @public
2388
+ */
2389
+ ExternalSystemsConfiguration?: ExternalSystemsConfiguration | undefined;
2390
+ }
2263
2391
  /**
2264
2392
  * @public
2265
2393
  */
@@ -3290,6 +3418,37 @@ export interface PutVoiceConnectorEmergencyCallingConfigurationResponse {
3290
3418
  */
3291
3419
  EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
3292
3420
  }
3421
+ /**
3422
+ * @public
3423
+ */
3424
+ export interface PutVoiceConnectorExternalSystemsConfigurationRequest {
3425
+ /**
3426
+ * <p>The ID of the Voice Connector for which to add the external system
3427
+ * configuration.</p>
3428
+ * @public
3429
+ */
3430
+ VoiceConnectorId: string | undefined;
3431
+ /**
3432
+ * <p>The session border controllers to use.</p>
3433
+ * @public
3434
+ */
3435
+ SessionBorderControllerTypes?: SessionBorderControllerType[] | undefined;
3436
+ /**
3437
+ * <p>The contact center system to use.</p>
3438
+ * @public
3439
+ */
3440
+ ContactCenterSystemTypes?: ContactCenterSystemType[] | undefined;
3441
+ }
3442
+ /**
3443
+ * @public
3444
+ */
3445
+ export interface PutVoiceConnectorExternalSystemsConfigurationResponse {
3446
+ /**
3447
+ * <p>An object that contains information about an external systems configuration for a Voice Connector.</p>
3448
+ * @public
3449
+ */
3450
+ ExternalSystemsConfiguration?: ExternalSystemsConfiguration | undefined;
3451
+ }
3293
3452
  /**
3294
3453
  * @public
3295
3454
  */
@@ -19,6 +19,7 @@ import { DeleteSipMediaApplicationCommandInput, DeleteSipMediaApplicationCommand
19
19
  import { DeleteSipRuleCommandInput, DeleteSipRuleCommandOutput } from "../commands/DeleteSipRuleCommand";
20
20
  import { DeleteVoiceConnectorCommandInput, DeleteVoiceConnectorCommandOutput } from "../commands/DeleteVoiceConnectorCommand";
21
21
  import { DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "../commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
22
+ import { DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput } from "../commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand";
22
23
  import { DeleteVoiceConnectorGroupCommandInput, DeleteVoiceConnectorGroupCommandOutput } from "../commands/DeleteVoiceConnectorGroupCommand";
23
24
  import { DeleteVoiceConnectorOriginationCommandInput, DeleteVoiceConnectorOriginationCommandOutput } from "../commands/DeleteVoiceConnectorOriginationCommand";
24
25
  import { DeleteVoiceConnectorProxyCommandInput, DeleteVoiceConnectorProxyCommandOutput } from "../commands/DeleteVoiceConnectorProxyCommand";
@@ -41,6 +42,7 @@ import { GetSipRuleCommandInput, GetSipRuleCommandOutput } from "../commands/Get
41
42
  import { GetSpeakerSearchTaskCommandInput, GetSpeakerSearchTaskCommandOutput } from "../commands/GetSpeakerSearchTaskCommand";
42
43
  import { GetVoiceConnectorCommandInput, GetVoiceConnectorCommandOutput } from "../commands/GetVoiceConnectorCommand";
43
44
  import { GetVoiceConnectorEmergencyCallingConfigurationCommandInput, GetVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "../commands/GetVoiceConnectorEmergencyCallingConfigurationCommand";
45
+ import { GetVoiceConnectorExternalSystemsConfigurationCommandInput, GetVoiceConnectorExternalSystemsConfigurationCommandOutput } from "../commands/GetVoiceConnectorExternalSystemsConfigurationCommand";
44
46
  import { GetVoiceConnectorGroupCommandInput, GetVoiceConnectorGroupCommandOutput } from "../commands/GetVoiceConnectorGroupCommand";
45
47
  import { GetVoiceConnectorLoggingConfigurationCommandInput, GetVoiceConnectorLoggingConfigurationCommandOutput } from "../commands/GetVoiceConnectorLoggingConfigurationCommand";
46
48
  import { GetVoiceConnectorOriginationCommandInput, GetVoiceConnectorOriginationCommandOutput } from "../commands/GetVoiceConnectorOriginationCommand";
@@ -67,6 +69,7 @@ import { ListVoiceProfilesCommandInput, ListVoiceProfilesCommandOutput } from ".
67
69
  import { PutSipMediaApplicationAlexaSkillConfigurationCommandInput, PutSipMediaApplicationAlexaSkillConfigurationCommandOutput } from "../commands/PutSipMediaApplicationAlexaSkillConfigurationCommand";
68
70
  import { PutSipMediaApplicationLoggingConfigurationCommandInput, PutSipMediaApplicationLoggingConfigurationCommandOutput } from "../commands/PutSipMediaApplicationLoggingConfigurationCommand";
69
71
  import { PutVoiceConnectorEmergencyCallingConfigurationCommandInput, PutVoiceConnectorEmergencyCallingConfigurationCommandOutput } from "../commands/PutVoiceConnectorEmergencyCallingConfigurationCommand";
72
+ import { PutVoiceConnectorExternalSystemsConfigurationCommandInput, PutVoiceConnectorExternalSystemsConfigurationCommandOutput } from "../commands/PutVoiceConnectorExternalSystemsConfigurationCommand";
70
73
  import { PutVoiceConnectorLoggingConfigurationCommandInput, PutVoiceConnectorLoggingConfigurationCommandOutput } from "../commands/PutVoiceConnectorLoggingConfigurationCommand";
71
74
  import { PutVoiceConnectorOriginationCommandInput, PutVoiceConnectorOriginationCommandOutput } from "../commands/PutVoiceConnectorOriginationCommand";
72
75
  import { PutVoiceConnectorProxyCommandInput, PutVoiceConnectorProxyCommandOutput } from "../commands/PutVoiceConnectorProxyCommand";
@@ -169,6 +172,10 @@ export declare const se_DeleteVoiceConnectorCommand: (input: DeleteVoiceConnecto
169
172
  * serializeAws_restJson1DeleteVoiceConnectorEmergencyCallingConfigurationCommand
170
173
  */
171
174
  export declare const se_DeleteVoiceConnectorEmergencyCallingConfigurationCommand: (input: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
175
+ /**
176
+ * serializeAws_restJson1DeleteVoiceConnectorExternalSystemsConfigurationCommand
177
+ */
178
+ export declare const se_DeleteVoiceConnectorExternalSystemsConfigurationCommand: (input: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
172
179
  /**
173
180
  * serializeAws_restJson1DeleteVoiceConnectorGroupCommand
174
181
  */
@@ -257,6 +264,10 @@ export declare const se_GetVoiceConnectorCommand: (input: GetVoiceConnectorComma
257
264
  * serializeAws_restJson1GetVoiceConnectorEmergencyCallingConfigurationCommand
258
265
  */
259
266
  export declare const se_GetVoiceConnectorEmergencyCallingConfigurationCommand: (input: GetVoiceConnectorEmergencyCallingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
267
+ /**
268
+ * serializeAws_restJson1GetVoiceConnectorExternalSystemsConfigurationCommand
269
+ */
270
+ export declare const se_GetVoiceConnectorExternalSystemsConfigurationCommand: (input: GetVoiceConnectorExternalSystemsConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
260
271
  /**
261
272
  * serializeAws_restJson1GetVoiceConnectorGroupCommand
262
273
  */
@@ -361,6 +372,10 @@ export declare const se_PutSipMediaApplicationLoggingConfigurationCommand: (inpu
361
372
  * serializeAws_restJson1PutVoiceConnectorEmergencyCallingConfigurationCommand
362
373
  */
363
374
  export declare const se_PutVoiceConnectorEmergencyCallingConfigurationCommand: (input: PutVoiceConnectorEmergencyCallingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
375
+ /**
376
+ * serializeAws_restJson1PutVoiceConnectorExternalSystemsConfigurationCommand
377
+ */
378
+ export declare const se_PutVoiceConnectorExternalSystemsConfigurationCommand: (input: PutVoiceConnectorExternalSystemsConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
364
379
  /**
365
380
  * serializeAws_restJson1PutVoiceConnectorLoggingConfigurationCommand
366
381
  */
@@ -541,6 +556,10 @@ export declare const de_DeleteVoiceConnectorCommand: (output: __HttpResponse, co
541
556
  * deserializeAws_restJson1DeleteVoiceConnectorEmergencyCallingConfigurationCommand
542
557
  */
543
558
  export declare const de_DeleteVoiceConnectorEmergencyCallingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
559
+ /**
560
+ * deserializeAws_restJson1DeleteVoiceConnectorExternalSystemsConfigurationCommand
561
+ */
562
+ export declare const de_DeleteVoiceConnectorExternalSystemsConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput>;
544
563
  /**
545
564
  * deserializeAws_restJson1DeleteVoiceConnectorGroupCommand
546
565
  */
@@ -629,6 +648,10 @@ export declare const de_GetVoiceConnectorCommand: (output: __HttpResponse, conte
629
648
  * deserializeAws_restJson1GetVoiceConnectorEmergencyCallingConfigurationCommand
630
649
  */
631
650
  export declare const de_GetVoiceConnectorEmergencyCallingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
651
+ /**
652
+ * deserializeAws_restJson1GetVoiceConnectorExternalSystemsConfigurationCommand
653
+ */
654
+ export declare const de_GetVoiceConnectorExternalSystemsConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVoiceConnectorExternalSystemsConfigurationCommandOutput>;
632
655
  /**
633
656
  * deserializeAws_restJson1GetVoiceConnectorGroupCommand
634
657
  */
@@ -733,6 +756,10 @@ export declare const de_PutSipMediaApplicationLoggingConfigurationCommand: (outp
733
756
  * deserializeAws_restJson1PutVoiceConnectorEmergencyCallingConfigurationCommand
734
757
  */
735
758
  export declare const de_PutVoiceConnectorEmergencyCallingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
759
+ /**
760
+ * deserializeAws_restJson1PutVoiceConnectorExternalSystemsConfigurationCommand
761
+ */
762
+ export declare const de_PutVoiceConnectorExternalSystemsConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutVoiceConnectorExternalSystemsConfigurationCommandOutput>;
736
763
  /**
737
764
  * deserializeAws_restJson1PutVoiceConnectorLoggingConfigurationCommand
738
765
  */
@@ -76,6 +76,10 @@ import {
76
76
  DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput,
77
77
  DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput,
78
78
  } from "./commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
79
+ import {
80
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
81
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput,
82
+ } from "./commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand";
79
83
  import {
80
84
  DeleteVoiceConnectorGroupCommandInput,
81
85
  DeleteVoiceConnectorGroupCommandOutput,
@@ -164,6 +168,10 @@ import {
164
168
  GetVoiceConnectorEmergencyCallingConfigurationCommandInput,
165
169
  GetVoiceConnectorEmergencyCallingConfigurationCommandOutput,
166
170
  } from "./commands/GetVoiceConnectorEmergencyCallingConfigurationCommand";
171
+ import {
172
+ GetVoiceConnectorExternalSystemsConfigurationCommandInput,
173
+ GetVoiceConnectorExternalSystemsConfigurationCommandOutput,
174
+ } from "./commands/GetVoiceConnectorExternalSystemsConfigurationCommand";
167
175
  import {
168
176
  GetVoiceConnectorGroupCommandInput,
169
177
  GetVoiceConnectorGroupCommandOutput,
@@ -268,6 +276,10 @@ import {
268
276
  PutVoiceConnectorEmergencyCallingConfigurationCommandInput,
269
277
  PutVoiceConnectorEmergencyCallingConfigurationCommandOutput,
270
278
  } from "./commands/PutVoiceConnectorEmergencyCallingConfigurationCommand";
279
+ import {
280
+ PutVoiceConnectorExternalSystemsConfigurationCommandInput,
281
+ PutVoiceConnectorExternalSystemsConfigurationCommandOutput,
282
+ } from "./commands/PutVoiceConnectorExternalSystemsConfigurationCommand";
271
283
  import {
272
284
  PutVoiceConnectorLoggingConfigurationCommandInput,
273
285
  PutVoiceConnectorLoggingConfigurationCommandOutput,
@@ -638,6 +650,25 @@ export interface ChimeSDKVoice {
638
650
  data?: DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput
639
651
  ) => void
640
652
  ): void;
653
+ deleteVoiceConnectorExternalSystemsConfiguration(
654
+ args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
655
+ options?: __HttpHandlerOptions
656
+ ): Promise<DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput>;
657
+ deleteVoiceConnectorExternalSystemsConfiguration(
658
+ args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
659
+ cb: (
660
+ err: any,
661
+ data?: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput
662
+ ) => void
663
+ ): void;
664
+ deleteVoiceConnectorExternalSystemsConfiguration(
665
+ args: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
666
+ options: __HttpHandlerOptions,
667
+ cb: (
668
+ err: any,
669
+ data?: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput
670
+ ) => void
671
+ ): void;
641
672
  deleteVoiceConnectorGroup(
642
673
  args: DeleteVoiceConnectorGroupCommandInput,
643
674
  options?: __HttpHandlerOptions
@@ -968,6 +999,25 @@ export interface ChimeSDKVoice {
968
999
  data?: GetVoiceConnectorEmergencyCallingConfigurationCommandOutput
969
1000
  ) => void
970
1001
  ): void;
1002
+ getVoiceConnectorExternalSystemsConfiguration(
1003
+ args: GetVoiceConnectorExternalSystemsConfigurationCommandInput,
1004
+ options?: __HttpHandlerOptions
1005
+ ): Promise<GetVoiceConnectorExternalSystemsConfigurationCommandOutput>;
1006
+ getVoiceConnectorExternalSystemsConfiguration(
1007
+ args: GetVoiceConnectorExternalSystemsConfigurationCommandInput,
1008
+ cb: (
1009
+ err: any,
1010
+ data?: GetVoiceConnectorExternalSystemsConfigurationCommandOutput
1011
+ ) => void
1012
+ ): void;
1013
+ getVoiceConnectorExternalSystemsConfiguration(
1014
+ args: GetVoiceConnectorExternalSystemsConfigurationCommandInput,
1015
+ options: __HttpHandlerOptions,
1016
+ cb: (
1017
+ err: any,
1018
+ data?: GetVoiceConnectorExternalSystemsConfigurationCommandOutput
1019
+ ) => void
1020
+ ): void;
971
1021
  getVoiceConnectorGroup(
972
1022
  args: GetVoiceConnectorGroupCommandInput,
973
1023
  options?: __HttpHandlerOptions
@@ -1368,6 +1418,25 @@ export interface ChimeSDKVoice {
1368
1418
  data?: PutVoiceConnectorEmergencyCallingConfigurationCommandOutput
1369
1419
  ) => void
1370
1420
  ): void;
1421
+ putVoiceConnectorExternalSystemsConfiguration(
1422
+ args: PutVoiceConnectorExternalSystemsConfigurationCommandInput,
1423
+ options?: __HttpHandlerOptions
1424
+ ): Promise<PutVoiceConnectorExternalSystemsConfigurationCommandOutput>;
1425
+ putVoiceConnectorExternalSystemsConfiguration(
1426
+ args: PutVoiceConnectorExternalSystemsConfigurationCommandInput,
1427
+ cb: (
1428
+ err: any,
1429
+ data?: PutVoiceConnectorExternalSystemsConfigurationCommandOutput
1430
+ ) => void
1431
+ ): void;
1432
+ putVoiceConnectorExternalSystemsConfiguration(
1433
+ args: PutVoiceConnectorExternalSystemsConfigurationCommandInput,
1434
+ options: __HttpHandlerOptions,
1435
+ cb: (
1436
+ err: any,
1437
+ data?: PutVoiceConnectorExternalSystemsConfigurationCommandOutput
1438
+ ) => void
1439
+ ): void;
1371
1440
  putVoiceConnectorLoggingConfiguration(
1372
1441
  args: PutVoiceConnectorLoggingConfigurationCommandInput,
1373
1442
  options?: __HttpHandlerOptions
@@ -121,6 +121,10 @@ import {
121
121
  DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput,
122
122
  DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput,
123
123
  } from "./commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
124
+ import {
125
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
126
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput,
127
+ } from "./commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand";
124
128
  import {
125
129
  DeleteVoiceConnectorGroupCommandInput,
126
130
  DeleteVoiceConnectorGroupCommandOutput,
@@ -209,6 +213,10 @@ import {
209
213
  GetVoiceConnectorEmergencyCallingConfigurationCommandInput,
210
214
  GetVoiceConnectorEmergencyCallingConfigurationCommandOutput,
211
215
  } from "./commands/GetVoiceConnectorEmergencyCallingConfigurationCommand";
216
+ import {
217
+ GetVoiceConnectorExternalSystemsConfigurationCommandInput,
218
+ GetVoiceConnectorExternalSystemsConfigurationCommandOutput,
219
+ } from "./commands/GetVoiceConnectorExternalSystemsConfigurationCommand";
212
220
  import {
213
221
  GetVoiceConnectorGroupCommandInput,
214
222
  GetVoiceConnectorGroupCommandOutput,
@@ -313,6 +321,10 @@ import {
313
321
  PutVoiceConnectorEmergencyCallingConfigurationCommandInput,
314
322
  PutVoiceConnectorEmergencyCallingConfigurationCommandOutput,
315
323
  } from "./commands/PutVoiceConnectorEmergencyCallingConfigurationCommand";
324
+ import {
325
+ PutVoiceConnectorExternalSystemsConfigurationCommandInput,
326
+ PutVoiceConnectorExternalSystemsConfigurationCommandOutput,
327
+ } from "./commands/PutVoiceConnectorExternalSystemsConfigurationCommand";
316
328
  import {
317
329
  PutVoiceConnectorLoggingConfigurationCommandInput,
318
330
  PutVoiceConnectorLoggingConfigurationCommandOutput,
@@ -444,6 +456,7 @@ export type ServiceInputTypes =
444
456
  | DeleteSipRuleCommandInput
445
457
  | DeleteVoiceConnectorCommandInput
446
458
  | DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput
459
+ | DeleteVoiceConnectorExternalSystemsConfigurationCommandInput
447
460
  | DeleteVoiceConnectorGroupCommandInput
448
461
  | DeleteVoiceConnectorOriginationCommandInput
449
462
  | DeleteVoiceConnectorProxyCommandInput
@@ -466,6 +479,7 @@ export type ServiceInputTypes =
466
479
  | GetSpeakerSearchTaskCommandInput
467
480
  | GetVoiceConnectorCommandInput
468
481
  | GetVoiceConnectorEmergencyCallingConfigurationCommandInput
482
+ | GetVoiceConnectorExternalSystemsConfigurationCommandInput
469
483
  | GetVoiceConnectorGroupCommandInput
470
484
  | GetVoiceConnectorLoggingConfigurationCommandInput
471
485
  | GetVoiceConnectorOriginationCommandInput
@@ -492,6 +506,7 @@ export type ServiceInputTypes =
492
506
  | PutSipMediaApplicationAlexaSkillConfigurationCommandInput
493
507
  | PutSipMediaApplicationLoggingConfigurationCommandInput
494
508
  | PutVoiceConnectorEmergencyCallingConfigurationCommandInput
509
+ | PutVoiceConnectorExternalSystemsConfigurationCommandInput
495
510
  | PutVoiceConnectorLoggingConfigurationCommandInput
496
511
  | PutVoiceConnectorOriginationCommandInput
497
512
  | PutVoiceConnectorProxyCommandInput
@@ -538,6 +553,7 @@ export type ServiceOutputTypes =
538
553
  | DeleteSipRuleCommandOutput
539
554
  | DeleteVoiceConnectorCommandOutput
540
555
  | DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput
556
+ | DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput
541
557
  | DeleteVoiceConnectorGroupCommandOutput
542
558
  | DeleteVoiceConnectorOriginationCommandOutput
543
559
  | DeleteVoiceConnectorProxyCommandOutput
@@ -560,6 +576,7 @@ export type ServiceOutputTypes =
560
576
  | GetSpeakerSearchTaskCommandOutput
561
577
  | GetVoiceConnectorCommandOutput
562
578
  | GetVoiceConnectorEmergencyCallingConfigurationCommandOutput
579
+ | GetVoiceConnectorExternalSystemsConfigurationCommandOutput
563
580
  | GetVoiceConnectorGroupCommandOutput
564
581
  | GetVoiceConnectorLoggingConfigurationCommandOutput
565
582
  | GetVoiceConnectorOriginationCommandOutput
@@ -586,6 +603,7 @@ export type ServiceOutputTypes =
586
603
  | PutSipMediaApplicationAlexaSkillConfigurationCommandOutput
587
604
  | PutSipMediaApplicationLoggingConfigurationCommandOutput
588
605
  | PutVoiceConnectorEmergencyCallingConfigurationCommandOutput
606
+ | PutVoiceConnectorExternalSystemsConfigurationCommandOutput
589
607
  | PutVoiceConnectorLoggingConfigurationCommandOutput
590
608
  | PutVoiceConnectorOriginationCommandOutput
591
609
  | PutVoiceConnectorProxyCommandOutput
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ChimeSDKVoiceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ChimeSDKVoiceClient";
8
+ import { DeleteVoiceConnectorExternalSystemsConfigurationRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteVoiceConnectorExternalSystemsConfigurationCommandInput
12
+ extends DeleteVoiceConnectorExternalSystemsConfigurationRequest {}
13
+ export interface DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteVoiceConnectorExternalSystemsConfigurationCommand_base: {
16
+ new (
17
+ input: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
20
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput,
21
+ ChimeSDKVoiceClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
29
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput,
30
+ ChimeSDKVoiceClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteVoiceConnectorExternalSystemsConfigurationCommand extends DeleteVoiceConnectorExternalSystemsConfigurationCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteVoiceConnectorExternalSystemsConfigurationRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput;
44
+ output: DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ChimeSDKVoiceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ChimeSDKVoiceClient";
8
+ import {
9
+ GetVoiceConnectorExternalSystemsConfigurationRequest,
10
+ GetVoiceConnectorExternalSystemsConfigurationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetVoiceConnectorExternalSystemsConfigurationCommandInput
15
+ extends GetVoiceConnectorExternalSystemsConfigurationRequest {}
16
+ export interface GetVoiceConnectorExternalSystemsConfigurationCommandOutput
17
+ extends GetVoiceConnectorExternalSystemsConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetVoiceConnectorExternalSystemsConfigurationCommand_base: {
20
+ new (
21
+ input: GetVoiceConnectorExternalSystemsConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetVoiceConnectorExternalSystemsConfigurationCommandInput,
24
+ GetVoiceConnectorExternalSystemsConfigurationCommandOutput,
25
+ ChimeSDKVoiceClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetVoiceConnectorExternalSystemsConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetVoiceConnectorExternalSystemsConfigurationCommandInput,
33
+ GetVoiceConnectorExternalSystemsConfigurationCommandOutput,
34
+ ChimeSDKVoiceClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetVoiceConnectorExternalSystemsConfigurationCommand extends GetVoiceConnectorExternalSystemsConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetVoiceConnectorExternalSystemsConfigurationRequest;
44
+ output: GetVoiceConnectorExternalSystemsConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetVoiceConnectorExternalSystemsConfigurationCommandInput;
48
+ output: GetVoiceConnectorExternalSystemsConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ChimeSDKVoiceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ChimeSDKVoiceClient";
8
+ import {
9
+ PutVoiceConnectorExternalSystemsConfigurationRequest,
10
+ PutVoiceConnectorExternalSystemsConfigurationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutVoiceConnectorExternalSystemsConfigurationCommandInput
15
+ extends PutVoiceConnectorExternalSystemsConfigurationRequest {}
16
+ export interface PutVoiceConnectorExternalSystemsConfigurationCommandOutput
17
+ extends PutVoiceConnectorExternalSystemsConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const PutVoiceConnectorExternalSystemsConfigurationCommand_base: {
20
+ new (
21
+ input: PutVoiceConnectorExternalSystemsConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutVoiceConnectorExternalSystemsConfigurationCommandInput,
24
+ PutVoiceConnectorExternalSystemsConfigurationCommandOutput,
25
+ ChimeSDKVoiceClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: PutVoiceConnectorExternalSystemsConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutVoiceConnectorExternalSystemsConfigurationCommandInput,
33
+ PutVoiceConnectorExternalSystemsConfigurationCommandOutput,
34
+ ChimeSDKVoiceClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutVoiceConnectorExternalSystemsConfigurationCommand extends PutVoiceConnectorExternalSystemsConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutVoiceConnectorExternalSystemsConfigurationRequest;
44
+ output: PutVoiceConnectorExternalSystemsConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: PutVoiceConnectorExternalSystemsConfigurationCommandInput;
48
+ output: PutVoiceConnectorExternalSystemsConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -17,6 +17,7 @@ export * from "./DeleteSipMediaApplicationCommand";
17
17
  export * from "./DeleteSipRuleCommand";
18
18
  export * from "./DeleteVoiceConnectorCommand";
19
19
  export * from "./DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
20
+ export * from "./DeleteVoiceConnectorExternalSystemsConfigurationCommand";
20
21
  export * from "./DeleteVoiceConnectorGroupCommand";
21
22
  export * from "./DeleteVoiceConnectorOriginationCommand";
22
23
  export * from "./DeleteVoiceConnectorProxyCommand";
@@ -39,6 +40,7 @@ export * from "./GetSipRuleCommand";
39
40
  export * from "./GetSpeakerSearchTaskCommand";
40
41
  export * from "./GetVoiceConnectorCommand";
41
42
  export * from "./GetVoiceConnectorEmergencyCallingConfigurationCommand";
43
+ export * from "./GetVoiceConnectorExternalSystemsConfigurationCommand";
42
44
  export * from "./GetVoiceConnectorGroupCommand";
43
45
  export * from "./GetVoiceConnectorLoggingConfigurationCommand";
44
46
  export * from "./GetVoiceConnectorOriginationCommand";
@@ -65,6 +67,7 @@ export * from "./ListVoiceProfilesCommand";
65
67
  export * from "./PutSipMediaApplicationAlexaSkillConfigurationCommand";
66
68
  export * from "./PutSipMediaApplicationLoggingConfigurationCommand";
67
69
  export * from "./PutVoiceConnectorEmergencyCallingConfigurationCommand";
70
+ export * from "./PutVoiceConnectorExternalSystemsConfigurationCommand";
68
71
  export * from "./PutVoiceConnectorLoggingConfigurationCommand";
69
72
  export * from "./PutVoiceConnectorOriginationCommand";
70
73
  export * from "./PutVoiceConnectorProxyCommand";