@aws-sdk/client-chime-sdk-voice 3.301.0 → 3.303.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/models/models_0.js +121 -140
- package/dist-es/models/models_0.js +121 -140
- package/dist-types/models/models_0.d.ts +216 -121
- package/dist-types/ts3.4/models/models_0.d.ts +155 -121
- package/package.json +34 -34
|
@@ -2,25 +2,30 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { ChimeSDKVoiceServiceException as __BaseException } from "./ChimeSDKVoiceServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
AccessDenied
|
|
8
|
-
BadRequest
|
|
9
|
-
Conflict
|
|
10
|
-
Forbidden
|
|
11
|
-
Gone
|
|
12
|
-
NotFound
|
|
13
|
-
PhoneNumberAssociationsExist
|
|
14
|
-
PreconditionFailed
|
|
15
|
-
ResourceLimitExceeded
|
|
16
|
-
ServiceFailure
|
|
17
|
-
ServiceUnavailable
|
|
18
|
-
Throttled
|
|
19
|
-
Throttling
|
|
20
|
-
Unauthorized
|
|
21
|
-
Unprocessable
|
|
22
|
-
VoiceConnectorGroupAssociationsExist
|
|
23
|
-
}
|
|
7
|
+
export declare const ErrorCode: {
|
|
8
|
+
readonly AccessDenied: "AccessDenied";
|
|
9
|
+
readonly BadRequest: "BadRequest";
|
|
10
|
+
readonly Conflict: "Conflict";
|
|
11
|
+
readonly Forbidden: "Forbidden";
|
|
12
|
+
readonly Gone: "Gone";
|
|
13
|
+
readonly NotFound: "NotFound";
|
|
14
|
+
readonly PhoneNumberAssociationsExist: "PhoneNumberAssociationsExist";
|
|
15
|
+
readonly PreconditionFailed: "PreconditionFailed";
|
|
16
|
+
readonly ResourceLimitExceeded: "ResourceLimitExceeded";
|
|
17
|
+
readonly ServiceFailure: "ServiceFailure";
|
|
18
|
+
readonly ServiceUnavailable: "ServiceUnavailable";
|
|
19
|
+
readonly Throttled: "Throttled";
|
|
20
|
+
readonly Throttling: "Throttling";
|
|
21
|
+
readonly Unauthorized: "Unauthorized";
|
|
22
|
+
readonly Unprocessable: "Unprocessable";
|
|
23
|
+
readonly VoiceConnectorGroupAssociationsExist: "VoiceConnectorGroupAssociationsExist";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
24
29
|
/**
|
|
25
30
|
* @public
|
|
26
31
|
* <p>You don't have the permissions needed to run this action.</p>
|
|
@@ -85,11 +90,16 @@ export interface Address {
|
|
|
85
90
|
}
|
|
86
91
|
/**
|
|
87
92
|
* @public
|
|
93
|
+
* @enum
|
|
88
94
|
*/
|
|
89
|
-
export declare
|
|
90
|
-
ACTIVE
|
|
91
|
-
INACTIVE
|
|
92
|
-
}
|
|
95
|
+
export declare const AlexaSkillStatus: {
|
|
96
|
+
readonly ACTIVE: "ACTIVE";
|
|
97
|
+
readonly INACTIVE: "INACTIVE";
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export type AlexaSkillStatus = (typeof AlexaSkillStatus)[keyof typeof AlexaSkillStatus];
|
|
93
103
|
/**
|
|
94
104
|
* @public
|
|
95
105
|
*/
|
|
@@ -281,11 +291,16 @@ export interface BatchDeletePhoneNumberResponse {
|
|
|
281
291
|
}
|
|
282
292
|
/**
|
|
283
293
|
* @public
|
|
294
|
+
* @enum
|
|
284
295
|
*/
|
|
285
|
-
export declare
|
|
286
|
-
SipMediaApplicationDialIn
|
|
287
|
-
VoiceConnector
|
|
288
|
-
}
|
|
296
|
+
export declare const PhoneNumberProductType: {
|
|
297
|
+
readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
|
|
298
|
+
readonly VoiceConnector: "VoiceConnector";
|
|
299
|
+
};
|
|
300
|
+
/**
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
export type PhoneNumberProductType = (typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
|
|
289
304
|
/**
|
|
290
305
|
* @public
|
|
291
306
|
* <p>The phone number ID, product type, or calling name fields to update,
|
|
@@ -343,13 +358,18 @@ export interface CallDetails {
|
|
|
343
358
|
}
|
|
344
359
|
/**
|
|
345
360
|
* @public
|
|
361
|
+
* @enum
|
|
346
362
|
*/
|
|
347
|
-
export declare
|
|
348
|
-
Unassigned
|
|
349
|
-
UpdateFailed
|
|
350
|
-
UpdateInProgress
|
|
351
|
-
UpdateSucceeded
|
|
352
|
-
}
|
|
363
|
+
export declare const CallingNameStatus: {
|
|
364
|
+
readonly Unassigned: "Unassigned";
|
|
365
|
+
readonly UpdateFailed: "UpdateFailed";
|
|
366
|
+
readonly UpdateInProgress: "UpdateInProgress";
|
|
367
|
+
readonly UpdateSucceeded: "UpdateSucceeded";
|
|
368
|
+
};
|
|
369
|
+
/**
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
export type CallingNameStatus = (typeof CallingNameStatus)[keyof typeof CallingNameStatus];
|
|
353
373
|
/**
|
|
354
374
|
* @public
|
|
355
375
|
* <p>A suggested address.</p>
|
|
@@ -386,11 +406,16 @@ export interface CandidateAddress {
|
|
|
386
406
|
}
|
|
387
407
|
/**
|
|
388
408
|
* @public
|
|
409
|
+
* @enum
|
|
389
410
|
*/
|
|
390
|
-
export declare
|
|
391
|
-
SMS
|
|
392
|
-
Voice
|
|
393
|
-
}
|
|
411
|
+
export declare const Capability: {
|
|
412
|
+
readonly SMS: "SMS";
|
|
413
|
+
readonly Voice: "Voice";
|
|
414
|
+
};
|
|
415
|
+
/**
|
|
416
|
+
* @public
|
|
417
|
+
*/
|
|
418
|
+
export type Capability = (typeof Capability)[keyof typeof Capability];
|
|
394
419
|
/**
|
|
395
420
|
* @public
|
|
396
421
|
*/
|
|
@@ -406,12 +431,17 @@ export interface CreatePhoneNumberOrderRequest {
|
|
|
406
431
|
}
|
|
407
432
|
/**
|
|
408
433
|
* @public
|
|
434
|
+
* @enum
|
|
409
435
|
*/
|
|
410
|
-
export declare
|
|
411
|
-
Acquired
|
|
412
|
-
Failed
|
|
413
|
-
Processing
|
|
414
|
-
}
|
|
436
|
+
export declare const OrderedPhoneNumberStatus: {
|
|
437
|
+
readonly Acquired: "Acquired";
|
|
438
|
+
readonly Failed: "Failed";
|
|
439
|
+
readonly Processing: "Processing";
|
|
440
|
+
};
|
|
441
|
+
/**
|
|
442
|
+
* @public
|
|
443
|
+
*/
|
|
444
|
+
export type OrderedPhoneNumberStatus = (typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
|
|
415
445
|
/**
|
|
416
446
|
* @public
|
|
417
447
|
* <p>A phone number for which an order has been placed.</p>
|
|
@@ -428,27 +458,37 @@ export interface OrderedPhoneNumber {
|
|
|
428
458
|
}
|
|
429
459
|
/**
|
|
430
460
|
* @public
|
|
461
|
+
* @enum
|
|
431
462
|
*/
|
|
432
|
-
export declare
|
|
433
|
-
New
|
|
434
|
-
Porting
|
|
435
|
-
}
|
|
463
|
+
export declare const PhoneNumberOrderType: {
|
|
464
|
+
readonly New: "New";
|
|
465
|
+
readonly Porting: "Porting";
|
|
466
|
+
};
|
|
436
467
|
/**
|
|
437
468
|
* @public
|
|
438
469
|
*/
|
|
439
|
-
export
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
470
|
+
export type PhoneNumberOrderType = (typeof PhoneNumberOrderType)[keyof typeof PhoneNumberOrderType];
|
|
471
|
+
/**
|
|
472
|
+
* @public
|
|
473
|
+
* @enum
|
|
474
|
+
*/
|
|
475
|
+
export declare const PhoneNumberOrderStatus: {
|
|
476
|
+
readonly CancelRequested: "CancelRequested";
|
|
477
|
+
readonly Cancelled: "Cancelled";
|
|
478
|
+
readonly ChangeRequested: "ChangeRequested";
|
|
479
|
+
readonly Exception: "Exception";
|
|
480
|
+
readonly FOC: "FOC";
|
|
481
|
+
readonly Failed: "Failed";
|
|
482
|
+
readonly Partial: "Partial";
|
|
483
|
+
readonly PendingDocuments: "PendingDocuments";
|
|
484
|
+
readonly Processing: "Processing";
|
|
485
|
+
readonly Submitted: "Submitted";
|
|
486
|
+
readonly Successful: "Successful";
|
|
487
|
+
};
|
|
488
|
+
/**
|
|
489
|
+
* @public
|
|
490
|
+
*/
|
|
491
|
+
export type PhoneNumberOrderStatus = (typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
|
|
452
492
|
/**
|
|
453
493
|
* @public
|
|
454
494
|
* <p>The details of an Amazon Chime SDK phone number order.</p>
|
|
@@ -509,11 +549,16 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
509
549
|
}
|
|
510
550
|
/**
|
|
511
551
|
* @public
|
|
552
|
+
* @enum
|
|
512
553
|
*/
|
|
513
|
-
export declare
|
|
514
|
-
AreaCode
|
|
515
|
-
Country
|
|
516
|
-
}
|
|
554
|
+
export declare const GeoMatchLevel: {
|
|
555
|
+
readonly AreaCode: "AreaCode";
|
|
556
|
+
readonly Country: "Country";
|
|
557
|
+
};
|
|
558
|
+
/**
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
561
|
+
export type GeoMatchLevel = (typeof GeoMatchLevel)[keyof typeof GeoMatchLevel];
|
|
517
562
|
/**
|
|
518
563
|
* @public
|
|
519
564
|
* <p>The country and area code for a proxy phone number in a proxy phone session.</p>
|
|
@@ -530,11 +575,16 @@ export interface GeoMatchParams {
|
|
|
530
575
|
}
|
|
531
576
|
/**
|
|
532
577
|
* @public
|
|
578
|
+
* @enum
|
|
533
579
|
*/
|
|
534
|
-
export declare
|
|
535
|
-
AvoidSticky
|
|
536
|
-
PreferSticky
|
|
537
|
-
}
|
|
580
|
+
export declare const NumberSelectionBehavior: {
|
|
581
|
+
readonly AvoidSticky: "AvoidSticky";
|
|
582
|
+
readonly PreferSticky: "PreferSticky";
|
|
583
|
+
};
|
|
584
|
+
/**
|
|
585
|
+
* @public
|
|
586
|
+
*/
|
|
587
|
+
export type NumberSelectionBehavior = (typeof NumberSelectionBehavior)[keyof typeof NumberSelectionBehavior];
|
|
538
588
|
/**
|
|
539
589
|
* @public
|
|
540
590
|
*/
|
|
@@ -589,12 +639,17 @@ export interface Participant {
|
|
|
589
639
|
}
|
|
590
640
|
/**
|
|
591
641
|
* @public
|
|
642
|
+
* @enum
|
|
592
643
|
*/
|
|
593
|
-
export declare
|
|
594
|
-
Closed
|
|
595
|
-
InProgress
|
|
596
|
-
Open
|
|
597
|
-
}
|
|
644
|
+
export declare const ProxySessionStatus: {
|
|
645
|
+
readonly Closed: "Closed";
|
|
646
|
+
readonly InProgress: "InProgress";
|
|
647
|
+
readonly Open: "Open";
|
|
648
|
+
};
|
|
649
|
+
/**
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
export type ProxySessionStatus = (typeof ProxySessionStatus)[keyof typeof ProxySessionStatus];
|
|
598
653
|
/**
|
|
599
654
|
* @public
|
|
600
655
|
* <p>The proxy session for an Amazon Chime SDK Voice Connector.</p>
|
|
@@ -813,11 +868,16 @@ export interface SipRuleTargetApplication {
|
|
|
813
868
|
}
|
|
814
869
|
/**
|
|
815
870
|
* @public
|
|
871
|
+
* @enum
|
|
816
872
|
*/
|
|
817
|
-
export declare
|
|
818
|
-
RequestUriHostname
|
|
819
|
-
ToPhoneNumber
|
|
820
|
-
}
|
|
873
|
+
export declare const SipRuleTriggerType: {
|
|
874
|
+
readonly RequestUriHostname: "RequestUriHostname";
|
|
875
|
+
readonly ToPhoneNumber: "ToPhoneNumber";
|
|
876
|
+
};
|
|
877
|
+
/**
|
|
878
|
+
* @public
|
|
879
|
+
*/
|
|
880
|
+
export type SipRuleTriggerType = (typeof SipRuleTriggerType)[keyof typeof SipRuleTriggerType];
|
|
821
881
|
/**
|
|
822
882
|
* @public
|
|
823
883
|
*/
|
|
@@ -904,19 +964,24 @@ export interface CreateSipRuleResponse {
|
|
|
904
964
|
}
|
|
905
965
|
/**
|
|
906
966
|
* @public
|
|
967
|
+
* @enum
|
|
907
968
|
*/
|
|
908
|
-
export declare
|
|
909
|
-
AP_NORTHEAST_1
|
|
910
|
-
AP_NORTHEAST_2
|
|
911
|
-
AP_SOUTHEAST_1
|
|
912
|
-
AP_SOUTHEAST_2
|
|
913
|
-
CA_CENTRAL_1
|
|
914
|
-
EU_CENTRAL_1
|
|
915
|
-
EU_WEST_1
|
|
916
|
-
EU_WEST_2
|
|
917
|
-
US_EAST_1
|
|
918
|
-
US_WEST_2
|
|
919
|
-
}
|
|
969
|
+
export declare const VoiceConnectorAwsRegion: {
|
|
970
|
+
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
971
|
+
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
972
|
+
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
973
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
974
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
975
|
+
readonly EU_CENTRAL_1: "eu-central-1";
|
|
976
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
977
|
+
readonly EU_WEST_2: "eu-west-2";
|
|
978
|
+
readonly US_EAST_1: "us-east-1";
|
|
979
|
+
readonly US_WEST_2: "us-west-2";
|
|
980
|
+
};
|
|
981
|
+
/**
|
|
982
|
+
* @public
|
|
983
|
+
*/
|
|
984
|
+
export type VoiceConnectorAwsRegion = (typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
|
|
920
985
|
/**
|
|
921
986
|
* @public
|
|
922
987
|
*/
|
|
@@ -1428,12 +1493,17 @@ export interface GetPhoneNumberRequest {
|
|
|
1428
1493
|
}
|
|
1429
1494
|
/**
|
|
1430
1495
|
* @public
|
|
1496
|
+
* @enum
|
|
1431
1497
|
*/
|
|
1432
|
-
export declare
|
|
1433
|
-
SipRuleId
|
|
1434
|
-
VoiceConnectorGroupId
|
|
1435
|
-
VoiceConnectorId
|
|
1436
|
-
}
|
|
1498
|
+
export declare const PhoneNumberAssociationName: {
|
|
1499
|
+
readonly SipRuleId: "SipRuleId";
|
|
1500
|
+
readonly VoiceConnectorGroupId: "VoiceConnectorGroupId";
|
|
1501
|
+
readonly VoiceConnectorId: "VoiceConnectorId";
|
|
1502
|
+
};
|
|
1503
|
+
/**
|
|
1504
|
+
* @public
|
|
1505
|
+
*/
|
|
1506
|
+
export type PhoneNumberAssociationName = (typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
|
|
1437
1507
|
/**
|
|
1438
1508
|
* @public
|
|
1439
1509
|
* <p>The phone number associations, such as an Amazon Chime SDK account ID, user ID,
|
|
@@ -1486,27 +1556,37 @@ export interface PhoneNumberCapabilities {
|
|
|
1486
1556
|
}
|
|
1487
1557
|
/**
|
|
1488
1558
|
* @public
|
|
1559
|
+
* @enum
|
|
1489
1560
|
*/
|
|
1490
|
-
export declare
|
|
1491
|
-
AcquireFailed
|
|
1492
|
-
AcquireInProgress
|
|
1493
|
-
Assigned
|
|
1494
|
-
Cancelled
|
|
1495
|
-
DeleteFailed
|
|
1496
|
-
DeleteInProgress
|
|
1497
|
-
PortinCancelRequested
|
|
1498
|
-
PortinInProgress
|
|
1499
|
-
ReleaseFailed
|
|
1500
|
-
ReleaseInProgress
|
|
1501
|
-
Unassigned
|
|
1502
|
-
}
|
|
1561
|
+
export declare const PhoneNumberStatus: {
|
|
1562
|
+
readonly AcquireFailed: "AcquireFailed";
|
|
1563
|
+
readonly AcquireInProgress: "AcquireInProgress";
|
|
1564
|
+
readonly Assigned: "Assigned";
|
|
1565
|
+
readonly Cancelled: "Cancelled";
|
|
1566
|
+
readonly DeleteFailed: "DeleteFailed";
|
|
1567
|
+
readonly DeleteInProgress: "DeleteInProgress";
|
|
1568
|
+
readonly PortinCancelRequested: "PortinCancelRequested";
|
|
1569
|
+
readonly PortinInProgress: "PortinInProgress";
|
|
1570
|
+
readonly ReleaseFailed: "ReleaseFailed";
|
|
1571
|
+
readonly ReleaseInProgress: "ReleaseInProgress";
|
|
1572
|
+
readonly Unassigned: "Unassigned";
|
|
1573
|
+
};
|
|
1503
1574
|
/**
|
|
1504
1575
|
* @public
|
|
1505
1576
|
*/
|
|
1506
|
-
export
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1577
|
+
export type PhoneNumberStatus = (typeof PhoneNumberStatus)[keyof typeof PhoneNumberStatus];
|
|
1578
|
+
/**
|
|
1579
|
+
* @public
|
|
1580
|
+
* @enum
|
|
1581
|
+
*/
|
|
1582
|
+
export declare const PhoneNumberType: {
|
|
1583
|
+
readonly Local: "Local";
|
|
1584
|
+
readonly TollFree: "TollFree";
|
|
1585
|
+
};
|
|
1586
|
+
/**
|
|
1587
|
+
* @public
|
|
1588
|
+
*/
|
|
1589
|
+
export type PhoneNumberType = (typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
1510
1590
|
/**
|
|
1511
1591
|
* @public
|
|
1512
1592
|
* <p>A phone number used to call an Amazon
|
|
@@ -1948,11 +2028,16 @@ export interface GetVoiceConnectorOriginationRequest {
|
|
|
1948
2028
|
}
|
|
1949
2029
|
/**
|
|
1950
2030
|
* @public
|
|
2031
|
+
* @enum
|
|
1951
2032
|
*/
|
|
1952
|
-
export declare
|
|
1953
|
-
TCP
|
|
1954
|
-
UDP
|
|
1955
|
-
}
|
|
2033
|
+
export declare const OriginationRouteProtocol: {
|
|
2034
|
+
readonly TCP: "TCP";
|
|
2035
|
+
readonly UDP: "UDP";
|
|
2036
|
+
};
|
|
2037
|
+
/**
|
|
2038
|
+
* @public
|
|
2039
|
+
*/
|
|
2040
|
+
export type OriginationRouteProtocol = (typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
|
|
1956
2041
|
/**
|
|
1957
2042
|
* @public
|
|
1958
2043
|
* <p>Origination routes define call distribution properties for your SIP hosts to
|
|
@@ -2085,12 +2170,17 @@ export interface MediaInsightsConfiguration {
|
|
|
2085
2170
|
}
|
|
2086
2171
|
/**
|
|
2087
2172
|
* @public
|
|
2173
|
+
* @enum
|
|
2088
2174
|
*/
|
|
2089
|
-
export declare
|
|
2090
|
-
EventBridge
|
|
2091
|
-
SNS
|
|
2092
|
-
SQS
|
|
2093
|
-
}
|
|
2175
|
+
export declare const NotificationTarget: {
|
|
2176
|
+
readonly EventBridge: "EventBridge";
|
|
2177
|
+
readonly SNS: "SNS";
|
|
2178
|
+
readonly SQS: "SQS";
|
|
2179
|
+
};
|
|
2180
|
+
/**
|
|
2181
|
+
* @public
|
|
2182
|
+
*/
|
|
2183
|
+
export type NotificationTarget = (typeof NotificationTarget)[keyof typeof NotificationTarget];
|
|
2094
2184
|
/**
|
|
2095
2185
|
* @public
|
|
2096
2186
|
* <p>The target recipient for a streaming configuration notification.</p>
|
|
@@ -3040,10 +3130,15 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
3040
3130
|
}
|
|
3041
3131
|
/**
|
|
3042
3132
|
* @public
|
|
3133
|
+
* @enum
|
|
3043
3134
|
*/
|
|
3044
|
-
export declare
|
|
3045
|
-
EN_US
|
|
3046
|
-
}
|
|
3135
|
+
export declare const LanguageCode: {
|
|
3136
|
+
readonly EN_US: "en-US";
|
|
3137
|
+
};
|
|
3138
|
+
/**
|
|
3139
|
+
* @public
|
|
3140
|
+
*/
|
|
3141
|
+
export type LanguageCode = (typeof LanguageCode)[keyof typeof LanguageCode];
|
|
3047
3142
|
/**
|
|
3048
3143
|
* @public
|
|
3049
3144
|
*/
|