@aws-sdk/client-chime-sdk-voice 3.686.0 → 3.691.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-types/models/models_0.d.ts +365 -365
- package/dist-types/ts3.4/models/models_0.d.ts +379 -365
- package/package.json +7 -7
|
@@ -33,8 +33,8 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
33
33
|
export declare class AccessDeniedException extends __BaseException {
|
|
34
34
|
readonly name: "AccessDeniedException";
|
|
35
35
|
readonly $fault: "client";
|
|
36
|
-
Code?: ErrorCode;
|
|
37
|
-
Message?: string;
|
|
36
|
+
Code?: ErrorCode | undefined;
|
|
37
|
+
Message?: string | undefined;
|
|
38
38
|
/**
|
|
39
39
|
* @internal
|
|
40
40
|
*/
|
|
@@ -49,54 +49,54 @@ export interface Address {
|
|
|
49
49
|
* <p>The address street, such as <code>8th Avenue</code>.</p>
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
streetName?: string;
|
|
52
|
+
streetName?: string | undefined;
|
|
53
53
|
/**
|
|
54
54
|
* <p>The address suffix, such as the <code>N</code> in <code>8th Avenue N</code>.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
streetSuffix?: string;
|
|
57
|
+
streetSuffix?: string | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* <p>An address suffix location, such as the <code>S. Unit A</code> in
|
|
60
60
|
* <code>Central Park S. Unit A</code>.</p>
|
|
61
61
|
* @public
|
|
62
62
|
*/
|
|
63
|
-
postDirectional?: string;
|
|
63
|
+
postDirectional?: string | undefined;
|
|
64
64
|
/**
|
|
65
65
|
* <p>An address prefix location, such as the <code>N</code> in <code>N. Third St.</code>
|
|
66
66
|
* </p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
preDirectional?: string;
|
|
69
|
+
preDirectional?: string | undefined;
|
|
70
70
|
/**
|
|
71
71
|
* <p>The numeric portion of an address.</p>
|
|
72
72
|
* @public
|
|
73
73
|
*/
|
|
74
|
-
streetNumber?: string;
|
|
74
|
+
streetNumber?: string | undefined;
|
|
75
75
|
/**
|
|
76
76
|
* <p>The city of an address.</p>
|
|
77
77
|
* @public
|
|
78
78
|
*/
|
|
79
|
-
city?: string;
|
|
79
|
+
city?: string | undefined;
|
|
80
80
|
/**
|
|
81
81
|
* <p>The state of an address.</p>
|
|
82
82
|
* @public
|
|
83
83
|
*/
|
|
84
|
-
state?: string;
|
|
84
|
+
state?: string | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* <p>The postal code of an address.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
postalCode?: string;
|
|
89
|
+
postalCode?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>The zip + 4 or postal code + 4 of an address.</p>
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
postalCodePlus4?: string;
|
|
94
|
+
postalCodePlus4?: string | undefined;
|
|
95
95
|
/**
|
|
96
96
|
* <p>The country of an address.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
country?: string;
|
|
99
|
+
country?: string | undefined;
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
102
102
|
* @public
|
|
@@ -128,7 +128,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
|
|
|
128
128
|
* <p>If true, associates the provided phone numbers with the provided Amazon Chime SDK Voice Connector and removes any previously existing associations. If false, does not associate any phone numbers that have previously existing associations.</p>
|
|
129
129
|
* @public
|
|
130
130
|
*/
|
|
131
|
-
ForceAssociate?: boolean;
|
|
131
|
+
ForceAssociate?: boolean | undefined;
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
134
|
* <p>If a phone number action fails for one or more of the phone numbers in a request,
|
|
@@ -140,17 +140,17 @@ export interface PhoneNumberError {
|
|
|
140
140
|
* <p>The phone number ID for which the action failed.</p>
|
|
141
141
|
* @public
|
|
142
142
|
*/
|
|
143
|
-
PhoneNumberId?: string;
|
|
143
|
+
PhoneNumberId?: string | undefined;
|
|
144
144
|
/**
|
|
145
145
|
* <p>The error code.</p>
|
|
146
146
|
* @public
|
|
147
147
|
*/
|
|
148
|
-
ErrorCode?: ErrorCode;
|
|
148
|
+
ErrorCode?: ErrorCode | undefined;
|
|
149
149
|
/**
|
|
150
150
|
* <p>The error message.</p>
|
|
151
151
|
* @public
|
|
152
152
|
*/
|
|
153
|
-
ErrorMessage?: string;
|
|
153
|
+
ErrorMessage?: string | undefined;
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
156
|
* @public
|
|
@@ -161,7 +161,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
|
161
161
|
* error messages.</p>
|
|
162
162
|
* @public
|
|
163
163
|
*/
|
|
164
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
164
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
167
|
* <p>The input parameters don't match the service's restrictions.</p>
|
|
@@ -170,8 +170,8 @@ export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
|
170
170
|
export declare class BadRequestException extends __BaseException {
|
|
171
171
|
readonly name: "BadRequestException";
|
|
172
172
|
readonly $fault: "client";
|
|
173
|
-
Code?: ErrorCode;
|
|
174
|
-
Message?: string;
|
|
173
|
+
Code?: ErrorCode | undefined;
|
|
174
|
+
Message?: string | undefined;
|
|
175
175
|
/**
|
|
176
176
|
* @internal
|
|
177
177
|
*/
|
|
@@ -184,8 +184,8 @@ export declare class BadRequestException extends __BaseException {
|
|
|
184
184
|
export declare class ForbiddenException extends __BaseException {
|
|
185
185
|
readonly name: "ForbiddenException";
|
|
186
186
|
readonly $fault: "client";
|
|
187
|
-
Code?: ErrorCode;
|
|
188
|
-
Message?: string;
|
|
187
|
+
Code?: ErrorCode | undefined;
|
|
188
|
+
Message?: string | undefined;
|
|
189
189
|
/**
|
|
190
190
|
* @internal
|
|
191
191
|
*/
|
|
@@ -198,8 +198,8 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
198
198
|
export declare class NotFoundException extends __BaseException {
|
|
199
199
|
readonly name: "NotFoundException";
|
|
200
200
|
readonly $fault: "client";
|
|
201
|
-
Code?: ErrorCode;
|
|
202
|
-
Message?: string;
|
|
201
|
+
Code?: ErrorCode | undefined;
|
|
202
|
+
Message?: string | undefined;
|
|
203
203
|
/**
|
|
204
204
|
* @internal
|
|
205
205
|
*/
|
|
@@ -212,8 +212,8 @@ export declare class NotFoundException extends __BaseException {
|
|
|
212
212
|
export declare class ServiceFailureException extends __BaseException {
|
|
213
213
|
readonly name: "ServiceFailureException";
|
|
214
214
|
readonly $fault: "server";
|
|
215
|
-
Code?: ErrorCode;
|
|
216
|
-
Message?: string;
|
|
215
|
+
Code?: ErrorCode | undefined;
|
|
216
|
+
Message?: string | undefined;
|
|
217
217
|
/**
|
|
218
218
|
* @internal
|
|
219
219
|
*/
|
|
@@ -226,8 +226,8 @@ export declare class ServiceFailureException extends __BaseException {
|
|
|
226
226
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
227
227
|
readonly name: "ServiceUnavailableException";
|
|
228
228
|
readonly $fault: "server";
|
|
229
|
-
Code?: ErrorCode;
|
|
230
|
-
Message?: string;
|
|
229
|
+
Code?: ErrorCode | undefined;
|
|
230
|
+
Message?: string | undefined;
|
|
231
231
|
/**
|
|
232
232
|
* @internal
|
|
233
233
|
*/
|
|
@@ -240,8 +240,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
240
240
|
export declare class ThrottledClientException extends __BaseException {
|
|
241
241
|
readonly name: "ThrottledClientException";
|
|
242
242
|
readonly $fault: "client";
|
|
243
|
-
Code?: ErrorCode;
|
|
244
|
-
Message?: string;
|
|
243
|
+
Code?: ErrorCode | undefined;
|
|
244
|
+
Message?: string | undefined;
|
|
245
245
|
/**
|
|
246
246
|
* @internal
|
|
247
247
|
*/
|
|
@@ -254,8 +254,8 @@ export declare class ThrottledClientException extends __BaseException {
|
|
|
254
254
|
export declare class UnauthorizedClientException extends __BaseException {
|
|
255
255
|
readonly name: "UnauthorizedClientException";
|
|
256
256
|
readonly $fault: "client";
|
|
257
|
-
Code?: ErrorCode;
|
|
258
|
-
Message?: string;
|
|
257
|
+
Code?: ErrorCode | undefined;
|
|
258
|
+
Message?: string | undefined;
|
|
259
259
|
/**
|
|
260
260
|
* @internal
|
|
261
261
|
*/
|
|
@@ -280,7 +280,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
|
|
|
280
280
|
* If false, does not associate any phone numbers that have previously existing associations.</p>
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
ForceAssociate?: boolean;
|
|
283
|
+
ForceAssociate?: boolean | undefined;
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
286
|
* @public
|
|
@@ -290,7 +290,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorGroupResponse {
|
|
|
290
290
|
* <p>If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.</p>
|
|
291
291
|
* @public
|
|
292
292
|
*/
|
|
293
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
293
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
294
294
|
}
|
|
295
295
|
/**
|
|
296
296
|
* @public
|
|
@@ -310,7 +310,7 @@ export interface BatchDeletePhoneNumberResponse {
|
|
|
310
310
|
* <p>If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.</p>
|
|
311
311
|
* @public
|
|
312
312
|
*/
|
|
313
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
313
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
316
|
* @public
|
|
@@ -339,17 +339,17 @@ export interface UpdatePhoneNumberRequestItem {
|
|
|
339
339
|
* <p>The product type to update.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
ProductType?: PhoneNumberProductType;
|
|
342
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* <p>The outbound calling name to update.</p>
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
CallingName?: string;
|
|
347
|
+
CallingName?: string | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* <p>The name of the phone number.</p>
|
|
350
350
|
* @public
|
|
351
351
|
*/
|
|
352
|
-
Name?: string;
|
|
352
|
+
Name?: string | undefined;
|
|
353
353
|
}
|
|
354
354
|
/**
|
|
355
355
|
* @public
|
|
@@ -369,7 +369,7 @@ export interface BatchUpdatePhoneNumberResponse {
|
|
|
369
369
|
* <p>A list of failed phone numbers and their error messages.</p>
|
|
370
370
|
* @public
|
|
371
371
|
*/
|
|
372
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
372
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
373
373
|
}
|
|
374
374
|
/**
|
|
375
375
|
* <p>The details of an Amazon Chime SDK Voice Connector call.</p>
|
|
@@ -380,17 +380,17 @@ export interface CallDetails {
|
|
|
380
380
|
* <p>The Voice Connector ID.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
VoiceConnectorId?: string;
|
|
383
|
+
VoiceConnectorId?: string | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* <p>The transaction ID of a Voice Connector call.</p>
|
|
386
386
|
* @public
|
|
387
387
|
*/
|
|
388
|
-
TransactionId?: string;
|
|
388
|
+
TransactionId?: string | undefined;
|
|
389
389
|
/**
|
|
390
390
|
* <p>Identifies a person as the caller or the callee.</p>
|
|
391
391
|
* @public
|
|
392
392
|
*/
|
|
393
|
-
IsCaller?: boolean;
|
|
393
|
+
IsCaller?: boolean | undefined;
|
|
394
394
|
}
|
|
395
395
|
/**
|
|
396
396
|
* @public
|
|
@@ -427,37 +427,37 @@ export interface CandidateAddress {
|
|
|
427
427
|
* <p>The street information of the candidate address.</p>
|
|
428
428
|
* @public
|
|
429
429
|
*/
|
|
430
|
-
streetInfo?: string;
|
|
430
|
+
streetInfo?: string | undefined;
|
|
431
431
|
/**
|
|
432
432
|
* <p>The numeric portion of the candidate address.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
streetNumber?: string;
|
|
435
|
+
streetNumber?: string | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>The city of the candidate address.</p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
city?: string;
|
|
440
|
+
city?: string | undefined;
|
|
441
441
|
/**
|
|
442
442
|
* <p>The state of the candidate address.</p>
|
|
443
443
|
* @public
|
|
444
444
|
*/
|
|
445
|
-
state?: string;
|
|
445
|
+
state?: string | undefined;
|
|
446
446
|
/**
|
|
447
447
|
* <p>The postal code of the candidate address.</p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
postalCode?: string;
|
|
450
|
+
postalCode?: string | undefined;
|
|
451
451
|
/**
|
|
452
452
|
* <p>The zip + 4 or postal code +4 of the candidate address.</p>
|
|
453
453
|
* @public
|
|
454
454
|
*/
|
|
455
|
-
postalCodePlus4?: string;
|
|
455
|
+
postalCodePlus4?: string | undefined;
|
|
456
456
|
/**
|
|
457
457
|
* <p>The country of the candidate address.</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
country?: string;
|
|
460
|
+
country?: string | undefined;
|
|
461
461
|
}
|
|
462
462
|
/**
|
|
463
463
|
* @public
|
|
@@ -489,7 +489,7 @@ export interface CreatePhoneNumberOrderRequest {
|
|
|
489
489
|
* <p>Specifies the name assigned to one or more phone numbers.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
Name?: string;
|
|
492
|
+
Name?: string | undefined;
|
|
493
493
|
}
|
|
494
494
|
/**
|
|
495
495
|
* @public
|
|
@@ -513,12 +513,12 @@ export interface OrderedPhoneNumber {
|
|
|
513
513
|
* <p>The phone number, in E.164 format.</p>
|
|
514
514
|
* @public
|
|
515
515
|
*/
|
|
516
|
-
E164PhoneNumber?: string;
|
|
516
|
+
E164PhoneNumber?: string | undefined;
|
|
517
517
|
/**
|
|
518
518
|
* <p>The phone number status.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
Status?: OrderedPhoneNumberStatus;
|
|
521
|
+
Status?: OrderedPhoneNumberStatus | undefined;
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* @public
|
|
@@ -562,38 +562,38 @@ export interface PhoneNumberOrder {
|
|
|
562
562
|
* <p>The ID of the phone order.</p>
|
|
563
563
|
* @public
|
|
564
564
|
*/
|
|
565
|
-
PhoneNumberOrderId?: string;
|
|
565
|
+
PhoneNumberOrderId?: string | undefined;
|
|
566
566
|
/**
|
|
567
567
|
* <p>The phone number order product type.</p>
|
|
568
568
|
* @public
|
|
569
569
|
*/
|
|
570
|
-
ProductType?: PhoneNumberProductType;
|
|
570
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
571
571
|
/**
|
|
572
572
|
* <p>The status of the phone number order.</p>
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
Status?: PhoneNumberOrderStatus;
|
|
575
|
+
Status?: PhoneNumberOrderStatus | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* <p>The type of phone number being ordered, local or toll-free.</p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
OrderType?: PhoneNumberOrderType;
|
|
580
|
+
OrderType?: PhoneNumberOrderType | undefined;
|
|
581
581
|
/**
|
|
582
582
|
* <p>The ordered phone number details, such as the phone number in E.164 format
|
|
583
583
|
* and the phone number status.</p>
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
OrderedPhoneNumbers?: OrderedPhoneNumber[];
|
|
586
|
+
OrderedPhoneNumbers?: OrderedPhoneNumber[] | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* <p>The phone number order creation time stamp, in ISO 8601 format.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
CreatedTimestamp?: Date;
|
|
591
|
+
CreatedTimestamp?: Date | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* <p>The updated phone number order time stamp, in ISO 8601 format.</p>
|
|
594
594
|
* @public
|
|
595
595
|
*/
|
|
596
|
-
UpdatedTimestamp?: Date;
|
|
596
|
+
UpdatedTimestamp?: Date | undefined;
|
|
597
597
|
}
|
|
598
598
|
/**
|
|
599
599
|
* @public
|
|
@@ -603,7 +603,7 @@ export interface CreatePhoneNumberOrderResponse {
|
|
|
603
603
|
* <p>The phone number order details.</p>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
PhoneNumberOrder?: PhoneNumberOrder;
|
|
606
|
+
PhoneNumberOrder?: PhoneNumberOrder | undefined;
|
|
607
607
|
}
|
|
608
608
|
/**
|
|
609
609
|
* <p>The request exceeds the resource limit.</p>
|
|
@@ -612,8 +612,8 @@ export interface CreatePhoneNumberOrderResponse {
|
|
|
612
612
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
613
613
|
readonly name: "ResourceLimitExceededException";
|
|
614
614
|
readonly $fault: "client";
|
|
615
|
-
Code?: ErrorCode;
|
|
616
|
-
Message?: string;
|
|
615
|
+
Code?: ErrorCode | undefined;
|
|
616
|
+
Message?: string | undefined;
|
|
617
617
|
/**
|
|
618
618
|
* @internal
|
|
619
619
|
*/
|
|
@@ -677,12 +677,12 @@ export interface CreateProxySessionRequest {
|
|
|
677
677
|
* <p>The name of the proxy session.</p>
|
|
678
678
|
* @public
|
|
679
679
|
*/
|
|
680
|
-
Name?: string;
|
|
680
|
+
Name?: string | undefined;
|
|
681
681
|
/**
|
|
682
682
|
* <p>The number of minutes allowed for the proxy session.</p>
|
|
683
683
|
* @public
|
|
684
684
|
*/
|
|
685
|
-
ExpiryMinutes?: number;
|
|
685
|
+
ExpiryMinutes?: number | undefined;
|
|
686
686
|
/**
|
|
687
687
|
* <p>The proxy session's capabilities.</p>
|
|
688
688
|
* @public
|
|
@@ -693,17 +693,17 @@ export interface CreateProxySessionRequest {
|
|
|
693
693
|
* participants across sessions.</p>
|
|
694
694
|
* @public
|
|
695
695
|
*/
|
|
696
|
-
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
696
|
+
NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
|
|
697
697
|
/**
|
|
698
698
|
* <p>The preference for matching the country or area code of the proxy phone number with that of the first participant.</p>
|
|
699
699
|
* @public
|
|
700
700
|
*/
|
|
701
|
-
GeoMatchLevel?: GeoMatchLevel;
|
|
701
|
+
GeoMatchLevel?: GeoMatchLevel | undefined;
|
|
702
702
|
/**
|
|
703
703
|
* <p>The country and area code for the proxy phone number.</p>
|
|
704
704
|
* @public
|
|
705
705
|
*/
|
|
706
|
-
GeoMatchParams?: GeoMatchParams;
|
|
706
|
+
GeoMatchParams?: GeoMatchParams | undefined;
|
|
707
707
|
}
|
|
708
708
|
/**
|
|
709
709
|
* <p>The phone number and proxy phone number for a participant in an Amazon Chime SDK Voice Connector proxy session.</p>
|
|
@@ -714,12 +714,12 @@ export interface Participant {
|
|
|
714
714
|
* <p>The participant's phone number.</p>
|
|
715
715
|
* @public
|
|
716
716
|
*/
|
|
717
|
-
PhoneNumber?: string;
|
|
717
|
+
PhoneNumber?: string | undefined;
|
|
718
718
|
/**
|
|
719
719
|
* <p>The participant's proxy phone number.</p>
|
|
720
720
|
* @public
|
|
721
721
|
*/
|
|
722
|
-
ProxyPhoneNumber?: string;
|
|
722
|
+
ProxyPhoneNumber?: string | undefined;
|
|
723
723
|
}
|
|
724
724
|
/**
|
|
725
725
|
* @public
|
|
@@ -743,67 +743,67 @@ export interface ProxySession {
|
|
|
743
743
|
* <p>The Voice Connector ID.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
VoiceConnectorId?: string;
|
|
746
|
+
VoiceConnectorId?: string | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* <p>The proxy session ID.</p>
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
|
-
ProxySessionId?: string;
|
|
751
|
+
ProxySessionId?: string | undefined;
|
|
752
752
|
/**
|
|
753
753
|
* <p>The proxy session name.</p>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
Name?: string;
|
|
756
|
+
Name?: string | undefined;
|
|
757
757
|
/**
|
|
758
758
|
* <p>The proxy session status.</p>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
Status?: ProxySessionStatus;
|
|
761
|
+
Status?: ProxySessionStatus | undefined;
|
|
762
762
|
/**
|
|
763
763
|
* <p>The number of minutes allowed for the proxy session.</p>
|
|
764
764
|
* @public
|
|
765
765
|
*/
|
|
766
|
-
ExpiryMinutes?: number;
|
|
766
|
+
ExpiryMinutes?: number | undefined;
|
|
767
767
|
/**
|
|
768
768
|
* <p>The proxy session capabilities.</p>
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
Capabilities?: Capability[];
|
|
771
|
+
Capabilities?: Capability[] | undefined;
|
|
772
772
|
/**
|
|
773
773
|
* <p>The created time stamp, in ISO 8601 format.</p>
|
|
774
774
|
* @public
|
|
775
775
|
*/
|
|
776
|
-
CreatedTimestamp?: Date;
|
|
776
|
+
CreatedTimestamp?: Date | undefined;
|
|
777
777
|
/**
|
|
778
778
|
* <p>The updated time stamp, in ISO 8601 format.</p>
|
|
779
779
|
* @public
|
|
780
780
|
*/
|
|
781
|
-
UpdatedTimestamp?: Date;
|
|
781
|
+
UpdatedTimestamp?: Date | undefined;
|
|
782
782
|
/**
|
|
783
783
|
* <p>The ended time stamp, in ISO 8601 format.</p>
|
|
784
784
|
* @public
|
|
785
785
|
*/
|
|
786
|
-
EndedTimestamp?: Date;
|
|
786
|
+
EndedTimestamp?: Date | undefined;
|
|
787
787
|
/**
|
|
788
788
|
* <p>The proxy session participants.</p>
|
|
789
789
|
* @public
|
|
790
790
|
*/
|
|
791
|
-
Participants?: Participant[];
|
|
791
|
+
Participants?: Participant[] | undefined;
|
|
792
792
|
/**
|
|
793
793
|
* <p>The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.</p>
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
796
|
+
NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
|
|
797
797
|
/**
|
|
798
798
|
* <p>The preference for matching the country or area code of the proxy phone number with that of the first participant.</p>
|
|
799
799
|
* @public
|
|
800
800
|
*/
|
|
801
|
-
GeoMatchLevel?: GeoMatchLevel;
|
|
801
|
+
GeoMatchLevel?: GeoMatchLevel | undefined;
|
|
802
802
|
/**
|
|
803
803
|
* <p>The country and area code for the proxy phone number.</p>
|
|
804
804
|
* @public
|
|
805
805
|
*/
|
|
806
|
-
GeoMatchParams?: GeoMatchParams;
|
|
806
|
+
GeoMatchParams?: GeoMatchParams | undefined;
|
|
807
807
|
}
|
|
808
808
|
/**
|
|
809
809
|
* @public
|
|
@@ -813,7 +813,7 @@ export interface CreateProxySessionResponse {
|
|
|
813
813
|
* <p>The proxy session details.</p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
ProxySession?: ProxySession;
|
|
816
|
+
ProxySession?: ProxySession | undefined;
|
|
817
817
|
}
|
|
818
818
|
/**
|
|
819
819
|
* <p>Multiple instances of the same request were made simultaneously.</p>
|
|
@@ -822,8 +822,8 @@ export interface CreateProxySessionResponse {
|
|
|
822
822
|
export declare class ConflictException extends __BaseException {
|
|
823
823
|
readonly name: "ConflictException";
|
|
824
824
|
readonly $fault: "client";
|
|
825
|
-
Code?: ErrorCode;
|
|
826
|
-
Message?: string;
|
|
825
|
+
Code?: ErrorCode | undefined;
|
|
826
|
+
Message?: string | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* @internal
|
|
829
829
|
*/
|
|
@@ -839,7 +839,7 @@ export interface SipMediaApplicationEndpoint {
|
|
|
839
839
|
* The function must be created in the same AWS Region as the SIP media application.</p>
|
|
840
840
|
* @public
|
|
841
841
|
*/
|
|
842
|
-
LambdaArn?: string;
|
|
842
|
+
LambdaArn?: string | undefined;
|
|
843
843
|
}
|
|
844
844
|
/**
|
|
845
845
|
* <p>Describes a tag applied to a resource.</p>
|
|
@@ -880,7 +880,7 @@ export interface CreateSipMediaApplicationRequest {
|
|
|
880
880
|
* <p>The tags assigned to the SIP media application.</p>
|
|
881
881
|
* @public
|
|
882
882
|
*/
|
|
883
|
-
Tags?: Tag[];
|
|
883
|
+
Tags?: Tag[] | undefined;
|
|
884
884
|
}
|
|
885
885
|
/**
|
|
886
886
|
* <p>The details of the SIP media application, including name and endpoints.
|
|
@@ -892,38 +892,38 @@ export interface SipMediaApplication {
|
|
|
892
892
|
* <p>A SIP media application's ID.</p>
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
SipMediaApplicationId?: string;
|
|
895
|
+
SipMediaApplicationId?: string | undefined;
|
|
896
896
|
/**
|
|
897
897
|
* <p>The AWS Region in which the SIP media application is created.</p>
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
|
-
AwsRegion?: string;
|
|
900
|
+
AwsRegion?: string | undefined;
|
|
901
901
|
/**
|
|
902
902
|
* <p>The SIP media application's name.</p>
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
Name?: string;
|
|
905
|
+
Name?: string | undefined;
|
|
906
906
|
/**
|
|
907
907
|
* <p>List of endpoints for a SIP media application. Currently, only one endpoint per
|
|
908
908
|
* SIP media application is permitted.</p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
Endpoints?: SipMediaApplicationEndpoint[];
|
|
911
|
+
Endpoints?: SipMediaApplicationEndpoint[] | undefined;
|
|
912
912
|
/**
|
|
913
913
|
* <p>The SIP media application creation timestamp, in ISO 8601 format.</p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
CreatedTimestamp?: Date;
|
|
916
|
+
CreatedTimestamp?: Date | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The time at which the SIP media application was updated.</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
UpdatedTimestamp?: Date;
|
|
921
|
+
UpdatedTimestamp?: Date | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* <p>The ARN of the SIP media application.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
SipMediaApplicationArn?: string;
|
|
926
|
+
SipMediaApplicationArn?: string | undefined;
|
|
927
927
|
}
|
|
928
928
|
/**
|
|
929
929
|
* @public
|
|
@@ -933,7 +933,7 @@ export interface CreateSipMediaApplicationResponse {
|
|
|
933
933
|
* <p>The SIP media application details.</p>
|
|
934
934
|
* @public
|
|
935
935
|
*/
|
|
936
|
-
SipMediaApplication?: SipMediaApplication;
|
|
936
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
937
937
|
}
|
|
938
938
|
/**
|
|
939
939
|
* @public
|
|
@@ -959,14 +959,14 @@ export interface CreateSipMediaApplicationCallRequest {
|
|
|
959
959
|
* <p>The SIP headers added to an outbound call leg.</p>
|
|
960
960
|
* @public
|
|
961
961
|
*/
|
|
962
|
-
SipHeaders?: Record<string, string
|
|
962
|
+
SipHeaders?: Record<string, string> | undefined;
|
|
963
963
|
/**
|
|
964
964
|
* <p>Context passed to a CreateSipMediaApplication API call. For example, you could pass
|
|
965
965
|
* key-value pairs such as: <code>"FirstName": "John", "LastName": "Doe"</code>
|
|
966
966
|
* </p>
|
|
967
967
|
* @public
|
|
968
968
|
*/
|
|
969
|
-
ArgumentsMap?: Record<string, string
|
|
969
|
+
ArgumentsMap?: Record<string, string> | undefined;
|
|
970
970
|
}
|
|
971
971
|
/**
|
|
972
972
|
* <p>A <code>Call</code> instance for a SIP media application.</p>
|
|
@@ -977,7 +977,7 @@ export interface SipMediaApplicationCall {
|
|
|
977
977
|
* <p>The call's transaction ID.</p>
|
|
978
978
|
* @public
|
|
979
979
|
*/
|
|
980
|
-
TransactionId?: string;
|
|
980
|
+
TransactionId?: string | undefined;
|
|
981
981
|
}
|
|
982
982
|
/**
|
|
983
983
|
* @public
|
|
@@ -987,7 +987,7 @@ export interface CreateSipMediaApplicationCallResponse {
|
|
|
987
987
|
* <p>The actual call.</p>
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
990
|
+
SipMediaApplicationCall?: SipMediaApplicationCall | undefined;
|
|
991
991
|
}
|
|
992
992
|
/**
|
|
993
993
|
* <p>A target SIP media application and other details, such as priority and AWS Region,
|
|
@@ -999,17 +999,17 @@ export interface SipRuleTargetApplication {
|
|
|
999
999
|
* <p>The ID of a rule's target SIP media application.</p>
|
|
1000
1000
|
* @public
|
|
1001
1001
|
*/
|
|
1002
|
-
SipMediaApplicationId?: string;
|
|
1002
|
+
SipMediaApplicationId?: string | undefined;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* <p>The priority setting of a rule's target SIP media application.</p>
|
|
1005
1005
|
* @public
|
|
1006
1006
|
*/
|
|
1007
|
-
Priority?: number;
|
|
1007
|
+
Priority?: number | undefined;
|
|
1008
1008
|
/**
|
|
1009
1009
|
* <p>The AWS Region of a rule's target SIP media application.</p>
|
|
1010
1010
|
* @public
|
|
1011
1011
|
*/
|
|
1012
|
-
AwsRegion?: string;
|
|
1012
|
+
AwsRegion?: string | undefined;
|
|
1013
1013
|
}
|
|
1014
1014
|
/**
|
|
1015
1015
|
* @public
|
|
@@ -1055,13 +1055,13 @@ export interface CreateSipRuleRequest {
|
|
|
1055
1055
|
* before you can delete them.</p>
|
|
1056
1056
|
* @public
|
|
1057
1057
|
*/
|
|
1058
|
-
Disabled?: boolean;
|
|
1058
|
+
Disabled?: boolean | undefined;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* <p>List of SIP media applications, with priority and AWS Region. Only one SIP
|
|
1061
1061
|
* application per AWS Region can be used.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
1064
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
1065
1065
|
}
|
|
1066
1066
|
/**
|
|
1067
1067
|
* <p>The details of a SIP rule, including name, triggers, and target applications.
|
|
@@ -1073,43 +1073,43 @@ export interface SipRule {
|
|
|
1073
1073
|
* <p>A SIP rule's ID.</p>
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
SipRuleId?: string;
|
|
1076
|
+
SipRuleId?: string | undefined;
|
|
1077
1077
|
/**
|
|
1078
1078
|
* <p>A SIP rule's name.</p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
Name?: string;
|
|
1081
|
+
Name?: string | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>Indicates whether the SIP rule is enabled or disabled. You must disable a rule before you can delete it.</p>
|
|
1084
1084
|
* @public
|
|
1085
1085
|
*/
|
|
1086
|
-
Disabled?: boolean;
|
|
1086
|
+
Disabled?: boolean | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* <p>The type of trigger set for a SIP rule, either a phone number or a URI request host name.</p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
TriggerType?: SipRuleTriggerType;
|
|
1091
|
+
TriggerType?: SipRuleTriggerType | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* <p>The value set for a SIP rule's trigger type. Either a phone number or a URI hostname.</p>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
TriggerValue?: string;
|
|
1096
|
+
TriggerValue?: string | undefined;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* <p>The target SIP media application and other details, such as priority and AWS Region,
|
|
1099
1099
|
* to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
1102
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>The time at which the SIP rule was created, in ISO 8601 format.</p>
|
|
1105
1105
|
* @public
|
|
1106
1106
|
*/
|
|
1107
|
-
CreatedTimestamp?: Date;
|
|
1107
|
+
CreatedTimestamp?: Date | undefined;
|
|
1108
1108
|
/**
|
|
1109
1109
|
* <p>The time at which the SIP rule was updated, in ISO 8601 format.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
UpdatedTimestamp?: Date;
|
|
1112
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1113
1113
|
}
|
|
1114
1114
|
/**
|
|
1115
1115
|
* @public
|
|
@@ -1119,7 +1119,7 @@ export interface CreateSipRuleResponse {
|
|
|
1119
1119
|
* <p>The SIP rule information, including the rule ID, triggers, and target applications.</p>
|
|
1120
1120
|
* @public
|
|
1121
1121
|
*/
|
|
1122
|
-
SipRule?: SipRule;
|
|
1122
|
+
SipRule?: SipRule | undefined;
|
|
1123
1123
|
}
|
|
1124
1124
|
/**
|
|
1125
1125
|
* @public
|
|
@@ -1155,7 +1155,7 @@ export interface CreateVoiceConnectorRequest {
|
|
|
1155
1155
|
* <code>us-east-1</code> .</p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
AwsRegion?: VoiceConnectorAwsRegion;
|
|
1158
|
+
AwsRegion?: VoiceConnectorAwsRegion | undefined;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>Enables or disables encryption for the Voice Connector.</p>
|
|
1161
1161
|
* @public
|
|
@@ -1165,7 +1165,7 @@ export interface CreateVoiceConnectorRequest {
|
|
|
1165
1165
|
* <p>The tags assigned to the Voice Connector.</p>
|
|
1166
1166
|
* @public
|
|
1167
1167
|
*/
|
|
1168
|
-
Tags?: Tag[];
|
|
1168
|
+
Tags?: Tag[] | undefined;
|
|
1169
1169
|
}
|
|
1170
1170
|
/**
|
|
1171
1171
|
* <p>The Amazon Chime SDK Voice Connector configuration, including outbound
|
|
@@ -1177,43 +1177,43 @@ export interface VoiceConnector {
|
|
|
1177
1177
|
* <p>The Voice Connector's ID.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
VoiceConnectorId?: string;
|
|
1180
|
+
VoiceConnectorId?: string | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The AWS Region in which the Voice Connector is created.
|
|
1183
1183
|
* Default: us-east-1.</p>
|
|
1184
1184
|
* @public
|
|
1185
1185
|
*/
|
|
1186
|
-
AwsRegion?: VoiceConnectorAwsRegion;
|
|
1186
|
+
AwsRegion?: VoiceConnectorAwsRegion | undefined;
|
|
1187
1187
|
/**
|
|
1188
1188
|
* <p>The Voice Connector's name.</p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
Name?: string;
|
|
1191
|
+
Name?: string | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p>The outbound host name for the Voice Connector.</p>
|
|
1194
1194
|
* @public
|
|
1195
1195
|
*/
|
|
1196
|
-
OutboundHostName?: string;
|
|
1196
|
+
OutboundHostName?: string | undefined;
|
|
1197
1197
|
/**
|
|
1198
1198
|
* <p>Enables or disables encryption for the Voice Connector.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
RequireEncryption?: boolean;
|
|
1201
|
+
RequireEncryption?: boolean | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>The Voice Connector's creation timestamp, in ISO 8601 format.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
CreatedTimestamp?: Date;
|
|
1206
|
+
CreatedTimestamp?: Date | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>The Voice Connector's updated timestamp, in ISO 8601 format.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
UpdatedTimestamp?: Date;
|
|
1211
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* <p>The ARN of the Voice Connector.</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
VoiceConnectorArn?: string;
|
|
1216
|
+
VoiceConnectorArn?: string | undefined;
|
|
1217
1217
|
}
|
|
1218
1218
|
/**
|
|
1219
1219
|
* @public
|
|
@@ -1223,7 +1223,7 @@ export interface CreateVoiceConnectorResponse {
|
|
|
1223
1223
|
* <p>The details of the Voice Connector.</p>
|
|
1224
1224
|
* @public
|
|
1225
1225
|
*/
|
|
1226
|
-
VoiceConnector?: VoiceConnector;
|
|
1226
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
1227
1227
|
}
|
|
1228
1228
|
/**
|
|
1229
1229
|
* <p>For Amazon Chime SDK Voice Connector groups, the Amazon Chime SDK Voice
|
|
@@ -1258,7 +1258,7 @@ export interface CreateVoiceConnectorGroupRequest {
|
|
|
1258
1258
|
* <p>Lists the Voice Connectors that inbound calls are routed to.</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
VoiceConnectorItems?: VoiceConnectorItem[];
|
|
1261
|
+
VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
|
|
1262
1262
|
}
|
|
1263
1263
|
/**
|
|
1264
1264
|
* <p>The Amazon Chime SDK Voice Connector group configuration, including
|
|
@@ -1272,32 +1272,32 @@ export interface VoiceConnectorGroup {
|
|
|
1272
1272
|
* <p>The ID of a Voice Connector group.</p>
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
VoiceConnectorGroupId?: string;
|
|
1275
|
+
VoiceConnectorGroupId?: string | undefined;
|
|
1276
1276
|
/**
|
|
1277
1277
|
* <p>The name of a Voice Connector group.</p>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
Name?: string;
|
|
1280
|
+
Name?: string | undefined;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* <p>The Voice Connectors to which you route inbound calls.</p>
|
|
1283
1283
|
* @public
|
|
1284
1284
|
*/
|
|
1285
|
-
VoiceConnectorItems?: VoiceConnectorItem[];
|
|
1285
|
+
VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
|
|
1286
1286
|
/**
|
|
1287
1287
|
* <p>The Voice Connector group's creation time stamp, in ISO 8601 format.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
CreatedTimestamp?: Date;
|
|
1290
|
+
CreatedTimestamp?: Date | undefined;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* <p>The Voice Connector group's creation time stamp, in ISO 8601 format.</p>
|
|
1293
1293
|
* @public
|
|
1294
1294
|
*/
|
|
1295
|
-
UpdatedTimestamp?: Date;
|
|
1295
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1296
1296
|
/**
|
|
1297
1297
|
* <p>The ARN of the Voice Connector group.</p>
|
|
1298
1298
|
* @public
|
|
1299
1299
|
*/
|
|
1300
|
-
VoiceConnectorGroupArn?: string;
|
|
1300
|
+
VoiceConnectorGroupArn?: string | undefined;
|
|
1301
1301
|
}
|
|
1302
1302
|
/**
|
|
1303
1303
|
* @public
|
|
@@ -1307,7 +1307,7 @@ export interface CreateVoiceConnectorGroupResponse {
|
|
|
1307
1307
|
* <p>The details of the Voice Connector group.</p>
|
|
1308
1308
|
* @public
|
|
1309
1309
|
*/
|
|
1310
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
1310
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
1311
1311
|
}
|
|
1312
1312
|
/**
|
|
1313
1313
|
* @public
|
|
@@ -1328,33 +1328,33 @@ export interface VoiceProfile {
|
|
|
1328
1328
|
* <p>The ID of the voice profile.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
VoiceProfileId?: string;
|
|
1331
|
+
VoiceProfileId?: string | undefined;
|
|
1332
1332
|
/**
|
|
1333
1333
|
* <p>The ARN of the voice profile.</p>
|
|
1334
1334
|
* @public
|
|
1335
1335
|
*/
|
|
1336
|
-
VoiceProfileArn?: string;
|
|
1336
|
+
VoiceProfileArn?: string | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* <p>The ID of the domain that contains the voice profile.</p>
|
|
1339
1339
|
* @public
|
|
1340
1340
|
*/
|
|
1341
|
-
VoiceProfileDomainId?: string;
|
|
1341
|
+
VoiceProfileDomainId?: string | undefined;
|
|
1342
1342
|
/**
|
|
1343
1343
|
* <p>The time at which the voice profile was created and enrolled.</p>
|
|
1344
1344
|
* @public
|
|
1345
1345
|
*/
|
|
1346
|
-
CreatedTimestamp?: Date;
|
|
1346
|
+
CreatedTimestamp?: Date | undefined;
|
|
1347
1347
|
/**
|
|
1348
1348
|
* <p>The time at which the voice profile was last updated.</p>
|
|
1349
1349
|
* @public
|
|
1350
1350
|
*/
|
|
1351
|
-
UpdatedTimestamp?: Date;
|
|
1351
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>The time at which a voice profile expires unless you re-enroll the caller via the
|
|
1354
1354
|
* <code>UpdateVoiceProfile</code> API.</p>
|
|
1355
1355
|
* @public
|
|
1356
1356
|
*/
|
|
1357
|
-
ExpirationTimestamp?: Date;
|
|
1357
|
+
ExpirationTimestamp?: Date | undefined;
|
|
1358
1358
|
}
|
|
1359
1359
|
/**
|
|
1360
1360
|
* @public
|
|
@@ -1364,7 +1364,7 @@ export interface CreateVoiceProfileResponse {
|
|
|
1364
1364
|
* <p>The requested voice profile.</p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
VoiceProfile?: VoiceProfile;
|
|
1367
|
+
VoiceProfile?: VoiceProfile | undefined;
|
|
1368
1368
|
}
|
|
1369
1369
|
/**
|
|
1370
1370
|
* <p>Access to the target resource is no longer available at the origin server. This condition is likely to be permanent.</p>
|
|
@@ -1373,8 +1373,8 @@ export interface CreateVoiceProfileResponse {
|
|
|
1373
1373
|
export declare class GoneException extends __BaseException {
|
|
1374
1374
|
readonly name: "GoneException";
|
|
1375
1375
|
readonly $fault: "client";
|
|
1376
|
-
Code?: ErrorCode;
|
|
1377
|
-
Message?: string;
|
|
1376
|
+
Code?: ErrorCode | undefined;
|
|
1377
|
+
Message?: string | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* @internal
|
|
1380
1380
|
*/
|
|
@@ -1408,7 +1408,7 @@ export interface CreateVoiceProfileDomainRequest {
|
|
|
1408
1408
|
* <p>A description of the voice profile domain.</p>
|
|
1409
1409
|
* @public
|
|
1410
1410
|
*/
|
|
1411
|
-
Description?: string;
|
|
1411
|
+
Description?: string | undefined;
|
|
1412
1412
|
/**
|
|
1413
1413
|
* <p>The server-side encryption configuration for the request.</p>
|
|
1414
1414
|
* @public
|
|
@@ -1418,12 +1418,12 @@ export interface CreateVoiceProfileDomainRequest {
|
|
|
1418
1418
|
* <p>The unique identifier for the client request. Use a different token for different domain creation requests.</p>
|
|
1419
1419
|
* @public
|
|
1420
1420
|
*/
|
|
1421
|
-
ClientRequestToken?: string;
|
|
1421
|
+
ClientRequestToken?: string | undefined;
|
|
1422
1422
|
/**
|
|
1423
1423
|
* <p>The tags assigned to the domain.</p>
|
|
1424
1424
|
* @public
|
|
1425
1425
|
*/
|
|
1426
|
-
Tags?: Tag[];
|
|
1426
|
+
Tags?: Tag[] | undefined;
|
|
1427
1427
|
}
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>A collection of voice profiles.</p>
|
|
@@ -1434,37 +1434,37 @@ export interface VoiceProfileDomain {
|
|
|
1434
1434
|
* <p>The ID of the voice profile domain.</p>
|
|
1435
1435
|
* @public
|
|
1436
1436
|
*/
|
|
1437
|
-
VoiceProfileDomainId?: string;
|
|
1437
|
+
VoiceProfileDomainId?: string | undefined;
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p>The voice profile domain's Amazon Resource Number (ARN).</p>
|
|
1440
1440
|
* @public
|
|
1441
1441
|
*/
|
|
1442
|
-
VoiceProfileDomainArn?: string;
|
|
1442
|
+
VoiceProfileDomainArn?: string | undefined;
|
|
1443
1443
|
/**
|
|
1444
1444
|
* <p>The name of the voice profile domain.</p>
|
|
1445
1445
|
* @public
|
|
1446
1446
|
*/
|
|
1447
|
-
Name?: string;
|
|
1447
|
+
Name?: string | undefined;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* <p>The description of the voice profile domain.</p>
|
|
1450
1450
|
* @public
|
|
1451
1451
|
*/
|
|
1452
|
-
Description?: string;
|
|
1452
|
+
Description?: string | undefined;
|
|
1453
1453
|
/**
|
|
1454
1454
|
* <p>A structure that contains the configuration settings for server-side encryption.</p>
|
|
1455
1455
|
* @public
|
|
1456
1456
|
*/
|
|
1457
|
-
ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
1457
|
+
ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
1458
1458
|
/**
|
|
1459
1459
|
* <p>The time at which the voice profile domain was created.</p>
|
|
1460
1460
|
* @public
|
|
1461
1461
|
*/
|
|
1462
|
-
CreatedTimestamp?: Date;
|
|
1462
|
+
CreatedTimestamp?: Date | undefined;
|
|
1463
1463
|
/**
|
|
1464
1464
|
* <p>The time at which the voice profile was last updated.</p>
|
|
1465
1465
|
* @public
|
|
1466
1466
|
*/
|
|
1467
|
-
UpdatedTimestamp?: Date;
|
|
1467
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1468
1468
|
}
|
|
1469
1469
|
/**
|
|
1470
1470
|
* @public
|
|
@@ -1474,7 +1474,7 @@ export interface CreateVoiceProfileDomainResponse {
|
|
|
1474
1474
|
* <p>The requested voice profile domain.</p>
|
|
1475
1475
|
* @public
|
|
1476
1476
|
*/
|
|
1477
|
-
VoiceProfileDomain?: VoiceProfileDomain;
|
|
1477
|
+
VoiceProfileDomain?: VoiceProfileDomain | undefined;
|
|
1478
1478
|
}
|
|
1479
1479
|
/**
|
|
1480
1480
|
* @public
|
|
@@ -1651,7 +1651,7 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorResponse {
|
|
|
1651
1651
|
* list of the phone numbers is returned, along with error codes and error messages.</p>
|
|
1652
1652
|
* @public
|
|
1653
1653
|
*/
|
|
1654
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
1654
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
1655
1655
|
}
|
|
1656
1656
|
/**
|
|
1657
1657
|
* @public
|
|
@@ -1677,7 +1677,7 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorGroupResponse {
|
|
|
1677
1677
|
* a list of the phone numbers is returned, along with error codes and error messages.</p>
|
|
1678
1678
|
* @public
|
|
1679
1679
|
*/
|
|
1680
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
1680
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
1681
1681
|
}
|
|
1682
1682
|
/**
|
|
1683
1683
|
* <p>The Amazon Chime SDK Voice Connector settings. Includes any Amazon
|
|
@@ -1689,7 +1689,7 @@ export interface VoiceConnectorSettings {
|
|
|
1689
1689
|
* <p>The S3 bucket that stores the Voice Connector's call detail records.</p>
|
|
1690
1690
|
* @public
|
|
1691
1691
|
*/
|
|
1692
|
-
CdrBucket?: string;
|
|
1692
|
+
CdrBucket?: string | undefined;
|
|
1693
1693
|
}
|
|
1694
1694
|
/**
|
|
1695
1695
|
* @public
|
|
@@ -1699,7 +1699,7 @@ export interface GetGlobalSettingsResponse {
|
|
|
1699
1699
|
* <p>The Voice Connector settings.</p>
|
|
1700
1700
|
* @public
|
|
1701
1701
|
*/
|
|
1702
|
-
VoiceConnector?: VoiceConnectorSettings;
|
|
1702
|
+
VoiceConnector?: VoiceConnectorSettings | undefined;
|
|
1703
1703
|
}
|
|
1704
1704
|
/**
|
|
1705
1705
|
* @public
|
|
@@ -1734,17 +1734,17 @@ export interface PhoneNumberAssociation {
|
|
|
1734
1734
|
* <p>Contains the ID for the entity specified in Name.</p>
|
|
1735
1735
|
* @public
|
|
1736
1736
|
*/
|
|
1737
|
-
Value?: string;
|
|
1737
|
+
Value?: string | undefined;
|
|
1738
1738
|
/**
|
|
1739
1739
|
* <p>Defines the association with an Amazon Chime SDK account ID, user ID, Voice Connector ID, or Voice Connector group ID.</p>
|
|
1740
1740
|
* @public
|
|
1741
1741
|
*/
|
|
1742
|
-
Name?: PhoneNumberAssociationName;
|
|
1742
|
+
Name?: PhoneNumberAssociationName | undefined;
|
|
1743
1743
|
/**
|
|
1744
1744
|
* <p>The timestamp of the phone number association, in ISO 8601 format.</p>
|
|
1745
1745
|
* @public
|
|
1746
1746
|
*/
|
|
1747
|
-
AssociatedTimestamp?: Date;
|
|
1747
|
+
AssociatedTimestamp?: Date | undefined;
|
|
1748
1748
|
}
|
|
1749
1749
|
/**
|
|
1750
1750
|
* <p>The phone number capabilities for Amazon Chime SDK phone numbers,
|
|
@@ -1756,32 +1756,32 @@ export interface PhoneNumberCapabilities {
|
|
|
1756
1756
|
* <p>Allows or denies inbound calling for the specified phone number.</p>
|
|
1757
1757
|
* @public
|
|
1758
1758
|
*/
|
|
1759
|
-
InboundCall?: boolean;
|
|
1759
|
+
InboundCall?: boolean | undefined;
|
|
1760
1760
|
/**
|
|
1761
1761
|
* <p>Allows or denies outbound calling for the specified phone number.</p>
|
|
1762
1762
|
* @public
|
|
1763
1763
|
*/
|
|
1764
|
-
OutboundCall?: boolean;
|
|
1764
|
+
OutboundCall?: boolean | undefined;
|
|
1765
1765
|
/**
|
|
1766
1766
|
* <p>Allows or denies inbound SMS messaging for the specified phone number.</p>
|
|
1767
1767
|
* @public
|
|
1768
1768
|
*/
|
|
1769
|
-
InboundSMS?: boolean;
|
|
1769
|
+
InboundSMS?: boolean | undefined;
|
|
1770
1770
|
/**
|
|
1771
1771
|
* <p>Allows or denies outbound SMS messaging for the specified phone number.</p>
|
|
1772
1772
|
* @public
|
|
1773
1773
|
*/
|
|
1774
|
-
OutboundSMS?: boolean;
|
|
1774
|
+
OutboundSMS?: boolean | undefined;
|
|
1775
1775
|
/**
|
|
1776
1776
|
* <p>Allows or denies inbound MMS messaging for the specified phone number.</p>
|
|
1777
1777
|
* @public
|
|
1778
1778
|
*/
|
|
1779
|
-
InboundMMS?: boolean;
|
|
1779
|
+
InboundMMS?: boolean | undefined;
|
|
1780
1780
|
/**
|
|
1781
1781
|
* <p>Allows or denies inbound MMS messaging for the specified phone number.</p>
|
|
1782
1782
|
* @public
|
|
1783
1783
|
*/
|
|
1784
|
-
OutboundMMS?: boolean;
|
|
1784
|
+
OutboundMMS?: boolean | undefined;
|
|
1785
1785
|
}
|
|
1786
1786
|
/**
|
|
1787
1787
|
* @public
|
|
@@ -1826,77 +1826,77 @@ export interface PhoneNumber {
|
|
|
1826
1826
|
* <p>The phone number's ID.</p>
|
|
1827
1827
|
* @public
|
|
1828
1828
|
*/
|
|
1829
|
-
PhoneNumberId?: string;
|
|
1829
|
+
PhoneNumberId?: string | undefined;
|
|
1830
1830
|
/**
|
|
1831
1831
|
* <p>The phone number, in E.164 format.</p>
|
|
1832
1832
|
* @public
|
|
1833
1833
|
*/
|
|
1834
|
-
E164PhoneNumber?: string;
|
|
1834
|
+
E164PhoneNumber?: string | undefined;
|
|
1835
1835
|
/**
|
|
1836
1836
|
* <p>The phone number's country. Format: ISO 3166-1 alpha-2.</p>
|
|
1837
1837
|
* @public
|
|
1838
1838
|
*/
|
|
1839
|
-
Country?: string;
|
|
1839
|
+
Country?: string | undefined;
|
|
1840
1840
|
/**
|
|
1841
1841
|
* <p>The phone number's type.</p>
|
|
1842
1842
|
* @public
|
|
1843
1843
|
*/
|
|
1844
|
-
Type?: PhoneNumberType;
|
|
1844
|
+
Type?: PhoneNumberType | undefined;
|
|
1845
1845
|
/**
|
|
1846
1846
|
* <p>The phone number's product type.</p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
ProductType?: PhoneNumberProductType;
|
|
1849
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* <p>The phone number's status.</p>
|
|
1852
1852
|
* @public
|
|
1853
1853
|
*/
|
|
1854
|
-
Status?: PhoneNumberStatus;
|
|
1854
|
+
Status?: PhoneNumberStatus | undefined;
|
|
1855
1855
|
/**
|
|
1856
1856
|
* <p>The phone number's capabilities.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
Capabilities?: PhoneNumberCapabilities;
|
|
1859
|
+
Capabilities?: PhoneNumberCapabilities | undefined;
|
|
1860
1860
|
/**
|
|
1861
1861
|
* <p>The phone number's associations.</p>
|
|
1862
1862
|
* @public
|
|
1863
1863
|
*/
|
|
1864
|
-
Associations?: PhoneNumberAssociation[];
|
|
1864
|
+
Associations?: PhoneNumberAssociation[] | undefined;
|
|
1865
1865
|
/**
|
|
1866
1866
|
* <p>The outbound calling name associated with the phone number.</p>
|
|
1867
1867
|
* @public
|
|
1868
1868
|
*/
|
|
1869
|
-
CallingName?: string;
|
|
1869
|
+
CallingName?: string | undefined;
|
|
1870
1870
|
/**
|
|
1871
1871
|
* <p>The outbound calling name status.</p>
|
|
1872
1872
|
* @public
|
|
1873
1873
|
*/
|
|
1874
|
-
CallingNameStatus?: CallingNameStatus;
|
|
1874
|
+
CallingNameStatus?: CallingNameStatus | undefined;
|
|
1875
1875
|
/**
|
|
1876
1876
|
* <p>The phone number creation timestamp, in ISO 8601 format.</p>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
CreatedTimestamp?: Date;
|
|
1879
|
+
CreatedTimestamp?: Date | undefined;
|
|
1880
1880
|
/**
|
|
1881
1881
|
* <p>The updated phone number timestamp, in ISO 8601 format.</p>
|
|
1882
1882
|
* @public
|
|
1883
1883
|
*/
|
|
1884
|
-
UpdatedTimestamp?: Date;
|
|
1884
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1885
1885
|
/**
|
|
1886
1886
|
* <p>The deleted phone number timestamp, in ISO 8601 format.</p>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
DeletionTimestamp?: Date;
|
|
1889
|
+
DeletionTimestamp?: Date | undefined;
|
|
1890
1890
|
/**
|
|
1891
1891
|
* <p>The phone number's order ID.</p>
|
|
1892
1892
|
* @public
|
|
1893
1893
|
*/
|
|
1894
|
-
OrderId?: string;
|
|
1894
|
+
OrderId?: string | undefined;
|
|
1895
1895
|
/**
|
|
1896
1896
|
* <p>The name of the phone number.</p>
|
|
1897
1897
|
* @public
|
|
1898
1898
|
*/
|
|
1899
|
-
Name?: string;
|
|
1899
|
+
Name?: string | undefined;
|
|
1900
1900
|
}
|
|
1901
1901
|
/**
|
|
1902
1902
|
* @public
|
|
@@ -1906,7 +1906,7 @@ export interface GetPhoneNumberResponse {
|
|
|
1906
1906
|
* <p>The phone number details.</p>
|
|
1907
1907
|
* @public
|
|
1908
1908
|
*/
|
|
1909
|
-
PhoneNumber?: PhoneNumber;
|
|
1909
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
1910
1910
|
}
|
|
1911
1911
|
/**
|
|
1912
1912
|
* @public
|
|
@@ -1926,7 +1926,7 @@ export interface GetPhoneNumberOrderResponse {
|
|
|
1926
1926
|
* <p>The phone number order details.</p>
|
|
1927
1927
|
* @public
|
|
1928
1928
|
*/
|
|
1929
|
-
PhoneNumberOrder?: PhoneNumberOrder;
|
|
1929
|
+
PhoneNumberOrder?: PhoneNumberOrder | undefined;
|
|
1930
1930
|
}
|
|
1931
1931
|
/**
|
|
1932
1932
|
* @public
|
|
@@ -1936,12 +1936,12 @@ export interface GetPhoneNumberSettingsResponse {
|
|
|
1936
1936
|
* <p>The default outbound calling name for the account.</p>
|
|
1937
1937
|
* @public
|
|
1938
1938
|
*/
|
|
1939
|
-
CallingName?: string;
|
|
1939
|
+
CallingName?: string | undefined;
|
|
1940
1940
|
/**
|
|
1941
1941
|
* <p>The updated outbound calling name timestamp, in ISO 8601 format.</p>
|
|
1942
1942
|
* @public
|
|
1943
1943
|
*/
|
|
1944
|
-
CallingNameUpdatedTimestamp?: Date;
|
|
1944
|
+
CallingNameUpdatedTimestamp?: Date | undefined;
|
|
1945
1945
|
}
|
|
1946
1946
|
/**
|
|
1947
1947
|
* @public
|
|
@@ -1966,7 +1966,7 @@ export interface GetProxySessionResponse {
|
|
|
1966
1966
|
* <p>The proxy session details.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
ProxySession?: ProxySession;
|
|
1969
|
+
ProxySession?: ProxySession | undefined;
|
|
1970
1970
|
}
|
|
1971
1971
|
/**
|
|
1972
1972
|
* @public
|
|
@@ -1986,7 +1986,7 @@ export interface GetSipMediaApplicationResponse {
|
|
|
1986
1986
|
* <p>The details of the SIP media application.</p>
|
|
1987
1987
|
* @public
|
|
1988
1988
|
*/
|
|
1989
|
-
SipMediaApplication?: SipMediaApplication;
|
|
1989
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
1990
1990
|
}
|
|
1991
1991
|
/**
|
|
1992
1992
|
* @public
|
|
@@ -2026,7 +2026,7 @@ export interface GetSipMediaApplicationAlexaSkillConfigurationResponse {
|
|
|
2026
2026
|
* <p>Returns the Alexa Skill configuration.</p>
|
|
2027
2027
|
* @public
|
|
2028
2028
|
*/
|
|
2029
|
-
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration;
|
|
2029
|
+
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration | undefined;
|
|
2030
2030
|
}
|
|
2031
2031
|
/**
|
|
2032
2032
|
* @public
|
|
@@ -2047,7 +2047,7 @@ export interface SipMediaApplicationLoggingConfiguration {
|
|
|
2047
2047
|
* <p>Enables message logging for the specified SIP media application.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
EnableSipMediaApplicationMessageLogs?: boolean;
|
|
2050
|
+
EnableSipMediaApplicationMessageLogs?: boolean | undefined;
|
|
2051
2051
|
}
|
|
2052
2052
|
/**
|
|
2053
2053
|
* @public
|
|
@@ -2057,7 +2057,7 @@ export interface GetSipMediaApplicationLoggingConfigurationResponse {
|
|
|
2057
2057
|
* <p>The actual logging configuration.</p>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
|
2060
|
+
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration | undefined;
|
|
2061
2061
|
}
|
|
2062
2062
|
/**
|
|
2063
2063
|
* @public
|
|
@@ -2077,7 +2077,7 @@ export interface GetSipRuleResponse {
|
|
|
2077
2077
|
* <p>The SIP rule details.</p>
|
|
2078
2078
|
* @public
|
|
2079
2079
|
*/
|
|
2080
|
-
SipRule?: SipRule;
|
|
2080
|
+
SipRule?: SipRule | undefined;
|
|
2081
2081
|
}
|
|
2082
2082
|
/**
|
|
2083
2083
|
* @public
|
|
@@ -2103,12 +2103,12 @@ export interface SpeakerSearchResult {
|
|
|
2103
2103
|
* <p>The confidence score in the speaker search analysis.</p>
|
|
2104
2104
|
* @public
|
|
2105
2105
|
*/
|
|
2106
|
-
ConfidenceScore?: number;
|
|
2106
|
+
ConfidenceScore?: number | undefined;
|
|
2107
2107
|
/**
|
|
2108
2108
|
* <p>The voice profile ID.</p>
|
|
2109
2109
|
* @public
|
|
2110
2110
|
*/
|
|
2111
|
-
VoiceProfileId?: string;
|
|
2111
|
+
VoiceProfileId?: string | undefined;
|
|
2112
2112
|
}
|
|
2113
2113
|
/**
|
|
2114
2114
|
* <p>The details of a speaker search task.</p>
|
|
@@ -2119,12 +2119,12 @@ export interface SpeakerSearchDetails {
|
|
|
2119
2119
|
* <p>The result value in the speaker search details.</p>
|
|
2120
2120
|
* @public
|
|
2121
2121
|
*/
|
|
2122
|
-
Results?: SpeakerSearchResult[];
|
|
2122
|
+
Results?: SpeakerSearchResult[] | undefined;
|
|
2123
2123
|
/**
|
|
2124
2124
|
* <p>The status of a voice print generation operation, <code>VoiceprintGenerationSuccess</code> or <code>VoiceprintGenerationFailure</code>..</p>
|
|
2125
2125
|
* @public
|
|
2126
2126
|
*/
|
|
2127
|
-
VoiceprintGenerationStatus?: string;
|
|
2127
|
+
VoiceprintGenerationStatus?: string | undefined;
|
|
2128
2128
|
}
|
|
2129
2129
|
/**
|
|
2130
2130
|
* <p>A representation of an asynchronous request to perform speaker search analysis on a
|
|
@@ -2136,43 +2136,43 @@ export interface SpeakerSearchTask {
|
|
|
2136
2136
|
* <p>The speaker search task ID.</p>
|
|
2137
2137
|
* @public
|
|
2138
2138
|
*/
|
|
2139
|
-
SpeakerSearchTaskId?: string;
|
|
2139
|
+
SpeakerSearchTaskId?: string | undefined;
|
|
2140
2140
|
/**
|
|
2141
2141
|
* <p>The status of the speaker search task, <code>IN_QUEUE</code>, <code>IN_PROGRESS</code>, <code>PARTIAL_SUCCESS</code>, <code>SUCCEEDED</code>,
|
|
2142
2142
|
* <code>FAILED</code>, or <code>STOPPED</code>.</p>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
SpeakerSearchTaskStatus?: string;
|
|
2145
|
+
SpeakerSearchTaskStatus?: string | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>The call details of a speaker search task.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
CallDetails?: CallDetails;
|
|
2150
|
+
CallDetails?: CallDetails | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The details of a speaker search task.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
SpeakerSearchDetails?: SpeakerSearchDetails;
|
|
2155
|
+
SpeakerSearchDetails?: SpeakerSearchDetails | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The time at which a speaker search task was created.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
CreatedTimestamp?: Date;
|
|
2160
|
+
CreatedTimestamp?: Date | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>The time at which a speaker search task was updated.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
UpdatedTimestamp?: Date;
|
|
2165
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* <p>The time at which the speaker search task began.</p>
|
|
2168
2168
|
* @public
|
|
2169
2169
|
*/
|
|
2170
|
-
StartedTimestamp?: Date;
|
|
2170
|
+
StartedTimestamp?: Date | undefined;
|
|
2171
2171
|
/**
|
|
2172
2172
|
* <p>A detailed message about the status of a speaker search.</p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
StatusMessage?: string;
|
|
2175
|
+
StatusMessage?: string | undefined;
|
|
2176
2176
|
}
|
|
2177
2177
|
/**
|
|
2178
2178
|
* @public
|
|
@@ -2182,7 +2182,7 @@ export interface GetSpeakerSearchTaskResponse {
|
|
|
2182
2182
|
* <p>The details of the speaker search task.</p>
|
|
2183
2183
|
* @public
|
|
2184
2184
|
*/
|
|
2185
|
-
SpeakerSearchTask?: SpeakerSearchTask;
|
|
2185
|
+
SpeakerSearchTask?: SpeakerSearchTask | undefined;
|
|
2186
2186
|
}
|
|
2187
2187
|
/**
|
|
2188
2188
|
* @public
|
|
@@ -2202,7 +2202,7 @@ export interface GetVoiceConnectorResponse {
|
|
|
2202
2202
|
* <p>The Voice Connector details.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
VoiceConnector?: VoiceConnector;
|
|
2205
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
2206
2206
|
}
|
|
2207
2207
|
/**
|
|
2208
2208
|
* @public
|
|
@@ -2230,7 +2230,7 @@ export interface DNISEmergencyCallingConfiguration {
|
|
|
2230
2230
|
* <p>The DNIS phone number for routing test emergency calls to, in E.164 format.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
TestPhoneNumber?: string;
|
|
2233
|
+
TestPhoneNumber?: string | undefined;
|
|
2234
2234
|
/**
|
|
2235
2235
|
* <p>The country from which emergency calls are allowed, in ISO 3166-1 alpha-2 format.</p>
|
|
2236
2236
|
* @public
|
|
@@ -2248,7 +2248,7 @@ export interface EmergencyCallingConfiguration {
|
|
|
2248
2248
|
* details.</p>
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
2251
|
-
DNIS?: DNISEmergencyCallingConfiguration[];
|
|
2251
|
+
DNIS?: DNISEmergencyCallingConfiguration[] | undefined;
|
|
2252
2252
|
}
|
|
2253
2253
|
/**
|
|
2254
2254
|
* @public
|
|
@@ -2258,7 +2258,7 @@ export interface GetVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
|
2258
2258
|
* <p>The details of the emergency calling configuration.</p>
|
|
2259
2259
|
* @public
|
|
2260
2260
|
*/
|
|
2261
|
-
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
2261
|
+
EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
|
|
2262
2262
|
}
|
|
2263
2263
|
/**
|
|
2264
2264
|
* @public
|
|
@@ -2278,7 +2278,7 @@ export interface GetVoiceConnectorGroupResponse {
|
|
|
2278
2278
|
* <p>The details of the Voice Connector group.</p>
|
|
2279
2279
|
* @public
|
|
2280
2280
|
*/
|
|
2281
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
2281
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
2282
2282
|
}
|
|
2283
2283
|
/**
|
|
2284
2284
|
* @public
|
|
@@ -2300,12 +2300,12 @@ export interface LoggingConfiguration {
|
|
|
2300
2300
|
* <p>Boolean that enables sending SIP message logs to Amazon CloudWatch.</p>
|
|
2301
2301
|
* @public
|
|
2302
2302
|
*/
|
|
2303
|
-
EnableSIPLogs?: boolean;
|
|
2303
|
+
EnableSIPLogs?: boolean | undefined;
|
|
2304
2304
|
/**
|
|
2305
2305
|
* <p>Enables or disables media metrics logging.</p>
|
|
2306
2306
|
* @public
|
|
2307
2307
|
*/
|
|
2308
|
-
EnableMediaMetricLogs?: boolean;
|
|
2308
|
+
EnableMediaMetricLogs?: boolean | undefined;
|
|
2309
2309
|
}
|
|
2310
2310
|
/**
|
|
2311
2311
|
* @public
|
|
@@ -2315,7 +2315,7 @@ export interface GetVoiceConnectorLoggingConfigurationResponse {
|
|
|
2315
2315
|
* <p>The logging configuration details .</p>
|
|
2316
2316
|
* @public
|
|
2317
2317
|
*/
|
|
2318
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
2318
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
2319
2319
|
}
|
|
2320
2320
|
/**
|
|
2321
2321
|
* @public
|
|
@@ -2353,30 +2353,30 @@ export interface OriginationRoute {
|
|
|
2353
2353
|
* <p>The FQDN or IP address to contact for origination traffic.</p>
|
|
2354
2354
|
* @public
|
|
2355
2355
|
*/
|
|
2356
|
-
Host?: string;
|
|
2356
|
+
Host?: string | undefined;
|
|
2357
2357
|
/**
|
|
2358
2358
|
* <p>The designated origination route port. Defaults to 5060.</p>
|
|
2359
2359
|
* @public
|
|
2360
2360
|
*/
|
|
2361
|
-
Port?: number;
|
|
2361
|
+
Port?: number | undefined;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* <p>The protocol to use for the origination route. Encryption-enabled Amazon Chime SDK Voice Connectors use
|
|
2364
2364
|
* TCP protocol by default.</p>
|
|
2365
2365
|
* @public
|
|
2366
2366
|
*/
|
|
2367
|
-
Protocol?: OriginationRouteProtocol;
|
|
2367
|
+
Protocol?: OriginationRouteProtocol | undefined;
|
|
2368
2368
|
/**
|
|
2369
2369
|
* <p>The priority associated with the host, with 1 being the highest priority. Higher
|
|
2370
2370
|
* priority hosts are attempted first.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
Priority?: number;
|
|
2373
|
+
Priority?: number | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p>The weight assigned to an origination route. When hosts have equal priority,
|
|
2376
2376
|
* calls are distributed between them based on their relative weights.</p>
|
|
2377
2377
|
* @public
|
|
2378
2378
|
*/
|
|
2379
|
-
Weight?: number;
|
|
2379
|
+
Weight?: number | undefined;
|
|
2380
2380
|
}
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>Origination settings enable your SIP hosts to receive inbound calls using your
|
|
@@ -2394,7 +2394,7 @@ export interface Origination {
|
|
|
2394
2394
|
* this parameter or <code>Disabled</code>.</p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
Routes?: OriginationRoute[];
|
|
2397
|
+
Routes?: OriginationRoute[] | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p>When origination settings are disabled, inbound calls are not enabled for your
|
|
2400
2400
|
* Amazon Chime SDK Voice Connector.
|
|
@@ -2402,7 +2402,7 @@ export interface Origination {
|
|
|
2402
2402
|
* <code>Routes</code>.</p>
|
|
2403
2403
|
* @public
|
|
2404
2404
|
*/
|
|
2405
|
-
Disabled?: boolean;
|
|
2405
|
+
Disabled?: boolean | undefined;
|
|
2406
2406
|
}
|
|
2407
2407
|
/**
|
|
2408
2408
|
* @public
|
|
@@ -2412,7 +2412,7 @@ export interface GetVoiceConnectorOriginationResponse {
|
|
|
2412
2412
|
* <p>The origination setting details.</p>
|
|
2413
2413
|
* @public
|
|
2414
2414
|
*/
|
|
2415
|
-
Origination?: Origination;
|
|
2415
|
+
Origination?: Origination | undefined;
|
|
2416
2416
|
}
|
|
2417
2417
|
/**
|
|
2418
2418
|
* @public
|
|
@@ -2433,22 +2433,22 @@ export interface Proxy {
|
|
|
2433
2433
|
* <p>The default number of minutes allowed for proxy sessions.</p>
|
|
2434
2434
|
* @public
|
|
2435
2435
|
*/
|
|
2436
|
-
DefaultSessionExpiryMinutes?: number;
|
|
2436
|
+
DefaultSessionExpiryMinutes?: number | undefined;
|
|
2437
2437
|
/**
|
|
2438
2438
|
* <p>When true, stops proxy sessions from being created on the specified Amazon Chime SDK Voice Connector.</p>
|
|
2439
2439
|
* @public
|
|
2440
2440
|
*/
|
|
2441
|
-
Disabled?: boolean;
|
|
2441
|
+
Disabled?: boolean | undefined;
|
|
2442
2442
|
/**
|
|
2443
2443
|
* <p>The phone number to route calls to after a proxy session expires.</p>
|
|
2444
2444
|
* @public
|
|
2445
2445
|
*/
|
|
2446
|
-
FallBackPhoneNumber?: string;
|
|
2446
|
+
FallBackPhoneNumber?: string | undefined;
|
|
2447
2447
|
/**
|
|
2448
2448
|
* <p>The countries for proxy phone numbers to be selected from.</p>
|
|
2449
2449
|
* @public
|
|
2450
2450
|
*/
|
|
2451
|
-
PhoneNumberCountries?: string[];
|
|
2451
|
+
PhoneNumberCountries?: string[] | undefined;
|
|
2452
2452
|
}
|
|
2453
2453
|
/**
|
|
2454
2454
|
* @public
|
|
@@ -2458,7 +2458,7 @@ export interface GetVoiceConnectorProxyResponse {
|
|
|
2458
2458
|
* <p>The proxy configuration details.</p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
Proxy?: Proxy;
|
|
2461
|
+
Proxy?: Proxy | undefined;
|
|
2462
2462
|
}
|
|
2463
2463
|
/**
|
|
2464
2464
|
* @public
|
|
@@ -2479,12 +2479,12 @@ export interface MediaInsightsConfiguration {
|
|
|
2479
2479
|
* <p>Denotes the configuration as enabled or disabled.</p>
|
|
2480
2480
|
* @public
|
|
2481
2481
|
*/
|
|
2482
|
-
Disabled?: boolean;
|
|
2482
|
+
Disabled?: boolean | undefined;
|
|
2483
2483
|
/**
|
|
2484
2484
|
* <p>The configuration's ARN.</p>
|
|
2485
2485
|
* @public
|
|
2486
2486
|
*/
|
|
2487
|
-
ConfigurationArn?: string;
|
|
2487
|
+
ConfigurationArn?: string | undefined;
|
|
2488
2488
|
}
|
|
2489
2489
|
/**
|
|
2490
2490
|
* @public
|
|
@@ -2508,7 +2508,7 @@ export interface StreamingNotificationTarget {
|
|
|
2508
2508
|
* <p>The streaming notification target.</p>
|
|
2509
2509
|
* @public
|
|
2510
2510
|
*/
|
|
2511
|
-
NotificationTarget?: NotificationTarget;
|
|
2511
|
+
NotificationTarget?: NotificationTarget | undefined;
|
|
2512
2512
|
}
|
|
2513
2513
|
/**
|
|
2514
2514
|
* <p>The streaming configuration associated with an Amazon Chime SDK Voice Connector.
|
|
@@ -2531,12 +2531,12 @@ export interface StreamingConfiguration {
|
|
|
2531
2531
|
* <p>The streaming notification targets.</p>
|
|
2532
2532
|
* @public
|
|
2533
2533
|
*/
|
|
2534
|
-
StreamingNotificationTargets?: StreamingNotificationTarget[];
|
|
2534
|
+
StreamingNotificationTargets?: StreamingNotificationTarget[] | undefined;
|
|
2535
2535
|
/**
|
|
2536
2536
|
* <p>The call analytics configuration.</p>
|
|
2537
2537
|
* @public
|
|
2538
2538
|
*/
|
|
2539
|
-
MediaInsightsConfiguration?: MediaInsightsConfiguration;
|
|
2539
|
+
MediaInsightsConfiguration?: MediaInsightsConfiguration | undefined;
|
|
2540
2540
|
}
|
|
2541
2541
|
/**
|
|
2542
2542
|
* @public
|
|
@@ -2546,7 +2546,7 @@ export interface GetVoiceConnectorStreamingConfigurationResponse {
|
|
|
2546
2546
|
* <p>The details of the streaming configuration.</p>
|
|
2547
2547
|
* @public
|
|
2548
2548
|
*/
|
|
2549
|
-
StreamingConfiguration?: StreamingConfiguration;
|
|
2549
|
+
StreamingConfiguration?: StreamingConfiguration | undefined;
|
|
2550
2550
|
}
|
|
2551
2551
|
/**
|
|
2552
2552
|
* @public
|
|
@@ -2567,27 +2567,27 @@ export interface Termination {
|
|
|
2567
2567
|
* <p>The limit on calls per second. Max value based on account service quota. Default value of 1.</p>
|
|
2568
2568
|
* @public
|
|
2569
2569
|
*/
|
|
2570
|
-
CpsLimit?: number;
|
|
2570
|
+
CpsLimit?: number | undefined;
|
|
2571
2571
|
/**
|
|
2572
2572
|
* <p>The default outbound calling number.</p>
|
|
2573
2573
|
* @public
|
|
2574
2574
|
*/
|
|
2575
|
-
DefaultPhoneNumber?: string;
|
|
2575
|
+
DefaultPhoneNumber?: string | undefined;
|
|
2576
2576
|
/**
|
|
2577
2577
|
* <p>The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.</p>
|
|
2578
2578
|
* @public
|
|
2579
2579
|
*/
|
|
2580
|
-
CallingRegions?: string[];
|
|
2580
|
+
CallingRegions?: string[] | undefined;
|
|
2581
2581
|
/**
|
|
2582
2582
|
* <p>The IP addresses allowed to make calls, in CIDR format.</p>
|
|
2583
2583
|
* @public
|
|
2584
2584
|
*/
|
|
2585
|
-
CidrAllowedList?: string[];
|
|
2585
|
+
CidrAllowedList?: string[] | undefined;
|
|
2586
2586
|
/**
|
|
2587
2587
|
* <p>When termination is disabled, outbound calls cannot be made.</p>
|
|
2588
2588
|
* @public
|
|
2589
2589
|
*/
|
|
2590
|
-
Disabled?: boolean;
|
|
2590
|
+
Disabled?: boolean | undefined;
|
|
2591
2591
|
}
|
|
2592
2592
|
/**
|
|
2593
2593
|
* @public
|
|
@@ -2597,7 +2597,7 @@ export interface GetVoiceConnectorTerminationResponse {
|
|
|
2597
2597
|
* <p>The termination setting details.</p>
|
|
2598
2598
|
* @public
|
|
2599
2599
|
*/
|
|
2600
|
-
Termination?: Termination;
|
|
2600
|
+
Termination?: Termination | undefined;
|
|
2601
2601
|
}
|
|
2602
2602
|
/**
|
|
2603
2603
|
* @public
|
|
@@ -2618,12 +2618,12 @@ export interface TerminationHealth {
|
|
|
2618
2618
|
* <p>The timestamp, in ISO 8601 format.</p>
|
|
2619
2619
|
* @public
|
|
2620
2620
|
*/
|
|
2621
|
-
Timestamp?: Date;
|
|
2621
|
+
Timestamp?: Date | undefined;
|
|
2622
2622
|
/**
|
|
2623
2623
|
* <p>The source IP address.</p>
|
|
2624
2624
|
* @public
|
|
2625
2625
|
*/
|
|
2626
|
-
Source?: string;
|
|
2626
|
+
Source?: string | undefined;
|
|
2627
2627
|
}
|
|
2628
2628
|
/**
|
|
2629
2629
|
* @public
|
|
@@ -2633,7 +2633,7 @@ export interface GetVoiceConnectorTerminationHealthResponse {
|
|
|
2633
2633
|
* <p>The termination health details.</p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
TerminationHealth?: TerminationHealth;
|
|
2636
|
+
TerminationHealth?: TerminationHealth | undefined;
|
|
2637
2637
|
}
|
|
2638
2638
|
/**
|
|
2639
2639
|
* @public
|
|
@@ -2653,7 +2653,7 @@ export interface GetVoiceProfileResponse {
|
|
|
2653
2653
|
* <p>The voice profile details.</p>
|
|
2654
2654
|
* @public
|
|
2655
2655
|
*/
|
|
2656
|
-
VoiceProfile?: VoiceProfile;
|
|
2656
|
+
VoiceProfile?: VoiceProfile | undefined;
|
|
2657
2657
|
}
|
|
2658
2658
|
/**
|
|
2659
2659
|
* @public
|
|
@@ -2673,7 +2673,7 @@ export interface GetVoiceProfileDomainResponse {
|
|
|
2673
2673
|
* <p>The details of the voice profile domain.</p>
|
|
2674
2674
|
* @public
|
|
2675
2675
|
*/
|
|
2676
|
-
VoiceProfileDomain?: VoiceProfileDomain;
|
|
2676
|
+
VoiceProfileDomain?: VoiceProfileDomain | undefined;
|
|
2677
2677
|
}
|
|
2678
2678
|
/**
|
|
2679
2679
|
* @public
|
|
@@ -2704,38 +2704,38 @@ export interface VoiceToneAnalysisTask {
|
|
|
2704
2704
|
* <p>The ID of the voice tone analysis task.</p>
|
|
2705
2705
|
* @public
|
|
2706
2706
|
*/
|
|
2707
|
-
VoiceToneAnalysisTaskId?: string;
|
|
2707
|
+
VoiceToneAnalysisTaskId?: string | undefined;
|
|
2708
2708
|
/**
|
|
2709
2709
|
* <p>The status of a voice tone analysis task, <code>IN_QUEUE</code>, <code>IN_PROGRESS</code>, <code>PARTIAL_SUCCESS</code>, <code>SUCCEEDED</code>,
|
|
2710
2710
|
* <code>FAILED</code>, or <code>STOPPED</code>.</p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
VoiceToneAnalysisTaskStatus?: string;
|
|
2713
|
+
VoiceToneAnalysisTaskStatus?: string | undefined;
|
|
2714
2714
|
/**
|
|
2715
2715
|
* <p>The call details of a voice tone analysis task.</p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
CallDetails?: CallDetails;
|
|
2718
|
+
CallDetails?: CallDetails | undefined;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* <p>The time at which a voice tone analysis task was created.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
CreatedTimestamp?: Date;
|
|
2723
|
+
CreatedTimestamp?: Date | undefined;
|
|
2724
2724
|
/**
|
|
2725
2725
|
* <p>The time at which a voice tone analysis task was updated.</p>
|
|
2726
2726
|
* @public
|
|
2727
2727
|
*/
|
|
2728
|
-
UpdatedTimestamp?: Date;
|
|
2728
|
+
UpdatedTimestamp?: Date | undefined;
|
|
2729
2729
|
/**
|
|
2730
2730
|
* <p>The time at which a voice tone analysis task started.</p>
|
|
2731
2731
|
* @public
|
|
2732
2732
|
*/
|
|
2733
|
-
StartedTimestamp?: Date;
|
|
2733
|
+
StartedTimestamp?: Date | undefined;
|
|
2734
2734
|
/**
|
|
2735
2735
|
* <p>The status of a voice tone analysis task.</p>
|
|
2736
2736
|
* @public
|
|
2737
2737
|
*/
|
|
2738
|
-
StatusMessage?: string;
|
|
2738
|
+
StatusMessage?: string | undefined;
|
|
2739
2739
|
}
|
|
2740
2740
|
/**
|
|
2741
2741
|
* @public
|
|
@@ -2745,7 +2745,7 @@ export interface GetVoiceToneAnalysisTaskResponse {
|
|
|
2745
2745
|
* <p>The details of the voice tone analysis task.</p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
2748
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask | undefined;
|
|
2749
2749
|
}
|
|
2750
2750
|
/**
|
|
2751
2751
|
* @public
|
|
@@ -2755,7 +2755,7 @@ export interface ListAvailableVoiceConnectorRegionsResponse {
|
|
|
2755
2755
|
* <p>The list of AWS Regions.</p>
|
|
2756
2756
|
* @public
|
|
2757
2757
|
*/
|
|
2758
|
-
VoiceConnectorRegions?: VoiceConnectorAwsRegion[];
|
|
2758
|
+
VoiceConnectorRegions?: VoiceConnectorAwsRegion[] | undefined;
|
|
2759
2759
|
}
|
|
2760
2760
|
/**
|
|
2761
2761
|
* @public
|
|
@@ -2765,12 +2765,12 @@ export interface ListPhoneNumberOrdersRequest {
|
|
|
2765
2765
|
* <p>The token used to retrieve the next page of results.</p>
|
|
2766
2766
|
* @public
|
|
2767
2767
|
*/
|
|
2768
|
-
NextToken?: string;
|
|
2768
|
+
NextToken?: string | undefined;
|
|
2769
2769
|
/**
|
|
2770
2770
|
* <p>The maximum number of results to return in a single call.</p>
|
|
2771
2771
|
* @public
|
|
2772
2772
|
*/
|
|
2773
|
-
MaxResults?: number;
|
|
2773
|
+
MaxResults?: number | undefined;
|
|
2774
2774
|
}
|
|
2775
2775
|
/**
|
|
2776
2776
|
* @public
|
|
@@ -2780,12 +2780,12 @@ export interface ListPhoneNumberOrdersResponse {
|
|
|
2780
2780
|
* <p>The phone number order details.</p>
|
|
2781
2781
|
* @public
|
|
2782
2782
|
*/
|
|
2783
|
-
PhoneNumberOrders?: PhoneNumberOrder[];
|
|
2783
|
+
PhoneNumberOrders?: PhoneNumberOrder[] | undefined;
|
|
2784
2784
|
/**
|
|
2785
2785
|
* <p>The token used to retrieve the next page of results.</p>
|
|
2786
2786
|
* @public
|
|
2787
2787
|
*/
|
|
2788
|
-
NextToken?: string;
|
|
2788
|
+
NextToken?: string | undefined;
|
|
2789
2789
|
}
|
|
2790
2790
|
/**
|
|
2791
2791
|
* @public
|
|
@@ -2795,32 +2795,32 @@ export interface ListPhoneNumbersRequest {
|
|
|
2795
2795
|
* <p>The status of your organization's phone numbers.</p>
|
|
2796
2796
|
* @public
|
|
2797
2797
|
*/
|
|
2798
|
-
Status?: string;
|
|
2798
|
+
Status?: string | undefined;
|
|
2799
2799
|
/**
|
|
2800
2800
|
* <p>The phone number product types.</p>
|
|
2801
2801
|
* @public
|
|
2802
2802
|
*/
|
|
2803
|
-
ProductType?: PhoneNumberProductType;
|
|
2803
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
2804
2804
|
/**
|
|
2805
2805
|
* <p>The filter to limit the number of results.</p>
|
|
2806
2806
|
* @public
|
|
2807
2807
|
*/
|
|
2808
|
-
FilterName?: PhoneNumberAssociationName;
|
|
2808
|
+
FilterName?: PhoneNumberAssociationName | undefined;
|
|
2809
2809
|
/**
|
|
2810
2810
|
* <p>The filter value.</p>
|
|
2811
2811
|
* @public
|
|
2812
2812
|
*/
|
|
2813
|
-
FilterValue?: string;
|
|
2813
|
+
FilterValue?: string | undefined;
|
|
2814
2814
|
/**
|
|
2815
2815
|
* <p>The maximum number of results to return in a single call.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
MaxResults?: number;
|
|
2818
|
+
MaxResults?: number | undefined;
|
|
2819
2819
|
/**
|
|
2820
2820
|
* <p>The token used to return the next page of results.</p>
|
|
2821
2821
|
* @public
|
|
2822
2822
|
*/
|
|
2823
|
-
NextToken?: string;
|
|
2823
|
+
NextToken?: string | undefined;
|
|
2824
2824
|
}
|
|
2825
2825
|
/**
|
|
2826
2826
|
* @public
|
|
@@ -2830,12 +2830,12 @@ export interface ListPhoneNumbersResponse {
|
|
|
2830
2830
|
* <p>The phone number details.</p>
|
|
2831
2831
|
* @public
|
|
2832
2832
|
*/
|
|
2833
|
-
PhoneNumbers?: PhoneNumber[];
|
|
2833
|
+
PhoneNumbers?: PhoneNumber[] | undefined;
|
|
2834
2834
|
/**
|
|
2835
2835
|
* <p>The token used to return the next page of results.</p>
|
|
2836
2836
|
* @public
|
|
2837
2837
|
*/
|
|
2838
|
-
NextToken?: string;
|
|
2838
|
+
NextToken?: string | undefined;
|
|
2839
2839
|
}
|
|
2840
2840
|
/**
|
|
2841
2841
|
* @public
|
|
@@ -2850,17 +2850,17 @@ export interface ListProxySessionsRequest {
|
|
|
2850
2850
|
* <p>The proxy session status.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
Status?: ProxySessionStatus;
|
|
2853
|
+
Status?: ProxySessionStatus | undefined;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* <p>The token used to retrieve the next page of results.</p>
|
|
2856
2856
|
* @public
|
|
2857
2857
|
*/
|
|
2858
|
-
NextToken?: string;
|
|
2858
|
+
NextToken?: string | undefined;
|
|
2859
2859
|
/**
|
|
2860
2860
|
* <p>The maximum number of results to return in a single call.</p>
|
|
2861
2861
|
* @public
|
|
2862
2862
|
*/
|
|
2863
|
-
MaxResults?: number;
|
|
2863
|
+
MaxResults?: number | undefined;
|
|
2864
2864
|
}
|
|
2865
2865
|
/**
|
|
2866
2866
|
* @public
|
|
@@ -2870,12 +2870,12 @@ export interface ListProxySessionsResponse {
|
|
|
2870
2870
|
* <p>The proxy sessions' details.</p>
|
|
2871
2871
|
* @public
|
|
2872
2872
|
*/
|
|
2873
|
-
ProxySessions?: ProxySession[];
|
|
2873
|
+
ProxySessions?: ProxySession[] | undefined;
|
|
2874
2874
|
/**
|
|
2875
2875
|
* <p>The token used to retrieve the next page of results.</p>
|
|
2876
2876
|
* @public
|
|
2877
2877
|
*/
|
|
2878
|
-
NextToken?: string;
|
|
2878
|
+
NextToken?: string | undefined;
|
|
2879
2879
|
}
|
|
2880
2880
|
/**
|
|
2881
2881
|
* @public
|
|
@@ -2885,12 +2885,12 @@ export interface ListSipMediaApplicationsRequest {
|
|
|
2885
2885
|
* <p>The maximum number of results to return in a single call. Defaults to 100.</p>
|
|
2886
2886
|
* @public
|
|
2887
2887
|
*/
|
|
2888
|
-
MaxResults?: number;
|
|
2888
|
+
MaxResults?: number | undefined;
|
|
2889
2889
|
/**
|
|
2890
2890
|
* <p>The token used to return the next page of results.</p>
|
|
2891
2891
|
* @public
|
|
2892
2892
|
*/
|
|
2893
|
-
NextToken?: string;
|
|
2893
|
+
NextToken?: string | undefined;
|
|
2894
2894
|
}
|
|
2895
2895
|
/**
|
|
2896
2896
|
* @public
|
|
@@ -2900,12 +2900,12 @@ export interface ListSipMediaApplicationsResponse {
|
|
|
2900
2900
|
* <p>The list of SIP media applications and application details.</p>
|
|
2901
2901
|
* @public
|
|
2902
2902
|
*/
|
|
2903
|
-
SipMediaApplications?: SipMediaApplication[];
|
|
2903
|
+
SipMediaApplications?: SipMediaApplication[] | undefined;
|
|
2904
2904
|
/**
|
|
2905
2905
|
* <p>The token used to return the next page of results.</p>
|
|
2906
2906
|
* @public
|
|
2907
2907
|
*/
|
|
2908
|
-
NextToken?: string;
|
|
2908
|
+
NextToken?: string | undefined;
|
|
2909
2909
|
}
|
|
2910
2910
|
/**
|
|
2911
2911
|
* @public
|
|
@@ -2915,17 +2915,17 @@ export interface ListSipRulesRequest {
|
|
|
2915
2915
|
* <p>The SIP media application ID.</p>
|
|
2916
2916
|
* @public
|
|
2917
2917
|
*/
|
|
2918
|
-
SipMediaApplicationId?: string;
|
|
2918
|
+
SipMediaApplicationId?: string | undefined;
|
|
2919
2919
|
/**
|
|
2920
2920
|
* <p>The maximum number of results to return in a single call. Defaults to 100.</p>
|
|
2921
2921
|
* @public
|
|
2922
2922
|
*/
|
|
2923
|
-
MaxResults?: number;
|
|
2923
|
+
MaxResults?: number | undefined;
|
|
2924
2924
|
/**
|
|
2925
2925
|
* <p>The token used to return the next page of results.</p>
|
|
2926
2926
|
* @public
|
|
2927
2927
|
*/
|
|
2928
|
-
NextToken?: string;
|
|
2928
|
+
NextToken?: string | undefined;
|
|
2929
2929
|
}
|
|
2930
2930
|
/**
|
|
2931
2931
|
* @public
|
|
@@ -2935,12 +2935,12 @@ export interface ListSipRulesResponse {
|
|
|
2935
2935
|
* <p>The list of SIP rules and details.</p>
|
|
2936
2936
|
* @public
|
|
2937
2937
|
*/
|
|
2938
|
-
SipRules?: SipRule[];
|
|
2938
|
+
SipRules?: SipRule[] | undefined;
|
|
2939
2939
|
/**
|
|
2940
2940
|
* <p>The token used to return the next page of results.</p>
|
|
2941
2941
|
* @public
|
|
2942
2942
|
*/
|
|
2943
|
-
NextToken?: string;
|
|
2943
|
+
NextToken?: string | undefined;
|
|
2944
2944
|
}
|
|
2945
2945
|
/**
|
|
2946
2946
|
* @public
|
|
@@ -2961,12 +2961,12 @@ export interface PhoneNumberCountry {
|
|
|
2961
2961
|
* <p>The phone number country code. Format: ISO 3166-1 alpha-2.</p>
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
CountryCode?: string;
|
|
2964
|
+
CountryCode?: string | undefined;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* <p>The supported phone number types.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
SupportedPhoneNumberTypes?: PhoneNumberType[];
|
|
2969
|
+
SupportedPhoneNumberTypes?: PhoneNumberType[] | undefined;
|
|
2970
2970
|
}
|
|
2971
2971
|
/**
|
|
2972
2972
|
* @public
|
|
@@ -2976,7 +2976,7 @@ export interface ListSupportedPhoneNumberCountriesResponse {
|
|
|
2976
2976
|
* <p>The supported phone number countries.</p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
PhoneNumberCountries?: PhoneNumberCountry[];
|
|
2979
|
+
PhoneNumberCountries?: PhoneNumberCountry[] | undefined;
|
|
2980
2980
|
}
|
|
2981
2981
|
/**
|
|
2982
2982
|
* @public
|
|
@@ -2996,7 +2996,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2996
2996
|
* <p>The tags in the list.</p>
|
|
2997
2997
|
* @public
|
|
2998
2998
|
*/
|
|
2999
|
-
Tags?: Tag[];
|
|
2999
|
+
Tags?: Tag[] | undefined;
|
|
3000
3000
|
}
|
|
3001
3001
|
/**
|
|
3002
3002
|
* @public
|
|
@@ -3006,12 +3006,12 @@ export interface ListVoiceConnectorGroupsRequest {
|
|
|
3006
3006
|
* <p>The token used to return the next page of results.</p>
|
|
3007
3007
|
* @public
|
|
3008
3008
|
*/
|
|
3009
|
-
NextToken?: string;
|
|
3009
|
+
NextToken?: string | undefined;
|
|
3010
3010
|
/**
|
|
3011
3011
|
* <p>The maximum number of results to return in a single call. </p>
|
|
3012
3012
|
* @public
|
|
3013
3013
|
*/
|
|
3014
|
-
MaxResults?: number;
|
|
3014
|
+
MaxResults?: number | undefined;
|
|
3015
3015
|
}
|
|
3016
3016
|
/**
|
|
3017
3017
|
* @public
|
|
@@ -3021,12 +3021,12 @@ export interface ListVoiceConnectorGroupsResponse {
|
|
|
3021
3021
|
* <p>The details of the Voice Connector groups.</p>
|
|
3022
3022
|
* @public
|
|
3023
3023
|
*/
|
|
3024
|
-
VoiceConnectorGroups?: VoiceConnectorGroup[];
|
|
3024
|
+
VoiceConnectorGroups?: VoiceConnectorGroup[] | undefined;
|
|
3025
3025
|
/**
|
|
3026
3026
|
* <p>The token used to return the next page of results.</p>
|
|
3027
3027
|
* @public
|
|
3028
3028
|
*/
|
|
3029
|
-
NextToken?: string;
|
|
3029
|
+
NextToken?: string | undefined;
|
|
3030
3030
|
}
|
|
3031
3031
|
/**
|
|
3032
3032
|
* @public
|
|
@@ -3036,12 +3036,12 @@ export interface ListVoiceConnectorsRequest {
|
|
|
3036
3036
|
* <p>The token used to return the next page of results.</p>
|
|
3037
3037
|
* @public
|
|
3038
3038
|
*/
|
|
3039
|
-
NextToken?: string;
|
|
3039
|
+
NextToken?: string | undefined;
|
|
3040
3040
|
/**
|
|
3041
3041
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3042
3042
|
* @public
|
|
3043
3043
|
*/
|
|
3044
|
-
MaxResults?: number;
|
|
3044
|
+
MaxResults?: number | undefined;
|
|
3045
3045
|
}
|
|
3046
3046
|
/**
|
|
3047
3047
|
* @public
|
|
@@ -3051,12 +3051,12 @@ export interface ListVoiceConnectorsResponse {
|
|
|
3051
3051
|
* <p>The details of the Voice Connectors.</p>
|
|
3052
3052
|
* @public
|
|
3053
3053
|
*/
|
|
3054
|
-
VoiceConnectors?: VoiceConnector[];
|
|
3054
|
+
VoiceConnectors?: VoiceConnector[] | undefined;
|
|
3055
3055
|
/**
|
|
3056
3056
|
* <p>The token used to return the next page of results.</p>
|
|
3057
3057
|
* @public
|
|
3058
3058
|
*/
|
|
3059
|
-
NextToken?: string;
|
|
3059
|
+
NextToken?: string | undefined;
|
|
3060
3060
|
}
|
|
3061
3061
|
/**
|
|
3062
3062
|
* @public
|
|
@@ -3076,7 +3076,7 @@ export interface ListVoiceConnectorTerminationCredentialsResponse {
|
|
|
3076
3076
|
* <p>A list of user names.</p>
|
|
3077
3077
|
* @public
|
|
3078
3078
|
*/
|
|
3079
|
-
Usernames?: string[];
|
|
3079
|
+
Usernames?: string[] | undefined;
|
|
3080
3080
|
}
|
|
3081
3081
|
/**
|
|
3082
3082
|
* @public
|
|
@@ -3086,12 +3086,12 @@ export interface ListVoiceProfileDomainsRequest {
|
|
|
3086
3086
|
* <p>The token used to return the next page of results.</p>
|
|
3087
3087
|
* @public
|
|
3088
3088
|
*/
|
|
3089
|
-
NextToken?: string;
|
|
3089
|
+
NextToken?: string | undefined;
|
|
3090
3090
|
/**
|
|
3091
3091
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3092
3092
|
* @public
|
|
3093
3093
|
*/
|
|
3094
|
-
MaxResults?: number;
|
|
3094
|
+
MaxResults?: number | undefined;
|
|
3095
3095
|
}
|
|
3096
3096
|
/**
|
|
3097
3097
|
* <p>A high-level overview of a voice profile domain.</p>
|
|
@@ -3102,32 +3102,32 @@ export interface VoiceProfileDomainSummary {
|
|
|
3102
3102
|
* <p>The ID of the voice profile domain summary.</p>
|
|
3103
3103
|
* @public
|
|
3104
3104
|
*/
|
|
3105
|
-
VoiceProfileDomainId?: string;
|
|
3105
|
+
VoiceProfileDomainId?: string | undefined;
|
|
3106
3106
|
/**
|
|
3107
3107
|
* <p>The ARN of a voice profile in a voice profile domain summary.</p>
|
|
3108
3108
|
* @public
|
|
3109
3109
|
*/
|
|
3110
|
-
VoiceProfileDomainArn?: string;
|
|
3110
|
+
VoiceProfileDomainArn?: string | undefined;
|
|
3111
3111
|
/**
|
|
3112
3112
|
* <p>The name of the voice profile domain summary.</p>
|
|
3113
3113
|
* @public
|
|
3114
3114
|
*/
|
|
3115
|
-
Name?: string;
|
|
3115
|
+
Name?: string | undefined;
|
|
3116
3116
|
/**
|
|
3117
3117
|
* <p>Describes the voice profile domain summary.</p>
|
|
3118
3118
|
* @public
|
|
3119
3119
|
*/
|
|
3120
|
-
Description?: string;
|
|
3120
|
+
Description?: string | undefined;
|
|
3121
3121
|
/**
|
|
3122
3122
|
* <p>The time at which the voice profile domain summary was created.</p>
|
|
3123
3123
|
* @public
|
|
3124
3124
|
*/
|
|
3125
|
-
CreatedTimestamp?: Date;
|
|
3125
|
+
CreatedTimestamp?: Date | undefined;
|
|
3126
3126
|
/**
|
|
3127
3127
|
* <p>The time at which the voice profile domain summary was last updated.</p>
|
|
3128
3128
|
* @public
|
|
3129
3129
|
*/
|
|
3130
|
-
UpdatedTimestamp?: Date;
|
|
3130
|
+
UpdatedTimestamp?: Date | undefined;
|
|
3131
3131
|
}
|
|
3132
3132
|
/**
|
|
3133
3133
|
* @public
|
|
@@ -3137,12 +3137,12 @@ export interface ListVoiceProfileDomainsResponse {
|
|
|
3137
3137
|
* <p>The list of voice profile domains.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
VoiceProfileDomains?: VoiceProfileDomainSummary[];
|
|
3140
|
+
VoiceProfileDomains?: VoiceProfileDomainSummary[] | undefined;
|
|
3141
3141
|
/**
|
|
3142
3142
|
* <p>The token used to return the next page of results.</p>
|
|
3143
3143
|
* @public
|
|
3144
3144
|
*/
|
|
3145
|
-
NextToken?: string;
|
|
3145
|
+
NextToken?: string | undefined;
|
|
3146
3146
|
}
|
|
3147
3147
|
/**
|
|
3148
3148
|
* @public
|
|
@@ -3157,12 +3157,12 @@ export interface ListVoiceProfilesRequest {
|
|
|
3157
3157
|
* <p>The token used to retrieve the next page of results.</p>
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
NextToken?: string;
|
|
3160
|
+
NextToken?: string | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* <p>The maximum number of results in the request.</p>
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
MaxResults?: number;
|
|
3165
|
+
MaxResults?: number | undefined;
|
|
3166
3166
|
}
|
|
3167
3167
|
/**
|
|
3168
3168
|
* <p>A high-level summary of a voice profile.</p>
|
|
@@ -3173,32 +3173,32 @@ export interface VoiceProfileSummary {
|
|
|
3173
3173
|
* <p>The ID of the voice profile in a voice profile summary.</p>
|
|
3174
3174
|
* @public
|
|
3175
3175
|
*/
|
|
3176
|
-
VoiceProfileId?: string;
|
|
3176
|
+
VoiceProfileId?: string | undefined;
|
|
3177
3177
|
/**
|
|
3178
3178
|
* <p>The ARN of the voice profile in a voice profile summary.</p>
|
|
3179
3179
|
* @public
|
|
3180
3180
|
*/
|
|
3181
|
-
VoiceProfileArn?: string;
|
|
3181
|
+
VoiceProfileArn?: string | undefined;
|
|
3182
3182
|
/**
|
|
3183
3183
|
* <p>The ID of the voice profile domain in a voice profile summary.</p>
|
|
3184
3184
|
* @public
|
|
3185
3185
|
*/
|
|
3186
|
-
VoiceProfileDomainId?: string;
|
|
3186
|
+
VoiceProfileDomainId?: string | undefined;
|
|
3187
3187
|
/**
|
|
3188
3188
|
* <p>The time at which a voice profile summary was created.</p>
|
|
3189
3189
|
* @public
|
|
3190
3190
|
*/
|
|
3191
|
-
CreatedTimestamp?: Date;
|
|
3191
|
+
CreatedTimestamp?: Date | undefined;
|
|
3192
3192
|
/**
|
|
3193
3193
|
* <p>The time at which a voice profile summary was last updated.</p>
|
|
3194
3194
|
* @public
|
|
3195
3195
|
*/
|
|
3196
|
-
UpdatedTimestamp?: Date;
|
|
3196
|
+
UpdatedTimestamp?: Date | undefined;
|
|
3197
3197
|
/**
|
|
3198
3198
|
* <p>Extends the life of the voice profile. You can use <code>UpdateVoiceProfile</code> to refresh an existing voice profile's voice print and extend the life of the summary.</p>
|
|
3199
3199
|
* @public
|
|
3200
3200
|
*/
|
|
3201
|
-
ExpirationTimestamp?: Date;
|
|
3201
|
+
ExpirationTimestamp?: Date | undefined;
|
|
3202
3202
|
}
|
|
3203
3203
|
/**
|
|
3204
3204
|
* @public
|
|
@@ -3208,12 +3208,12 @@ export interface ListVoiceProfilesResponse {
|
|
|
3208
3208
|
* <p>The list of voice profiles.</p>
|
|
3209
3209
|
* @public
|
|
3210
3210
|
*/
|
|
3211
|
-
VoiceProfiles?: VoiceProfileSummary[];
|
|
3211
|
+
VoiceProfiles?: VoiceProfileSummary[] | undefined;
|
|
3212
3212
|
/**
|
|
3213
3213
|
* <p>The token used to retrieve the next page of results.</p>
|
|
3214
3214
|
* @public
|
|
3215
3215
|
*/
|
|
3216
|
-
NextToken?: string;
|
|
3216
|
+
NextToken?: string | undefined;
|
|
3217
3217
|
}
|
|
3218
3218
|
/**
|
|
3219
3219
|
* @public
|
|
@@ -3228,7 +3228,7 @@ export interface PutSipMediaApplicationAlexaSkillConfigurationRequest {
|
|
|
3228
3228
|
* <p>The Alexa Skill configuration.</p>
|
|
3229
3229
|
* @public
|
|
3230
3230
|
*/
|
|
3231
|
-
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration;
|
|
3231
|
+
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration | undefined;
|
|
3232
3232
|
}
|
|
3233
3233
|
/**
|
|
3234
3234
|
* @public
|
|
@@ -3238,7 +3238,7 @@ export interface PutSipMediaApplicationAlexaSkillConfigurationResponse {
|
|
|
3238
3238
|
* <p>Returns the Alexa Skill configuration.</p>
|
|
3239
3239
|
* @public
|
|
3240
3240
|
*/
|
|
3241
|
-
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration;
|
|
3241
|
+
SipMediaApplicationAlexaSkillConfiguration?: SipMediaApplicationAlexaSkillConfiguration | undefined;
|
|
3242
3242
|
}
|
|
3243
3243
|
/**
|
|
3244
3244
|
* @public
|
|
@@ -3253,7 +3253,7 @@ export interface PutSipMediaApplicationLoggingConfigurationRequest {
|
|
|
3253
3253
|
* <p>The logging configuration for the specified SIP media application.</p>
|
|
3254
3254
|
* @public
|
|
3255
3255
|
*/
|
|
3256
|
-
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
|
3256
|
+
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration | undefined;
|
|
3257
3257
|
}
|
|
3258
3258
|
/**
|
|
3259
3259
|
* @public
|
|
@@ -3263,7 +3263,7 @@ export interface PutSipMediaApplicationLoggingConfigurationResponse {
|
|
|
3263
3263
|
* <p>The updated logging configuration for the specified SIP media application.</p>
|
|
3264
3264
|
* @public
|
|
3265
3265
|
*/
|
|
3266
|
-
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration;
|
|
3266
|
+
SipMediaApplicationLoggingConfiguration?: SipMediaApplicationLoggingConfiguration | undefined;
|
|
3267
3267
|
}
|
|
3268
3268
|
/**
|
|
3269
3269
|
* @public
|
|
@@ -3288,7 +3288,7 @@ export interface PutVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
|
3288
3288
|
* <p>The updated configuration.</p>
|
|
3289
3289
|
* @public
|
|
3290
3290
|
*/
|
|
3291
|
-
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
3291
|
+
EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
|
|
3292
3292
|
}
|
|
3293
3293
|
/**
|
|
3294
3294
|
* @public
|
|
@@ -3313,7 +3313,7 @@ export interface PutVoiceConnectorLoggingConfigurationResponse {
|
|
|
3313
3313
|
* <p>The updated logging configuration.</p>
|
|
3314
3314
|
* @public
|
|
3315
3315
|
*/
|
|
3316
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
3316
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
3317
3317
|
}
|
|
3318
3318
|
/**
|
|
3319
3319
|
* @public
|
|
@@ -3338,7 +3338,7 @@ export interface PutVoiceConnectorOriginationResponse {
|
|
|
3338
3338
|
* <p>The updated origination settings.</p>
|
|
3339
3339
|
* @public
|
|
3340
3340
|
*/
|
|
3341
|
-
Origination?: Origination;
|
|
3341
|
+
Origination?: Origination | undefined;
|
|
3342
3342
|
}
|
|
3343
3343
|
/**
|
|
3344
3344
|
* @public
|
|
@@ -3363,12 +3363,12 @@ export interface PutVoiceConnectorProxyRequest {
|
|
|
3363
3363
|
* <p>The phone number to route calls to after a proxy session expires.</p>
|
|
3364
3364
|
* @public
|
|
3365
3365
|
*/
|
|
3366
|
-
FallBackPhoneNumber?: string;
|
|
3366
|
+
FallBackPhoneNumber?: string | undefined;
|
|
3367
3367
|
/**
|
|
3368
3368
|
* <p>When true, stops proxy sessions from being created on the specified Amazon Chime SDK Voice Connector.</p>
|
|
3369
3369
|
* @public
|
|
3370
3370
|
*/
|
|
3371
|
-
Disabled?: boolean;
|
|
3371
|
+
Disabled?: boolean | undefined;
|
|
3372
3372
|
}
|
|
3373
3373
|
/**
|
|
3374
3374
|
* @public
|
|
@@ -3378,7 +3378,7 @@ export interface PutVoiceConnectorProxyResponse {
|
|
|
3378
3378
|
* <p>The proxy configuration details.</p>
|
|
3379
3379
|
* @public
|
|
3380
3380
|
*/
|
|
3381
|
-
Proxy?: Proxy;
|
|
3381
|
+
Proxy?: Proxy | undefined;
|
|
3382
3382
|
}
|
|
3383
3383
|
/**
|
|
3384
3384
|
* @public
|
|
@@ -3403,7 +3403,7 @@ export interface PutVoiceConnectorStreamingConfigurationResponse {
|
|
|
3403
3403
|
* <p>The updated streaming settings.</p>
|
|
3404
3404
|
* @public
|
|
3405
3405
|
*/
|
|
3406
|
-
StreamingConfiguration?: StreamingConfiguration;
|
|
3406
|
+
StreamingConfiguration?: StreamingConfiguration | undefined;
|
|
3407
3407
|
}
|
|
3408
3408
|
/**
|
|
3409
3409
|
* @public
|
|
@@ -3428,7 +3428,7 @@ export interface PutVoiceConnectorTerminationResponse {
|
|
|
3428
3428
|
* <p>The updated termination settings.</p>
|
|
3429
3429
|
* @public
|
|
3430
3430
|
*/
|
|
3431
|
-
Termination?: Termination;
|
|
3431
|
+
Termination?: Termination | undefined;
|
|
3432
3432
|
}
|
|
3433
3433
|
/**
|
|
3434
3434
|
* <p>The SIP credentials used to authenticate requests to an Amazon Chime SDK Voice Connector.</p>
|
|
@@ -3440,12 +3440,12 @@ export interface Credential {
|
|
|
3440
3440
|
* US-ASCII format.</p>
|
|
3441
3441
|
* @public
|
|
3442
3442
|
*/
|
|
3443
|
-
Username?: string;
|
|
3443
|
+
Username?: string | undefined;
|
|
3444
3444
|
/**
|
|
3445
3445
|
* <p>The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.</p>
|
|
3446
3446
|
* @public
|
|
3447
3447
|
*/
|
|
3448
|
-
Password?: string;
|
|
3448
|
+
Password?: string | undefined;
|
|
3449
3449
|
}
|
|
3450
3450
|
/**
|
|
3451
3451
|
* @public
|
|
@@ -3460,7 +3460,7 @@ export interface PutVoiceConnectorTerminationCredentialsRequest {
|
|
|
3460
3460
|
* <p>The termination credentials being updated.</p>
|
|
3461
3461
|
* @public
|
|
3462
3462
|
*/
|
|
3463
|
-
Credentials?: Credential[];
|
|
3463
|
+
Credentials?: Credential[] | undefined;
|
|
3464
3464
|
}
|
|
3465
3465
|
/**
|
|
3466
3466
|
* @public
|
|
@@ -3480,7 +3480,7 @@ export interface RestorePhoneNumberResponse {
|
|
|
3480
3480
|
* <p>The restored phone number.</p>
|
|
3481
3481
|
* @public
|
|
3482
3482
|
*/
|
|
3483
|
-
PhoneNumber?: PhoneNumber;
|
|
3483
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
3484
3484
|
}
|
|
3485
3485
|
/**
|
|
3486
3486
|
* @public
|
|
@@ -3490,42 +3490,42 @@ export interface SearchAvailablePhoneNumbersRequest {
|
|
|
3490
3490
|
* <p>Confines a search to just the phone numbers associated with the specified area code.</p>
|
|
3491
3491
|
* @public
|
|
3492
3492
|
*/
|
|
3493
|
-
AreaCode?: string;
|
|
3493
|
+
AreaCode?: string | undefined;
|
|
3494
3494
|
/**
|
|
3495
3495
|
* <p>Confines a search to just the phone numbers associated with the specified city.</p>
|
|
3496
3496
|
* @public
|
|
3497
3497
|
*/
|
|
3498
|
-
City?: string;
|
|
3498
|
+
City?: string | undefined;
|
|
3499
3499
|
/**
|
|
3500
3500
|
* <p>Confines a search to just the phone numbers associated with the specified country.</p>
|
|
3501
3501
|
* @public
|
|
3502
3502
|
*/
|
|
3503
|
-
Country?: string;
|
|
3503
|
+
Country?: string | undefined;
|
|
3504
3504
|
/**
|
|
3505
3505
|
* <p>Confines a search to just the phone numbers associated with the specified state.</p>
|
|
3506
3506
|
* @public
|
|
3507
3507
|
*/
|
|
3508
|
-
State?: string;
|
|
3508
|
+
State?: string | undefined;
|
|
3509
3509
|
/**
|
|
3510
3510
|
* <p>Confines a search to just the phone numbers associated with the specified toll-free prefix.</p>
|
|
3511
3511
|
* @public
|
|
3512
3512
|
*/
|
|
3513
|
-
TollFreePrefix?: string;
|
|
3513
|
+
TollFreePrefix?: string | undefined;
|
|
3514
3514
|
/**
|
|
3515
3515
|
* <p>Confines a search to just the phone numbers associated with the specified phone number type, either <b>local</b> or <b>toll-free</b>.</p>
|
|
3516
3516
|
* @public
|
|
3517
3517
|
*/
|
|
3518
|
-
PhoneNumberType?: PhoneNumberType;
|
|
3518
|
+
PhoneNumberType?: PhoneNumberType | undefined;
|
|
3519
3519
|
/**
|
|
3520
3520
|
* <p>The maximum number of results to return.</p>
|
|
3521
3521
|
* @public
|
|
3522
3522
|
*/
|
|
3523
|
-
MaxResults?: number;
|
|
3523
|
+
MaxResults?: number | undefined;
|
|
3524
3524
|
/**
|
|
3525
3525
|
* <p>The token used to return the next page of results.</p>
|
|
3526
3526
|
* @public
|
|
3527
3527
|
*/
|
|
3528
|
-
NextToken?: string;
|
|
3528
|
+
NextToken?: string | undefined;
|
|
3529
3529
|
}
|
|
3530
3530
|
/**
|
|
3531
3531
|
* @public
|
|
@@ -3535,12 +3535,12 @@ export interface SearchAvailablePhoneNumbersResponse {
|
|
|
3535
3535
|
* <p>Confines a search to just the phone numbers in the E.164 format.</p>
|
|
3536
3536
|
* @public
|
|
3537
3537
|
*/
|
|
3538
|
-
E164PhoneNumbers?: string[];
|
|
3538
|
+
E164PhoneNumbers?: string[] | undefined;
|
|
3539
3539
|
/**
|
|
3540
3540
|
* <p>The token used to return the next page of results.</p>
|
|
3541
3541
|
* @public
|
|
3542
3542
|
*/
|
|
3543
|
-
NextToken?: string;
|
|
3543
|
+
NextToken?: string | undefined;
|
|
3544
3544
|
}
|
|
3545
3545
|
/**
|
|
3546
3546
|
* @public
|
|
@@ -3565,12 +3565,12 @@ export interface StartSpeakerSearchTaskRequest {
|
|
|
3565
3565
|
* <p>The unique identifier for the client request. Use a different token for different speaker search tasks.</p>
|
|
3566
3566
|
* @public
|
|
3567
3567
|
*/
|
|
3568
|
-
ClientRequestToken?: string;
|
|
3568
|
+
ClientRequestToken?: string | undefined;
|
|
3569
3569
|
/**
|
|
3570
3570
|
* <p>Specifies which call leg to stream for speaker search.</p>
|
|
3571
3571
|
* @public
|
|
3572
3572
|
*/
|
|
3573
|
-
CallLeg?: CallLegType;
|
|
3573
|
+
CallLeg?: CallLegType | undefined;
|
|
3574
3574
|
}
|
|
3575
3575
|
/**
|
|
3576
3576
|
* @public
|
|
@@ -3580,7 +3580,7 @@ export interface StartSpeakerSearchTaskResponse {
|
|
|
3580
3580
|
* <p>The details of the speaker search task.</p>
|
|
3581
3581
|
* @public
|
|
3582
3582
|
*/
|
|
3583
|
-
SpeakerSearchTask?: SpeakerSearchTask;
|
|
3583
|
+
SpeakerSearchTask?: SpeakerSearchTask | undefined;
|
|
3584
3584
|
}
|
|
3585
3585
|
/**
|
|
3586
3586
|
* <p>A well-formed request couldn't be followed due to semantic errors.</p>
|
|
@@ -3589,8 +3589,8 @@ export interface StartSpeakerSearchTaskResponse {
|
|
|
3589
3589
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
3590
3590
|
readonly name: "UnprocessableEntityException";
|
|
3591
3591
|
readonly $fault: "client";
|
|
3592
|
-
Code?: ErrorCode;
|
|
3593
|
-
Message?: string;
|
|
3592
|
+
Code?: ErrorCode | undefined;
|
|
3593
|
+
Message?: string | undefined;
|
|
3594
3594
|
/**
|
|
3595
3595
|
* @internal
|
|
3596
3596
|
*/
|
|
@@ -3631,7 +3631,7 @@ export interface StartVoiceToneAnalysisTaskRequest {
|
|
|
3631
3631
|
* tasks.</p>
|
|
3632
3632
|
* @public
|
|
3633
3633
|
*/
|
|
3634
|
-
ClientRequestToken?: string;
|
|
3634
|
+
ClientRequestToken?: string | undefined;
|
|
3635
3635
|
}
|
|
3636
3636
|
/**
|
|
3637
3637
|
* @public
|
|
@@ -3641,7 +3641,7 @@ export interface StartVoiceToneAnalysisTaskResponse {
|
|
|
3641
3641
|
* <p>The details of the voice tone analysis task.</p>
|
|
3642
3642
|
* @public
|
|
3643
3643
|
*/
|
|
3644
|
-
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
3644
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask | undefined;
|
|
3645
3645
|
}
|
|
3646
3646
|
/**
|
|
3647
3647
|
* @public
|
|
@@ -3711,7 +3711,7 @@ export interface UpdateGlobalSettingsRequest {
|
|
|
3711
3711
|
* <p>The Voice Connector settings.</p>
|
|
3712
3712
|
* @public
|
|
3713
3713
|
*/
|
|
3714
|
-
VoiceConnector?: VoiceConnectorSettings;
|
|
3714
|
+
VoiceConnector?: VoiceConnectorSettings | undefined;
|
|
3715
3715
|
}
|
|
3716
3716
|
/**
|
|
3717
3717
|
* @public
|
|
@@ -3726,17 +3726,17 @@ export interface UpdatePhoneNumberRequest {
|
|
|
3726
3726
|
* <p>The product type.</p>
|
|
3727
3727
|
* @public
|
|
3728
3728
|
*/
|
|
3729
|
-
ProductType?: PhoneNumberProductType;
|
|
3729
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
3730
3730
|
/**
|
|
3731
3731
|
* <p>The outbound calling name associated with the phone number.</p>
|
|
3732
3732
|
* @public
|
|
3733
3733
|
*/
|
|
3734
|
-
CallingName?: string;
|
|
3734
|
+
CallingName?: string | undefined;
|
|
3735
3735
|
/**
|
|
3736
3736
|
* <p>Specifies the updated name assigned to one or more phone numbers.</p>
|
|
3737
3737
|
* @public
|
|
3738
3738
|
*/
|
|
3739
|
-
Name?: string;
|
|
3739
|
+
Name?: string | undefined;
|
|
3740
3740
|
}
|
|
3741
3741
|
/**
|
|
3742
3742
|
* @public
|
|
@@ -3746,7 +3746,7 @@ export interface UpdatePhoneNumberResponse {
|
|
|
3746
3746
|
* <p>The updated phone number details.</p>
|
|
3747
3747
|
* @public
|
|
3748
3748
|
*/
|
|
3749
|
-
PhoneNumber?: PhoneNumber;
|
|
3749
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
3750
3750
|
}
|
|
3751
3751
|
/**
|
|
3752
3752
|
* @public
|
|
@@ -3781,7 +3781,7 @@ export interface UpdateProxySessionRequest {
|
|
|
3781
3781
|
* <p>The number of minutes allowed for the proxy session.</p>
|
|
3782
3782
|
* @public
|
|
3783
3783
|
*/
|
|
3784
|
-
ExpiryMinutes?: number;
|
|
3784
|
+
ExpiryMinutes?: number | undefined;
|
|
3785
3785
|
}
|
|
3786
3786
|
/**
|
|
3787
3787
|
* @public
|
|
@@ -3791,7 +3791,7 @@ export interface UpdateProxySessionResponse {
|
|
|
3791
3791
|
* <p>The updated proxy session details.</p>
|
|
3792
3792
|
* @public
|
|
3793
3793
|
*/
|
|
3794
|
-
ProxySession?: ProxySession;
|
|
3794
|
+
ProxySession?: ProxySession | undefined;
|
|
3795
3795
|
}
|
|
3796
3796
|
/**
|
|
3797
3797
|
* @public
|
|
@@ -3806,12 +3806,12 @@ export interface UpdateSipMediaApplicationRequest {
|
|
|
3806
3806
|
* <p>The new name for the specified SIP media application.</p>
|
|
3807
3807
|
* @public
|
|
3808
3808
|
*/
|
|
3809
|
-
Name?: string;
|
|
3809
|
+
Name?: string | undefined;
|
|
3810
3810
|
/**
|
|
3811
3811
|
* <p>The new set of endpoints for the specified SIP media application.</p>
|
|
3812
3812
|
* @public
|
|
3813
3813
|
*/
|
|
3814
|
-
Endpoints?: SipMediaApplicationEndpoint[];
|
|
3814
|
+
Endpoints?: SipMediaApplicationEndpoint[] | undefined;
|
|
3815
3815
|
}
|
|
3816
3816
|
/**
|
|
3817
3817
|
* @public
|
|
@@ -3821,7 +3821,7 @@ export interface UpdateSipMediaApplicationResponse {
|
|
|
3821
3821
|
* <p>The updated SIP media application’s details.</p>
|
|
3822
3822
|
* @public
|
|
3823
3823
|
*/
|
|
3824
|
-
SipMediaApplication?: SipMediaApplication;
|
|
3824
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
3825
3825
|
}
|
|
3826
3826
|
/**
|
|
3827
3827
|
* @public
|
|
@@ -3852,7 +3852,7 @@ export interface UpdateSipMediaApplicationCallResponse {
|
|
|
3852
3852
|
* <p>A <code>Call</code> instance for a SIP media application.</p>
|
|
3853
3853
|
* @public
|
|
3854
3854
|
*/
|
|
3855
|
-
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
3855
|
+
SipMediaApplicationCall?: SipMediaApplicationCall | undefined;
|
|
3856
3856
|
}
|
|
3857
3857
|
/**
|
|
3858
3858
|
* @public
|
|
@@ -3872,12 +3872,12 @@ export interface UpdateSipRuleRequest {
|
|
|
3872
3872
|
* <p>The new value that indicates whether the rule is disabled.</p>
|
|
3873
3873
|
* @public
|
|
3874
3874
|
*/
|
|
3875
|
-
Disabled?: boolean;
|
|
3875
|
+
Disabled?: boolean | undefined;
|
|
3876
3876
|
/**
|
|
3877
3877
|
* <p>The new list of target applications.</p>
|
|
3878
3878
|
* @public
|
|
3879
3879
|
*/
|
|
3880
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
3880
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
3881
3881
|
}
|
|
3882
3882
|
/**
|
|
3883
3883
|
* @public
|
|
@@ -3887,7 +3887,7 @@ export interface UpdateSipRuleResponse {
|
|
|
3887
3887
|
* <p>The updated SIP rule details.</p>
|
|
3888
3888
|
* @public
|
|
3889
3889
|
*/
|
|
3890
|
-
SipRule?: SipRule;
|
|
3890
|
+
SipRule?: SipRule | undefined;
|
|
3891
3891
|
}
|
|
3892
3892
|
/**
|
|
3893
3893
|
* @public
|
|
@@ -3917,7 +3917,7 @@ export interface UpdateVoiceConnectorResponse {
|
|
|
3917
3917
|
* <p>The updated Voice Connector details.</p>
|
|
3918
3918
|
* @public
|
|
3919
3919
|
*/
|
|
3920
|
-
VoiceConnector?: VoiceConnector;
|
|
3920
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
3921
3921
|
}
|
|
3922
3922
|
/**
|
|
3923
3923
|
* @public
|
|
@@ -3948,7 +3948,7 @@ export interface UpdateVoiceConnectorGroupResponse {
|
|
|
3948
3948
|
* <p>The updated Voice Connector group.</p>
|
|
3949
3949
|
* @public
|
|
3950
3950
|
*/
|
|
3951
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
3951
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
3952
3952
|
}
|
|
3953
3953
|
/**
|
|
3954
3954
|
* @public
|
|
@@ -3973,7 +3973,7 @@ export interface UpdateVoiceProfileResponse {
|
|
|
3973
3973
|
* <p>The updated voice profile settings.</p>
|
|
3974
3974
|
* @public
|
|
3975
3975
|
*/
|
|
3976
|
-
VoiceProfile?: VoiceProfile;
|
|
3976
|
+
VoiceProfile?: VoiceProfile | undefined;
|
|
3977
3977
|
}
|
|
3978
3978
|
/**
|
|
3979
3979
|
* @public
|
|
@@ -3988,12 +3988,12 @@ export interface UpdateVoiceProfileDomainRequest {
|
|
|
3988
3988
|
* <p>The name of the voice profile domain.</p>
|
|
3989
3989
|
* @public
|
|
3990
3990
|
*/
|
|
3991
|
-
Name?: string;
|
|
3991
|
+
Name?: string | undefined;
|
|
3992
3992
|
/**
|
|
3993
3993
|
* <p>The description of the voice profile domain.</p>
|
|
3994
3994
|
* @public
|
|
3995
3995
|
*/
|
|
3996
|
-
Description?: string;
|
|
3996
|
+
Description?: string | undefined;
|
|
3997
3997
|
}
|
|
3998
3998
|
/**
|
|
3999
3999
|
* @public
|
|
@@ -4003,7 +4003,7 @@ export interface UpdateVoiceProfileDomainResponse {
|
|
|
4003
4003
|
* <p>The updated details of the voice profile domain.</p>
|
|
4004
4004
|
* @public
|
|
4005
4005
|
*/
|
|
4006
|
-
VoiceProfileDomain?: VoiceProfileDomain;
|
|
4006
|
+
VoiceProfileDomain?: VoiceProfileDomain | undefined;
|
|
4007
4007
|
}
|
|
4008
4008
|
/**
|
|
4009
4009
|
* @public
|
|
@@ -4073,22 +4073,22 @@ export interface ValidateE911AddressResponse {
|
|
|
4073
4073
|
* </ul>
|
|
4074
4074
|
* @public
|
|
4075
4075
|
*/
|
|
4076
|
-
ValidationResult?: number;
|
|
4076
|
+
ValidationResult?: number | undefined;
|
|
4077
4077
|
/**
|
|
4078
4078
|
* <p>The ID that represents the address.</p>
|
|
4079
4079
|
* @public
|
|
4080
4080
|
*/
|
|
4081
|
-
AddressExternalId?: string;
|
|
4081
|
+
AddressExternalId?: string | undefined;
|
|
4082
4082
|
/**
|
|
4083
4083
|
* <p>The validated address.</p>
|
|
4084
4084
|
* @public
|
|
4085
4085
|
*/
|
|
4086
|
-
Address?: Address;
|
|
4086
|
+
Address?: Address | undefined;
|
|
4087
4087
|
/**
|
|
4088
4088
|
* <p>The list of address suggestions..</p>
|
|
4089
4089
|
* @public
|
|
4090
4090
|
*/
|
|
4091
|
-
CandidateAddressList?: CandidateAddress[];
|
|
4091
|
+
CandidateAddressList?: CandidateAddress[] | undefined;
|
|
4092
4092
|
}
|
|
4093
4093
|
/**
|
|
4094
4094
|
* @internal
|