@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
|
@@ -22,23 +22,23 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
22
22
|
export declare class AccessDeniedException extends __BaseException {
|
|
23
23
|
readonly name: "AccessDeniedException";
|
|
24
24
|
readonly $fault: "client";
|
|
25
|
-
Code?: ErrorCode;
|
|
26
|
-
Message?: string;
|
|
25
|
+
Code?: ErrorCode | undefined;
|
|
26
|
+
Message?: string | undefined;
|
|
27
27
|
constructor(
|
|
28
28
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
29
29
|
);
|
|
30
30
|
}
|
|
31
31
|
export interface Address {
|
|
32
|
-
streetName?: string;
|
|
33
|
-
streetSuffix?: string;
|
|
34
|
-
postDirectional?: string;
|
|
35
|
-
preDirectional?: string;
|
|
36
|
-
streetNumber?: string;
|
|
37
|
-
city?: string;
|
|
38
|
-
state?: string;
|
|
39
|
-
postalCode?: string;
|
|
40
|
-
postalCodePlus4?: string;
|
|
41
|
-
country?: string;
|
|
32
|
+
streetName?: string | undefined;
|
|
33
|
+
streetSuffix?: string | undefined;
|
|
34
|
+
postDirectional?: string | undefined;
|
|
35
|
+
preDirectional?: string | undefined;
|
|
36
|
+
streetNumber?: string | undefined;
|
|
37
|
+
city?: string | undefined;
|
|
38
|
+
state?: string | undefined;
|
|
39
|
+
postalCode?: string | undefined;
|
|
40
|
+
postalCodePlus4?: string | undefined;
|
|
41
|
+
country?: string | undefined;
|
|
42
42
|
}
|
|
43
43
|
export declare const AlexaSkillStatus: {
|
|
44
44
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -49,21 +49,21 @@ export type AlexaSkillStatus =
|
|
|
49
49
|
export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
|
|
50
50
|
VoiceConnectorId: string | undefined;
|
|
51
51
|
E164PhoneNumbers: string[] | undefined;
|
|
52
|
-
ForceAssociate?: boolean;
|
|
52
|
+
ForceAssociate?: boolean | undefined;
|
|
53
53
|
}
|
|
54
54
|
export interface PhoneNumberError {
|
|
55
|
-
PhoneNumberId?: string;
|
|
56
|
-
ErrorCode?: ErrorCode;
|
|
57
|
-
ErrorMessage?: string;
|
|
55
|
+
PhoneNumberId?: string | undefined;
|
|
56
|
+
ErrorCode?: ErrorCode | undefined;
|
|
57
|
+
ErrorMessage?: string | undefined;
|
|
58
58
|
}
|
|
59
59
|
export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
60
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
60
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
61
61
|
}
|
|
62
62
|
export declare class BadRequestException extends __BaseException {
|
|
63
63
|
readonly name: "BadRequestException";
|
|
64
64
|
readonly $fault: "client";
|
|
65
|
-
Code?: ErrorCode;
|
|
66
|
-
Message?: string;
|
|
65
|
+
Code?: ErrorCode | undefined;
|
|
66
|
+
Message?: string | undefined;
|
|
67
67
|
constructor(
|
|
68
68
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
69
69
|
);
|
|
@@ -71,22 +71,22 @@ export declare class BadRequestException extends __BaseException {
|
|
|
71
71
|
export declare class ForbiddenException extends __BaseException {
|
|
72
72
|
readonly name: "ForbiddenException";
|
|
73
73
|
readonly $fault: "client";
|
|
74
|
-
Code?: ErrorCode;
|
|
75
|
-
Message?: string;
|
|
74
|
+
Code?: ErrorCode | undefined;
|
|
75
|
+
Message?: string | undefined;
|
|
76
76
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
77
77
|
}
|
|
78
78
|
export declare class NotFoundException extends __BaseException {
|
|
79
79
|
readonly name: "NotFoundException";
|
|
80
80
|
readonly $fault: "client";
|
|
81
|
-
Code?: ErrorCode;
|
|
82
|
-
Message?: string;
|
|
81
|
+
Code?: ErrorCode | undefined;
|
|
82
|
+
Message?: string | undefined;
|
|
83
83
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
84
84
|
}
|
|
85
85
|
export declare class ServiceFailureException extends __BaseException {
|
|
86
86
|
readonly name: "ServiceFailureException";
|
|
87
87
|
readonly $fault: "server";
|
|
88
|
-
Code?: ErrorCode;
|
|
89
|
-
Message?: string;
|
|
88
|
+
Code?: ErrorCode | undefined;
|
|
89
|
+
Message?: string | undefined;
|
|
90
90
|
constructor(
|
|
91
91
|
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
92
92
|
);
|
|
@@ -94,8 +94,8 @@ export declare class ServiceFailureException extends __BaseException {
|
|
|
94
94
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
95
95
|
readonly name: "ServiceUnavailableException";
|
|
96
96
|
readonly $fault: "server";
|
|
97
|
-
Code?: ErrorCode;
|
|
98
|
-
Message?: string;
|
|
97
|
+
Code?: ErrorCode | undefined;
|
|
98
|
+
Message?: string | undefined;
|
|
99
99
|
constructor(
|
|
100
100
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
101
101
|
);
|
|
@@ -103,8 +103,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
103
103
|
export declare class ThrottledClientException extends __BaseException {
|
|
104
104
|
readonly name: "ThrottledClientException";
|
|
105
105
|
readonly $fault: "client";
|
|
106
|
-
Code?: ErrorCode;
|
|
107
|
-
Message?: string;
|
|
106
|
+
Code?: ErrorCode | undefined;
|
|
107
|
+
Message?: string | undefined;
|
|
108
108
|
constructor(
|
|
109
109
|
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
110
110
|
);
|
|
@@ -112,8 +112,8 @@ export declare class ThrottledClientException extends __BaseException {
|
|
|
112
112
|
export declare class UnauthorizedClientException extends __BaseException {
|
|
113
113
|
readonly name: "UnauthorizedClientException";
|
|
114
114
|
readonly $fault: "client";
|
|
115
|
-
Code?: ErrorCode;
|
|
116
|
-
Message?: string;
|
|
115
|
+
Code?: ErrorCode | undefined;
|
|
116
|
+
Message?: string | undefined;
|
|
117
117
|
constructor(
|
|
118
118
|
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
119
119
|
);
|
|
@@ -121,16 +121,16 @@ export declare class UnauthorizedClientException extends __BaseException {
|
|
|
121
121
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
|
|
122
122
|
VoiceConnectorGroupId: string | undefined;
|
|
123
123
|
E164PhoneNumbers: string[] | undefined;
|
|
124
|
-
ForceAssociate?: boolean;
|
|
124
|
+
ForceAssociate?: boolean | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupResponse {
|
|
127
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
127
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
128
128
|
}
|
|
129
129
|
export interface BatchDeletePhoneNumberRequest {
|
|
130
130
|
PhoneNumberIds: string[] | undefined;
|
|
131
131
|
}
|
|
132
132
|
export interface BatchDeletePhoneNumberResponse {
|
|
133
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
133
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
134
134
|
}
|
|
135
135
|
export declare const PhoneNumberProductType: {
|
|
136
136
|
readonly SipMediaApplicationDialIn: "SipMediaApplicationDialIn";
|
|
@@ -140,20 +140,20 @@ export type PhoneNumberProductType =
|
|
|
140
140
|
(typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
|
|
141
141
|
export interface UpdatePhoneNumberRequestItem {
|
|
142
142
|
PhoneNumberId: string | undefined;
|
|
143
|
-
ProductType?: PhoneNumberProductType;
|
|
144
|
-
CallingName?: string;
|
|
145
|
-
Name?: string;
|
|
143
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
144
|
+
CallingName?: string | undefined;
|
|
145
|
+
Name?: string | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface BatchUpdatePhoneNumberRequest {
|
|
148
148
|
UpdatePhoneNumberRequestItems: UpdatePhoneNumberRequestItem[] | undefined;
|
|
149
149
|
}
|
|
150
150
|
export interface BatchUpdatePhoneNumberResponse {
|
|
151
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
151
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
152
152
|
}
|
|
153
153
|
export interface CallDetails {
|
|
154
|
-
VoiceConnectorId?: string;
|
|
155
|
-
TransactionId?: string;
|
|
156
|
-
IsCaller?: boolean;
|
|
154
|
+
VoiceConnectorId?: string | undefined;
|
|
155
|
+
TransactionId?: string | undefined;
|
|
156
|
+
IsCaller?: boolean | undefined;
|
|
157
157
|
}
|
|
158
158
|
export declare const CallingNameStatus: {
|
|
159
159
|
readonly Unassigned: "Unassigned";
|
|
@@ -169,13 +169,13 @@ export declare const CallLegType: {
|
|
|
169
169
|
};
|
|
170
170
|
export type CallLegType = (typeof CallLegType)[keyof typeof CallLegType];
|
|
171
171
|
export interface CandidateAddress {
|
|
172
|
-
streetInfo?: string;
|
|
173
|
-
streetNumber?: string;
|
|
174
|
-
city?: string;
|
|
175
|
-
state?: string;
|
|
176
|
-
postalCode?: string;
|
|
177
|
-
postalCodePlus4?: string;
|
|
178
|
-
country?: string;
|
|
172
|
+
streetInfo?: string | undefined;
|
|
173
|
+
streetNumber?: string | undefined;
|
|
174
|
+
city?: string | undefined;
|
|
175
|
+
state?: string | undefined;
|
|
176
|
+
postalCode?: string | undefined;
|
|
177
|
+
postalCodePlus4?: string | undefined;
|
|
178
|
+
country?: string | undefined;
|
|
179
179
|
}
|
|
180
180
|
export declare const Capability: {
|
|
181
181
|
readonly SMS: "SMS";
|
|
@@ -185,7 +185,7 @@ export type Capability = (typeof Capability)[keyof typeof Capability];
|
|
|
185
185
|
export interface CreatePhoneNumberOrderRequest {
|
|
186
186
|
ProductType: PhoneNumberProductType | undefined;
|
|
187
187
|
E164PhoneNumbers: string[] | undefined;
|
|
188
|
-
Name?: string;
|
|
188
|
+
Name?: string | undefined;
|
|
189
189
|
}
|
|
190
190
|
export declare const OrderedPhoneNumberStatus: {
|
|
191
191
|
readonly Acquired: "Acquired";
|
|
@@ -195,8 +195,8 @@ export declare const OrderedPhoneNumberStatus: {
|
|
|
195
195
|
export type OrderedPhoneNumberStatus =
|
|
196
196
|
(typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
|
|
197
197
|
export interface OrderedPhoneNumber {
|
|
198
|
-
E164PhoneNumber?: string;
|
|
199
|
-
Status?: OrderedPhoneNumberStatus;
|
|
198
|
+
E164PhoneNumber?: string | undefined;
|
|
199
|
+
Status?: OrderedPhoneNumberStatus | undefined;
|
|
200
200
|
}
|
|
201
201
|
export declare const PhoneNumberOrderType: {
|
|
202
202
|
readonly New: "New";
|
|
@@ -220,22 +220,22 @@ export declare const PhoneNumberOrderStatus: {
|
|
|
220
220
|
export type PhoneNumberOrderStatus =
|
|
221
221
|
(typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
|
|
222
222
|
export interface PhoneNumberOrder {
|
|
223
|
-
PhoneNumberOrderId?: string;
|
|
224
|
-
ProductType?: PhoneNumberProductType;
|
|
225
|
-
Status?: PhoneNumberOrderStatus;
|
|
226
|
-
OrderType?: PhoneNumberOrderType;
|
|
227
|
-
OrderedPhoneNumbers?: OrderedPhoneNumber[];
|
|
228
|
-
CreatedTimestamp?: Date;
|
|
229
|
-
UpdatedTimestamp?: Date;
|
|
223
|
+
PhoneNumberOrderId?: string | undefined;
|
|
224
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
225
|
+
Status?: PhoneNumberOrderStatus | undefined;
|
|
226
|
+
OrderType?: PhoneNumberOrderType | undefined;
|
|
227
|
+
OrderedPhoneNumbers?: OrderedPhoneNumber[] | undefined;
|
|
228
|
+
CreatedTimestamp?: Date | undefined;
|
|
229
|
+
UpdatedTimestamp?: Date | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface CreatePhoneNumberOrderResponse {
|
|
232
|
-
PhoneNumberOrder?: PhoneNumberOrder;
|
|
232
|
+
PhoneNumberOrder?: PhoneNumberOrder | undefined;
|
|
233
233
|
}
|
|
234
234
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
235
235
|
readonly name: "ResourceLimitExceededException";
|
|
236
236
|
readonly $fault: "client";
|
|
237
|
-
Code?: ErrorCode;
|
|
238
|
-
Message?: string;
|
|
237
|
+
Code?: ErrorCode | undefined;
|
|
238
|
+
Message?: string | undefined;
|
|
239
239
|
constructor(
|
|
240
240
|
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
241
241
|
);
|
|
@@ -258,16 +258,16 @@ export type NumberSelectionBehavior =
|
|
|
258
258
|
export interface CreateProxySessionRequest {
|
|
259
259
|
VoiceConnectorId: string | undefined;
|
|
260
260
|
ParticipantPhoneNumbers: string[] | undefined;
|
|
261
|
-
Name?: string;
|
|
262
|
-
ExpiryMinutes?: number;
|
|
261
|
+
Name?: string | undefined;
|
|
262
|
+
ExpiryMinutes?: number | undefined;
|
|
263
263
|
Capabilities: Capability[] | undefined;
|
|
264
|
-
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
265
|
-
GeoMatchLevel?: GeoMatchLevel;
|
|
266
|
-
GeoMatchParams?: GeoMatchParams;
|
|
264
|
+
NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
|
|
265
|
+
GeoMatchLevel?: GeoMatchLevel | undefined;
|
|
266
|
+
GeoMatchParams?: GeoMatchParams | undefined;
|
|
267
267
|
}
|
|
268
268
|
export interface Participant {
|
|
269
|
-
PhoneNumber?: string;
|
|
270
|
-
ProxyPhoneNumber?: string;
|
|
269
|
+
PhoneNumber?: string | undefined;
|
|
270
|
+
ProxyPhoneNumber?: string | undefined;
|
|
271
271
|
}
|
|
272
272
|
export declare const ProxySessionStatus: {
|
|
273
273
|
readonly Closed: "Closed";
|
|
@@ -277,32 +277,32 @@ export declare const ProxySessionStatus: {
|
|
|
277
277
|
export type ProxySessionStatus =
|
|
278
278
|
(typeof ProxySessionStatus)[keyof typeof ProxySessionStatus];
|
|
279
279
|
export interface ProxySession {
|
|
280
|
-
VoiceConnectorId?: string;
|
|
281
|
-
ProxySessionId?: string;
|
|
282
|
-
Name?: string;
|
|
283
|
-
Status?: ProxySessionStatus;
|
|
284
|
-
ExpiryMinutes?: number;
|
|
285
|
-
Capabilities?: Capability[];
|
|
286
|
-
CreatedTimestamp?: Date;
|
|
287
|
-
UpdatedTimestamp?: Date;
|
|
288
|
-
EndedTimestamp?: Date;
|
|
289
|
-
Participants?: Participant[];
|
|
290
|
-
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
291
|
-
GeoMatchLevel?: GeoMatchLevel;
|
|
292
|
-
GeoMatchParams?: GeoMatchParams;
|
|
280
|
+
VoiceConnectorId?: string | undefined;
|
|
281
|
+
ProxySessionId?: string | undefined;
|
|
282
|
+
Name?: string | undefined;
|
|
283
|
+
Status?: ProxySessionStatus | undefined;
|
|
284
|
+
ExpiryMinutes?: number | undefined;
|
|
285
|
+
Capabilities?: Capability[] | undefined;
|
|
286
|
+
CreatedTimestamp?: Date | undefined;
|
|
287
|
+
UpdatedTimestamp?: Date | undefined;
|
|
288
|
+
EndedTimestamp?: Date | undefined;
|
|
289
|
+
Participants?: Participant[] | undefined;
|
|
290
|
+
NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
|
|
291
|
+
GeoMatchLevel?: GeoMatchLevel | undefined;
|
|
292
|
+
GeoMatchParams?: GeoMatchParams | undefined;
|
|
293
293
|
}
|
|
294
294
|
export interface CreateProxySessionResponse {
|
|
295
|
-
ProxySession?: ProxySession;
|
|
295
|
+
ProxySession?: ProxySession | undefined;
|
|
296
296
|
}
|
|
297
297
|
export declare class ConflictException extends __BaseException {
|
|
298
298
|
readonly name: "ConflictException";
|
|
299
299
|
readonly $fault: "client";
|
|
300
|
-
Code?: ErrorCode;
|
|
301
|
-
Message?: string;
|
|
300
|
+
Code?: ErrorCode | undefined;
|
|
301
|
+
Message?: string | undefined;
|
|
302
302
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
303
303
|
}
|
|
304
304
|
export interface SipMediaApplicationEndpoint {
|
|
305
|
-
LambdaArn?: string;
|
|
305
|
+
LambdaArn?: string | undefined;
|
|
306
306
|
}
|
|
307
307
|
export interface Tag {
|
|
308
308
|
Key: string | undefined;
|
|
@@ -312,37 +312,37 @@ export interface CreateSipMediaApplicationRequest {
|
|
|
312
312
|
AwsRegion: string | undefined;
|
|
313
313
|
Name: string | undefined;
|
|
314
314
|
Endpoints: SipMediaApplicationEndpoint[] | undefined;
|
|
315
|
-
Tags?: Tag[];
|
|
315
|
+
Tags?: Tag[] | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface SipMediaApplication {
|
|
318
|
-
SipMediaApplicationId?: string;
|
|
319
|
-
AwsRegion?: string;
|
|
320
|
-
Name?: string;
|
|
321
|
-
Endpoints?: SipMediaApplicationEndpoint[];
|
|
322
|
-
CreatedTimestamp?: Date;
|
|
323
|
-
UpdatedTimestamp?: Date;
|
|
324
|
-
SipMediaApplicationArn?: string;
|
|
318
|
+
SipMediaApplicationId?: string | undefined;
|
|
319
|
+
AwsRegion?: string | undefined;
|
|
320
|
+
Name?: string | undefined;
|
|
321
|
+
Endpoints?: SipMediaApplicationEndpoint[] | undefined;
|
|
322
|
+
CreatedTimestamp?: Date | undefined;
|
|
323
|
+
UpdatedTimestamp?: Date | undefined;
|
|
324
|
+
SipMediaApplicationArn?: string | undefined;
|
|
325
325
|
}
|
|
326
326
|
export interface CreateSipMediaApplicationResponse {
|
|
327
|
-
SipMediaApplication?: SipMediaApplication;
|
|
327
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
328
328
|
}
|
|
329
329
|
export interface CreateSipMediaApplicationCallRequest {
|
|
330
330
|
FromPhoneNumber: string | undefined;
|
|
331
331
|
ToPhoneNumber: string | undefined;
|
|
332
332
|
SipMediaApplicationId: string | undefined;
|
|
333
|
-
SipHeaders?: Record<string, string
|
|
334
|
-
ArgumentsMap?: Record<string, string
|
|
333
|
+
SipHeaders?: Record<string, string> | undefined;
|
|
334
|
+
ArgumentsMap?: Record<string, string> | undefined;
|
|
335
335
|
}
|
|
336
336
|
export interface SipMediaApplicationCall {
|
|
337
|
-
TransactionId?: string;
|
|
337
|
+
TransactionId?: string | undefined;
|
|
338
338
|
}
|
|
339
339
|
export interface CreateSipMediaApplicationCallResponse {
|
|
340
|
-
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
340
|
+
SipMediaApplicationCall?: SipMediaApplicationCall | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface SipRuleTargetApplication {
|
|
343
|
-
SipMediaApplicationId?: string;
|
|
344
|
-
Priority?: number;
|
|
345
|
-
AwsRegion?: string;
|
|
343
|
+
SipMediaApplicationId?: string | undefined;
|
|
344
|
+
Priority?: number | undefined;
|
|
345
|
+
AwsRegion?: string | undefined;
|
|
346
346
|
}
|
|
347
347
|
export declare const SipRuleTriggerType: {
|
|
348
348
|
readonly RequestUriHostname: "RequestUriHostname";
|
|
@@ -354,21 +354,21 @@ export interface CreateSipRuleRequest {
|
|
|
354
354
|
Name: string | undefined;
|
|
355
355
|
TriggerType: SipRuleTriggerType | undefined;
|
|
356
356
|
TriggerValue: string | undefined;
|
|
357
|
-
Disabled?: boolean;
|
|
358
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
357
|
+
Disabled?: boolean | undefined;
|
|
358
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
359
359
|
}
|
|
360
360
|
export interface SipRule {
|
|
361
|
-
SipRuleId?: string;
|
|
362
|
-
Name?: string;
|
|
363
|
-
Disabled?: boolean;
|
|
364
|
-
TriggerType?: SipRuleTriggerType;
|
|
365
|
-
TriggerValue?: string;
|
|
366
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
367
|
-
CreatedTimestamp?: Date;
|
|
368
|
-
UpdatedTimestamp?: Date;
|
|
361
|
+
SipRuleId?: string | undefined;
|
|
362
|
+
Name?: string | undefined;
|
|
363
|
+
Disabled?: boolean | undefined;
|
|
364
|
+
TriggerType?: SipRuleTriggerType | undefined;
|
|
365
|
+
TriggerValue?: string | undefined;
|
|
366
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
367
|
+
CreatedTimestamp?: Date | undefined;
|
|
368
|
+
UpdatedTimestamp?: Date | undefined;
|
|
369
369
|
}
|
|
370
370
|
export interface CreateSipRuleResponse {
|
|
371
|
-
SipRule?: SipRule;
|
|
371
|
+
SipRule?: SipRule | undefined;
|
|
372
372
|
}
|
|
373
373
|
export declare const VoiceConnectorAwsRegion: {
|
|
374
374
|
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
@@ -386,22 +386,22 @@ export type VoiceConnectorAwsRegion =
|
|
|
386
386
|
(typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
|
|
387
387
|
export interface CreateVoiceConnectorRequest {
|
|
388
388
|
Name: string | undefined;
|
|
389
|
-
AwsRegion?: VoiceConnectorAwsRegion;
|
|
389
|
+
AwsRegion?: VoiceConnectorAwsRegion | undefined;
|
|
390
390
|
RequireEncryption: boolean | undefined;
|
|
391
|
-
Tags?: Tag[];
|
|
391
|
+
Tags?: Tag[] | undefined;
|
|
392
392
|
}
|
|
393
393
|
export interface VoiceConnector {
|
|
394
|
-
VoiceConnectorId?: string;
|
|
395
|
-
AwsRegion?: VoiceConnectorAwsRegion;
|
|
396
|
-
Name?: string;
|
|
397
|
-
OutboundHostName?: string;
|
|
398
|
-
RequireEncryption?: boolean;
|
|
399
|
-
CreatedTimestamp?: Date;
|
|
400
|
-
UpdatedTimestamp?: Date;
|
|
401
|
-
VoiceConnectorArn?: string;
|
|
394
|
+
VoiceConnectorId?: string | undefined;
|
|
395
|
+
AwsRegion?: VoiceConnectorAwsRegion | undefined;
|
|
396
|
+
Name?: string | undefined;
|
|
397
|
+
OutboundHostName?: string | undefined;
|
|
398
|
+
RequireEncryption?: boolean | undefined;
|
|
399
|
+
CreatedTimestamp?: Date | undefined;
|
|
400
|
+
UpdatedTimestamp?: Date | undefined;
|
|
401
|
+
VoiceConnectorArn?: string | undefined;
|
|
402
402
|
}
|
|
403
403
|
export interface CreateVoiceConnectorResponse {
|
|
404
|
-
VoiceConnector?: VoiceConnector;
|
|
404
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
405
405
|
}
|
|
406
406
|
export interface VoiceConnectorItem {
|
|
407
407
|
VoiceConnectorId: string | undefined;
|
|
@@ -409,38 +409,38 @@ export interface VoiceConnectorItem {
|
|
|
409
409
|
}
|
|
410
410
|
export interface CreateVoiceConnectorGroupRequest {
|
|
411
411
|
Name: string | undefined;
|
|
412
|
-
VoiceConnectorItems?: VoiceConnectorItem[];
|
|
412
|
+
VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
|
|
413
413
|
}
|
|
414
414
|
export interface VoiceConnectorGroup {
|
|
415
|
-
VoiceConnectorGroupId?: string;
|
|
416
|
-
Name?: string;
|
|
417
|
-
VoiceConnectorItems?: VoiceConnectorItem[];
|
|
418
|
-
CreatedTimestamp?: Date;
|
|
419
|
-
UpdatedTimestamp?: Date;
|
|
420
|
-
VoiceConnectorGroupArn?: string;
|
|
415
|
+
VoiceConnectorGroupId?: string | undefined;
|
|
416
|
+
Name?: string | undefined;
|
|
417
|
+
VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
|
|
418
|
+
CreatedTimestamp?: Date | undefined;
|
|
419
|
+
UpdatedTimestamp?: Date | undefined;
|
|
420
|
+
VoiceConnectorGroupArn?: string | undefined;
|
|
421
421
|
}
|
|
422
422
|
export interface CreateVoiceConnectorGroupResponse {
|
|
423
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
423
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
424
424
|
}
|
|
425
425
|
export interface CreateVoiceProfileRequest {
|
|
426
426
|
SpeakerSearchTaskId: string | undefined;
|
|
427
427
|
}
|
|
428
428
|
export interface VoiceProfile {
|
|
429
|
-
VoiceProfileId?: string;
|
|
430
|
-
VoiceProfileArn?: string;
|
|
431
|
-
VoiceProfileDomainId?: string;
|
|
432
|
-
CreatedTimestamp?: Date;
|
|
433
|
-
UpdatedTimestamp?: Date;
|
|
434
|
-
ExpirationTimestamp?: Date;
|
|
429
|
+
VoiceProfileId?: string | undefined;
|
|
430
|
+
VoiceProfileArn?: string | undefined;
|
|
431
|
+
VoiceProfileDomainId?: string | undefined;
|
|
432
|
+
CreatedTimestamp?: Date | undefined;
|
|
433
|
+
UpdatedTimestamp?: Date | undefined;
|
|
434
|
+
ExpirationTimestamp?: Date | undefined;
|
|
435
435
|
}
|
|
436
436
|
export interface CreateVoiceProfileResponse {
|
|
437
|
-
VoiceProfile?: VoiceProfile;
|
|
437
|
+
VoiceProfile?: VoiceProfile | undefined;
|
|
438
438
|
}
|
|
439
439
|
export declare class GoneException extends __BaseException {
|
|
440
440
|
readonly name: "GoneException";
|
|
441
441
|
readonly $fault: "client";
|
|
442
|
-
Code?: ErrorCode;
|
|
443
|
-
Message?: string;
|
|
442
|
+
Code?: ErrorCode | undefined;
|
|
443
|
+
Message?: string | undefined;
|
|
444
444
|
constructor(opts: __ExceptionOptionType<GoneException, __BaseException>);
|
|
445
445
|
}
|
|
446
446
|
export interface ServerSideEncryptionConfiguration {
|
|
@@ -448,24 +448,26 @@ export interface ServerSideEncryptionConfiguration {
|
|
|
448
448
|
}
|
|
449
449
|
export interface CreateVoiceProfileDomainRequest {
|
|
450
450
|
Name: string | undefined;
|
|
451
|
-
Description?: string;
|
|
451
|
+
Description?: string | undefined;
|
|
452
452
|
ServerSideEncryptionConfiguration:
|
|
453
453
|
| ServerSideEncryptionConfiguration
|
|
454
454
|
| undefined;
|
|
455
|
-
ClientRequestToken?: string;
|
|
456
|
-
Tags?: Tag[];
|
|
455
|
+
ClientRequestToken?: string | undefined;
|
|
456
|
+
Tags?: Tag[] | undefined;
|
|
457
457
|
}
|
|
458
458
|
export interface VoiceProfileDomain {
|
|
459
|
-
VoiceProfileDomainId?: string;
|
|
460
|
-
VoiceProfileDomainArn?: string;
|
|
461
|
-
Name?: string;
|
|
462
|
-
Description?: string;
|
|
463
|
-
ServerSideEncryptionConfiguration?:
|
|
464
|
-
|
|
465
|
-
|
|
459
|
+
VoiceProfileDomainId?: string | undefined;
|
|
460
|
+
VoiceProfileDomainArn?: string | undefined;
|
|
461
|
+
Name?: string | undefined;
|
|
462
|
+
Description?: string | undefined;
|
|
463
|
+
ServerSideEncryptionConfiguration?:
|
|
464
|
+
| ServerSideEncryptionConfiguration
|
|
465
|
+
| undefined;
|
|
466
|
+
CreatedTimestamp?: Date | undefined;
|
|
467
|
+
UpdatedTimestamp?: Date | undefined;
|
|
466
468
|
}
|
|
467
469
|
export interface CreateVoiceProfileDomainResponse {
|
|
468
|
-
VoiceProfileDomain?: VoiceProfileDomain;
|
|
470
|
+
VoiceProfileDomain?: VoiceProfileDomain | undefined;
|
|
469
471
|
}
|
|
470
472
|
export interface DeletePhoneNumberRequest {
|
|
471
473
|
PhoneNumberId: string | undefined;
|
|
@@ -516,20 +518,20 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorRequest {
|
|
|
516
518
|
E164PhoneNumbers: string[] | undefined;
|
|
517
519
|
}
|
|
518
520
|
export interface DisassociatePhoneNumbersFromVoiceConnectorResponse {
|
|
519
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
521
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
520
522
|
}
|
|
521
523
|
export interface DisassociatePhoneNumbersFromVoiceConnectorGroupRequest {
|
|
522
524
|
VoiceConnectorGroupId: string | undefined;
|
|
523
525
|
E164PhoneNumbers: string[] | undefined;
|
|
524
526
|
}
|
|
525
527
|
export interface DisassociatePhoneNumbersFromVoiceConnectorGroupResponse {
|
|
526
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
528
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
527
529
|
}
|
|
528
530
|
export interface VoiceConnectorSettings {
|
|
529
|
-
CdrBucket?: string;
|
|
531
|
+
CdrBucket?: string | undefined;
|
|
530
532
|
}
|
|
531
533
|
export interface GetGlobalSettingsResponse {
|
|
532
|
-
VoiceConnector?: VoiceConnectorSettings;
|
|
534
|
+
VoiceConnector?: VoiceConnectorSettings | undefined;
|
|
533
535
|
}
|
|
534
536
|
export interface GetPhoneNumberRequest {
|
|
535
537
|
PhoneNumberId: string | undefined;
|
|
@@ -542,17 +544,17 @@ export declare const PhoneNumberAssociationName: {
|
|
|
542
544
|
export type PhoneNumberAssociationName =
|
|
543
545
|
(typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
|
|
544
546
|
export interface PhoneNumberAssociation {
|
|
545
|
-
Value?: string;
|
|
546
|
-
Name?: PhoneNumberAssociationName;
|
|
547
|
-
AssociatedTimestamp?: Date;
|
|
547
|
+
Value?: string | undefined;
|
|
548
|
+
Name?: PhoneNumberAssociationName | undefined;
|
|
549
|
+
AssociatedTimestamp?: Date | undefined;
|
|
548
550
|
}
|
|
549
551
|
export interface PhoneNumberCapabilities {
|
|
550
|
-
InboundCall?: boolean;
|
|
551
|
-
OutboundCall?: boolean;
|
|
552
|
-
InboundSMS?: boolean;
|
|
553
|
-
OutboundSMS?: boolean;
|
|
554
|
-
InboundMMS?: boolean;
|
|
555
|
-
OutboundMMS?: boolean;
|
|
552
|
+
InboundCall?: boolean | undefined;
|
|
553
|
+
OutboundCall?: boolean | undefined;
|
|
554
|
+
InboundSMS?: boolean | undefined;
|
|
555
|
+
OutboundSMS?: boolean | undefined;
|
|
556
|
+
InboundMMS?: boolean | undefined;
|
|
557
|
+
OutboundMMS?: boolean | undefined;
|
|
556
558
|
}
|
|
557
559
|
export declare const PhoneNumberStatus: {
|
|
558
560
|
readonly AcquireFailed: "AcquireFailed";
|
|
@@ -576,47 +578,47 @@ export declare const PhoneNumberType: {
|
|
|
576
578
|
export type PhoneNumberType =
|
|
577
579
|
(typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
578
580
|
export interface PhoneNumber {
|
|
579
|
-
PhoneNumberId?: string;
|
|
580
|
-
E164PhoneNumber?: string;
|
|
581
|
-
Country?: string;
|
|
582
|
-
Type?: PhoneNumberType;
|
|
583
|
-
ProductType?: PhoneNumberProductType;
|
|
584
|
-
Status?: PhoneNumberStatus;
|
|
585
|
-
Capabilities?: PhoneNumberCapabilities;
|
|
586
|
-
Associations?: PhoneNumberAssociation[];
|
|
587
|
-
CallingName?: string;
|
|
588
|
-
CallingNameStatus?: CallingNameStatus;
|
|
589
|
-
CreatedTimestamp?: Date;
|
|
590
|
-
UpdatedTimestamp?: Date;
|
|
591
|
-
DeletionTimestamp?: Date;
|
|
592
|
-
OrderId?: string;
|
|
593
|
-
Name?: string;
|
|
581
|
+
PhoneNumberId?: string | undefined;
|
|
582
|
+
E164PhoneNumber?: string | undefined;
|
|
583
|
+
Country?: string | undefined;
|
|
584
|
+
Type?: PhoneNumberType | undefined;
|
|
585
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
586
|
+
Status?: PhoneNumberStatus | undefined;
|
|
587
|
+
Capabilities?: PhoneNumberCapabilities | undefined;
|
|
588
|
+
Associations?: PhoneNumberAssociation[] | undefined;
|
|
589
|
+
CallingName?: string | undefined;
|
|
590
|
+
CallingNameStatus?: CallingNameStatus | undefined;
|
|
591
|
+
CreatedTimestamp?: Date | undefined;
|
|
592
|
+
UpdatedTimestamp?: Date | undefined;
|
|
593
|
+
DeletionTimestamp?: Date | undefined;
|
|
594
|
+
OrderId?: string | undefined;
|
|
595
|
+
Name?: string | undefined;
|
|
594
596
|
}
|
|
595
597
|
export interface GetPhoneNumberResponse {
|
|
596
|
-
PhoneNumber?: PhoneNumber;
|
|
598
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
597
599
|
}
|
|
598
600
|
export interface GetPhoneNumberOrderRequest {
|
|
599
601
|
PhoneNumberOrderId: string | undefined;
|
|
600
602
|
}
|
|
601
603
|
export interface GetPhoneNumberOrderResponse {
|
|
602
|
-
PhoneNumberOrder?: PhoneNumberOrder;
|
|
604
|
+
PhoneNumberOrder?: PhoneNumberOrder | undefined;
|
|
603
605
|
}
|
|
604
606
|
export interface GetPhoneNumberSettingsResponse {
|
|
605
|
-
CallingName?: string;
|
|
606
|
-
CallingNameUpdatedTimestamp?: Date;
|
|
607
|
+
CallingName?: string | undefined;
|
|
608
|
+
CallingNameUpdatedTimestamp?: Date | undefined;
|
|
607
609
|
}
|
|
608
610
|
export interface GetProxySessionRequest {
|
|
609
611
|
VoiceConnectorId: string | undefined;
|
|
610
612
|
ProxySessionId: string | undefined;
|
|
611
613
|
}
|
|
612
614
|
export interface GetProxySessionResponse {
|
|
613
|
-
ProxySession?: ProxySession;
|
|
615
|
+
ProxySession?: ProxySession | undefined;
|
|
614
616
|
}
|
|
615
617
|
export interface GetSipMediaApplicationRequest {
|
|
616
618
|
SipMediaApplicationId: string | undefined;
|
|
617
619
|
}
|
|
618
620
|
export interface GetSipMediaApplicationResponse {
|
|
619
|
-
SipMediaApplication?: SipMediaApplication;
|
|
621
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
620
622
|
}
|
|
621
623
|
export interface GetSipMediaApplicationAlexaSkillConfigurationRequest {
|
|
622
624
|
SipMediaApplicationId: string | undefined;
|
|
@@ -626,83 +628,87 @@ export interface SipMediaApplicationAlexaSkillConfiguration {
|
|
|
626
628
|
AlexaSkillIds: string[] | undefined;
|
|
627
629
|
}
|
|
628
630
|
export interface GetSipMediaApplicationAlexaSkillConfigurationResponse {
|
|
629
|
-
SipMediaApplicationAlexaSkillConfiguration?:
|
|
631
|
+
SipMediaApplicationAlexaSkillConfiguration?:
|
|
632
|
+
| SipMediaApplicationAlexaSkillConfiguration
|
|
633
|
+
| undefined;
|
|
630
634
|
}
|
|
631
635
|
export interface GetSipMediaApplicationLoggingConfigurationRequest {
|
|
632
636
|
SipMediaApplicationId: string | undefined;
|
|
633
637
|
}
|
|
634
638
|
export interface SipMediaApplicationLoggingConfiguration {
|
|
635
|
-
EnableSipMediaApplicationMessageLogs?: boolean;
|
|
639
|
+
EnableSipMediaApplicationMessageLogs?: boolean | undefined;
|
|
636
640
|
}
|
|
637
641
|
export interface GetSipMediaApplicationLoggingConfigurationResponse {
|
|
638
|
-
SipMediaApplicationLoggingConfiguration?:
|
|
642
|
+
SipMediaApplicationLoggingConfiguration?:
|
|
643
|
+
| SipMediaApplicationLoggingConfiguration
|
|
644
|
+
| undefined;
|
|
639
645
|
}
|
|
640
646
|
export interface GetSipRuleRequest {
|
|
641
647
|
SipRuleId: string | undefined;
|
|
642
648
|
}
|
|
643
649
|
export interface GetSipRuleResponse {
|
|
644
|
-
SipRule?: SipRule;
|
|
650
|
+
SipRule?: SipRule | undefined;
|
|
645
651
|
}
|
|
646
652
|
export interface GetSpeakerSearchTaskRequest {
|
|
647
653
|
VoiceConnectorId: string | undefined;
|
|
648
654
|
SpeakerSearchTaskId: string | undefined;
|
|
649
655
|
}
|
|
650
656
|
export interface SpeakerSearchResult {
|
|
651
|
-
ConfidenceScore?: number;
|
|
652
|
-
VoiceProfileId?: string;
|
|
657
|
+
ConfidenceScore?: number | undefined;
|
|
658
|
+
VoiceProfileId?: string | undefined;
|
|
653
659
|
}
|
|
654
660
|
export interface SpeakerSearchDetails {
|
|
655
|
-
Results?: SpeakerSearchResult[];
|
|
656
|
-
VoiceprintGenerationStatus?: string;
|
|
661
|
+
Results?: SpeakerSearchResult[] | undefined;
|
|
662
|
+
VoiceprintGenerationStatus?: string | undefined;
|
|
657
663
|
}
|
|
658
664
|
export interface SpeakerSearchTask {
|
|
659
|
-
SpeakerSearchTaskId?: string;
|
|
660
|
-
SpeakerSearchTaskStatus?: string;
|
|
661
|
-
CallDetails?: CallDetails;
|
|
662
|
-
SpeakerSearchDetails?: SpeakerSearchDetails;
|
|
663
|
-
CreatedTimestamp?: Date;
|
|
664
|
-
UpdatedTimestamp?: Date;
|
|
665
|
-
StartedTimestamp?: Date;
|
|
666
|
-
StatusMessage?: string;
|
|
665
|
+
SpeakerSearchTaskId?: string | undefined;
|
|
666
|
+
SpeakerSearchTaskStatus?: string | undefined;
|
|
667
|
+
CallDetails?: CallDetails | undefined;
|
|
668
|
+
SpeakerSearchDetails?: SpeakerSearchDetails | undefined;
|
|
669
|
+
CreatedTimestamp?: Date | undefined;
|
|
670
|
+
UpdatedTimestamp?: Date | undefined;
|
|
671
|
+
StartedTimestamp?: Date | undefined;
|
|
672
|
+
StatusMessage?: string | undefined;
|
|
667
673
|
}
|
|
668
674
|
export interface GetSpeakerSearchTaskResponse {
|
|
669
|
-
SpeakerSearchTask?: SpeakerSearchTask;
|
|
675
|
+
SpeakerSearchTask?: SpeakerSearchTask | undefined;
|
|
670
676
|
}
|
|
671
677
|
export interface GetVoiceConnectorRequest {
|
|
672
678
|
VoiceConnectorId: string | undefined;
|
|
673
679
|
}
|
|
674
680
|
export interface GetVoiceConnectorResponse {
|
|
675
|
-
VoiceConnector?: VoiceConnector;
|
|
681
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
676
682
|
}
|
|
677
683
|
export interface GetVoiceConnectorEmergencyCallingConfigurationRequest {
|
|
678
684
|
VoiceConnectorId: string | undefined;
|
|
679
685
|
}
|
|
680
686
|
export interface DNISEmergencyCallingConfiguration {
|
|
681
687
|
EmergencyPhoneNumber: string | undefined;
|
|
682
|
-
TestPhoneNumber?: string;
|
|
688
|
+
TestPhoneNumber?: string | undefined;
|
|
683
689
|
CallingCountry: string | undefined;
|
|
684
690
|
}
|
|
685
691
|
export interface EmergencyCallingConfiguration {
|
|
686
|
-
DNIS?: DNISEmergencyCallingConfiguration[];
|
|
692
|
+
DNIS?: DNISEmergencyCallingConfiguration[] | undefined;
|
|
687
693
|
}
|
|
688
694
|
export interface GetVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
689
|
-
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
695
|
+
EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
|
|
690
696
|
}
|
|
691
697
|
export interface GetVoiceConnectorGroupRequest {
|
|
692
698
|
VoiceConnectorGroupId: string | undefined;
|
|
693
699
|
}
|
|
694
700
|
export interface GetVoiceConnectorGroupResponse {
|
|
695
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
701
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
696
702
|
}
|
|
697
703
|
export interface GetVoiceConnectorLoggingConfigurationRequest {
|
|
698
704
|
VoiceConnectorId: string | undefined;
|
|
699
705
|
}
|
|
700
706
|
export interface LoggingConfiguration {
|
|
701
|
-
EnableSIPLogs?: boolean;
|
|
702
|
-
EnableMediaMetricLogs?: boolean;
|
|
707
|
+
EnableSIPLogs?: boolean | undefined;
|
|
708
|
+
EnableMediaMetricLogs?: boolean | undefined;
|
|
703
709
|
}
|
|
704
710
|
export interface GetVoiceConnectorLoggingConfigurationResponse {
|
|
705
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
711
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
706
712
|
}
|
|
707
713
|
export interface GetVoiceConnectorOriginationRequest {
|
|
708
714
|
VoiceConnectorId: string | undefined;
|
|
@@ -714,37 +720,37 @@ export declare const OriginationRouteProtocol: {
|
|
|
714
720
|
export type OriginationRouteProtocol =
|
|
715
721
|
(typeof OriginationRouteProtocol)[keyof typeof OriginationRouteProtocol];
|
|
716
722
|
export interface OriginationRoute {
|
|
717
|
-
Host?: string;
|
|
718
|
-
Port?: number;
|
|
719
|
-
Protocol?: OriginationRouteProtocol;
|
|
720
|
-
Priority?: number;
|
|
721
|
-
Weight?: number;
|
|
723
|
+
Host?: string | undefined;
|
|
724
|
+
Port?: number | undefined;
|
|
725
|
+
Protocol?: OriginationRouteProtocol | undefined;
|
|
726
|
+
Priority?: number | undefined;
|
|
727
|
+
Weight?: number | undefined;
|
|
722
728
|
}
|
|
723
729
|
export interface Origination {
|
|
724
|
-
Routes?: OriginationRoute[];
|
|
725
|
-
Disabled?: boolean;
|
|
730
|
+
Routes?: OriginationRoute[] | undefined;
|
|
731
|
+
Disabled?: boolean | undefined;
|
|
726
732
|
}
|
|
727
733
|
export interface GetVoiceConnectorOriginationResponse {
|
|
728
|
-
Origination?: Origination;
|
|
734
|
+
Origination?: Origination | undefined;
|
|
729
735
|
}
|
|
730
736
|
export interface GetVoiceConnectorProxyRequest {
|
|
731
737
|
VoiceConnectorId: string | undefined;
|
|
732
738
|
}
|
|
733
739
|
export interface Proxy {
|
|
734
|
-
DefaultSessionExpiryMinutes?: number;
|
|
735
|
-
Disabled?: boolean;
|
|
736
|
-
FallBackPhoneNumber?: string;
|
|
737
|
-
PhoneNumberCountries?: string[];
|
|
740
|
+
DefaultSessionExpiryMinutes?: number | undefined;
|
|
741
|
+
Disabled?: boolean | undefined;
|
|
742
|
+
FallBackPhoneNumber?: string | undefined;
|
|
743
|
+
PhoneNumberCountries?: string[] | undefined;
|
|
738
744
|
}
|
|
739
745
|
export interface GetVoiceConnectorProxyResponse {
|
|
740
|
-
Proxy?: Proxy;
|
|
746
|
+
Proxy?: Proxy | undefined;
|
|
741
747
|
}
|
|
742
748
|
export interface GetVoiceConnectorStreamingConfigurationRequest {
|
|
743
749
|
VoiceConnectorId: string | undefined;
|
|
744
750
|
}
|
|
745
751
|
export interface MediaInsightsConfiguration {
|
|
746
|
-
Disabled?: boolean;
|
|
747
|
-
ConfigurationArn?: string;
|
|
752
|
+
Disabled?: boolean | undefined;
|
|
753
|
+
ConfigurationArn?: string | undefined;
|
|
748
754
|
}
|
|
749
755
|
export declare const NotificationTarget: {
|
|
750
756
|
readonly EventBridge: "EventBridge";
|
|
@@ -754,51 +760,51 @@ export declare const NotificationTarget: {
|
|
|
754
760
|
export type NotificationTarget =
|
|
755
761
|
(typeof NotificationTarget)[keyof typeof NotificationTarget];
|
|
756
762
|
export interface StreamingNotificationTarget {
|
|
757
|
-
NotificationTarget?: NotificationTarget;
|
|
763
|
+
NotificationTarget?: NotificationTarget | undefined;
|
|
758
764
|
}
|
|
759
765
|
export interface StreamingConfiguration {
|
|
760
766
|
DataRetentionInHours: number | undefined;
|
|
761
767
|
Disabled: boolean | undefined;
|
|
762
|
-
StreamingNotificationTargets?: StreamingNotificationTarget[];
|
|
763
|
-
MediaInsightsConfiguration?: MediaInsightsConfiguration;
|
|
768
|
+
StreamingNotificationTargets?: StreamingNotificationTarget[] | undefined;
|
|
769
|
+
MediaInsightsConfiguration?: MediaInsightsConfiguration | undefined;
|
|
764
770
|
}
|
|
765
771
|
export interface GetVoiceConnectorStreamingConfigurationResponse {
|
|
766
|
-
StreamingConfiguration?: StreamingConfiguration;
|
|
772
|
+
StreamingConfiguration?: StreamingConfiguration | undefined;
|
|
767
773
|
}
|
|
768
774
|
export interface GetVoiceConnectorTerminationRequest {
|
|
769
775
|
VoiceConnectorId: string | undefined;
|
|
770
776
|
}
|
|
771
777
|
export interface Termination {
|
|
772
|
-
CpsLimit?: number;
|
|
773
|
-
DefaultPhoneNumber?: string;
|
|
774
|
-
CallingRegions?: string[];
|
|
775
|
-
CidrAllowedList?: string[];
|
|
776
|
-
Disabled?: boolean;
|
|
778
|
+
CpsLimit?: number | undefined;
|
|
779
|
+
DefaultPhoneNumber?: string | undefined;
|
|
780
|
+
CallingRegions?: string[] | undefined;
|
|
781
|
+
CidrAllowedList?: string[] | undefined;
|
|
782
|
+
Disabled?: boolean | undefined;
|
|
777
783
|
}
|
|
778
784
|
export interface GetVoiceConnectorTerminationResponse {
|
|
779
|
-
Termination?: Termination;
|
|
785
|
+
Termination?: Termination | undefined;
|
|
780
786
|
}
|
|
781
787
|
export interface GetVoiceConnectorTerminationHealthRequest {
|
|
782
788
|
VoiceConnectorId: string | undefined;
|
|
783
789
|
}
|
|
784
790
|
export interface TerminationHealth {
|
|
785
|
-
Timestamp?: Date;
|
|
786
|
-
Source?: string;
|
|
791
|
+
Timestamp?: Date | undefined;
|
|
792
|
+
Source?: string | undefined;
|
|
787
793
|
}
|
|
788
794
|
export interface GetVoiceConnectorTerminationHealthResponse {
|
|
789
|
-
TerminationHealth?: TerminationHealth;
|
|
795
|
+
TerminationHealth?: TerminationHealth | undefined;
|
|
790
796
|
}
|
|
791
797
|
export interface GetVoiceProfileRequest {
|
|
792
798
|
VoiceProfileId: string | undefined;
|
|
793
799
|
}
|
|
794
800
|
export interface GetVoiceProfileResponse {
|
|
795
|
-
VoiceProfile?: VoiceProfile;
|
|
801
|
+
VoiceProfile?: VoiceProfile | undefined;
|
|
796
802
|
}
|
|
797
803
|
export interface GetVoiceProfileDomainRequest {
|
|
798
804
|
VoiceProfileDomainId: string | undefined;
|
|
799
805
|
}
|
|
800
806
|
export interface GetVoiceProfileDomainResponse {
|
|
801
|
-
VoiceProfileDomain?: VoiceProfileDomain;
|
|
807
|
+
VoiceProfileDomain?: VoiceProfileDomain | undefined;
|
|
802
808
|
}
|
|
803
809
|
export interface GetVoiceToneAnalysisTaskRequest {
|
|
804
810
|
VoiceConnectorId: string | undefined;
|
|
@@ -806,240 +812,248 @@ export interface GetVoiceToneAnalysisTaskRequest {
|
|
|
806
812
|
IsCaller: boolean | undefined;
|
|
807
813
|
}
|
|
808
814
|
export interface VoiceToneAnalysisTask {
|
|
809
|
-
VoiceToneAnalysisTaskId?: string;
|
|
810
|
-
VoiceToneAnalysisTaskStatus?: string;
|
|
811
|
-
CallDetails?: CallDetails;
|
|
812
|
-
CreatedTimestamp?: Date;
|
|
813
|
-
UpdatedTimestamp?: Date;
|
|
814
|
-
StartedTimestamp?: Date;
|
|
815
|
-
StatusMessage?: string;
|
|
815
|
+
VoiceToneAnalysisTaskId?: string | undefined;
|
|
816
|
+
VoiceToneAnalysisTaskStatus?: string | undefined;
|
|
817
|
+
CallDetails?: CallDetails | undefined;
|
|
818
|
+
CreatedTimestamp?: Date | undefined;
|
|
819
|
+
UpdatedTimestamp?: Date | undefined;
|
|
820
|
+
StartedTimestamp?: Date | undefined;
|
|
821
|
+
StatusMessage?: string | undefined;
|
|
816
822
|
}
|
|
817
823
|
export interface GetVoiceToneAnalysisTaskResponse {
|
|
818
|
-
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
824
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask | undefined;
|
|
819
825
|
}
|
|
820
826
|
export interface ListAvailableVoiceConnectorRegionsResponse {
|
|
821
|
-
VoiceConnectorRegions?: VoiceConnectorAwsRegion[];
|
|
827
|
+
VoiceConnectorRegions?: VoiceConnectorAwsRegion[] | undefined;
|
|
822
828
|
}
|
|
823
829
|
export interface ListPhoneNumberOrdersRequest {
|
|
824
|
-
NextToken?: string;
|
|
825
|
-
MaxResults?: number;
|
|
830
|
+
NextToken?: string | undefined;
|
|
831
|
+
MaxResults?: number | undefined;
|
|
826
832
|
}
|
|
827
833
|
export interface ListPhoneNumberOrdersResponse {
|
|
828
|
-
PhoneNumberOrders?: PhoneNumberOrder[];
|
|
829
|
-
NextToken?: string;
|
|
834
|
+
PhoneNumberOrders?: PhoneNumberOrder[] | undefined;
|
|
835
|
+
NextToken?: string | undefined;
|
|
830
836
|
}
|
|
831
837
|
export interface ListPhoneNumbersRequest {
|
|
832
|
-
Status?: string;
|
|
833
|
-
ProductType?: PhoneNumberProductType;
|
|
834
|
-
FilterName?: PhoneNumberAssociationName;
|
|
835
|
-
FilterValue?: string;
|
|
836
|
-
MaxResults?: number;
|
|
837
|
-
NextToken?: string;
|
|
838
|
+
Status?: string | undefined;
|
|
839
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
840
|
+
FilterName?: PhoneNumberAssociationName | undefined;
|
|
841
|
+
FilterValue?: string | undefined;
|
|
842
|
+
MaxResults?: number | undefined;
|
|
843
|
+
NextToken?: string | undefined;
|
|
838
844
|
}
|
|
839
845
|
export interface ListPhoneNumbersResponse {
|
|
840
|
-
PhoneNumbers?: PhoneNumber[];
|
|
841
|
-
NextToken?: string;
|
|
846
|
+
PhoneNumbers?: PhoneNumber[] | undefined;
|
|
847
|
+
NextToken?: string | undefined;
|
|
842
848
|
}
|
|
843
849
|
export interface ListProxySessionsRequest {
|
|
844
850
|
VoiceConnectorId: string | undefined;
|
|
845
|
-
Status?: ProxySessionStatus;
|
|
846
|
-
NextToken?: string;
|
|
847
|
-
MaxResults?: number;
|
|
851
|
+
Status?: ProxySessionStatus | undefined;
|
|
852
|
+
NextToken?: string | undefined;
|
|
853
|
+
MaxResults?: number | undefined;
|
|
848
854
|
}
|
|
849
855
|
export interface ListProxySessionsResponse {
|
|
850
|
-
ProxySessions?: ProxySession[];
|
|
851
|
-
NextToken?: string;
|
|
856
|
+
ProxySessions?: ProxySession[] | undefined;
|
|
857
|
+
NextToken?: string | undefined;
|
|
852
858
|
}
|
|
853
859
|
export interface ListSipMediaApplicationsRequest {
|
|
854
|
-
MaxResults?: number;
|
|
855
|
-
NextToken?: string;
|
|
860
|
+
MaxResults?: number | undefined;
|
|
861
|
+
NextToken?: string | undefined;
|
|
856
862
|
}
|
|
857
863
|
export interface ListSipMediaApplicationsResponse {
|
|
858
|
-
SipMediaApplications?: SipMediaApplication[];
|
|
859
|
-
NextToken?: string;
|
|
864
|
+
SipMediaApplications?: SipMediaApplication[] | undefined;
|
|
865
|
+
NextToken?: string | undefined;
|
|
860
866
|
}
|
|
861
867
|
export interface ListSipRulesRequest {
|
|
862
|
-
SipMediaApplicationId?: string;
|
|
863
|
-
MaxResults?: number;
|
|
864
|
-
NextToken?: string;
|
|
868
|
+
SipMediaApplicationId?: string | undefined;
|
|
869
|
+
MaxResults?: number | undefined;
|
|
870
|
+
NextToken?: string | undefined;
|
|
865
871
|
}
|
|
866
872
|
export interface ListSipRulesResponse {
|
|
867
|
-
SipRules?: SipRule[];
|
|
868
|
-
NextToken?: string;
|
|
873
|
+
SipRules?: SipRule[] | undefined;
|
|
874
|
+
NextToken?: string | undefined;
|
|
869
875
|
}
|
|
870
876
|
export interface ListSupportedPhoneNumberCountriesRequest {
|
|
871
877
|
ProductType: PhoneNumberProductType | undefined;
|
|
872
878
|
}
|
|
873
879
|
export interface PhoneNumberCountry {
|
|
874
|
-
CountryCode?: string;
|
|
875
|
-
SupportedPhoneNumberTypes?: PhoneNumberType[];
|
|
880
|
+
CountryCode?: string | undefined;
|
|
881
|
+
SupportedPhoneNumberTypes?: PhoneNumberType[] | undefined;
|
|
876
882
|
}
|
|
877
883
|
export interface ListSupportedPhoneNumberCountriesResponse {
|
|
878
|
-
PhoneNumberCountries?: PhoneNumberCountry[];
|
|
884
|
+
PhoneNumberCountries?: PhoneNumberCountry[] | undefined;
|
|
879
885
|
}
|
|
880
886
|
export interface ListTagsForResourceRequest {
|
|
881
887
|
ResourceARN: string | undefined;
|
|
882
888
|
}
|
|
883
889
|
export interface ListTagsForResourceResponse {
|
|
884
|
-
Tags?: Tag[];
|
|
890
|
+
Tags?: Tag[] | undefined;
|
|
885
891
|
}
|
|
886
892
|
export interface ListVoiceConnectorGroupsRequest {
|
|
887
|
-
NextToken?: string;
|
|
888
|
-
MaxResults?: number;
|
|
893
|
+
NextToken?: string | undefined;
|
|
894
|
+
MaxResults?: number | undefined;
|
|
889
895
|
}
|
|
890
896
|
export interface ListVoiceConnectorGroupsResponse {
|
|
891
|
-
VoiceConnectorGroups?: VoiceConnectorGroup[];
|
|
892
|
-
NextToken?: string;
|
|
897
|
+
VoiceConnectorGroups?: VoiceConnectorGroup[] | undefined;
|
|
898
|
+
NextToken?: string | undefined;
|
|
893
899
|
}
|
|
894
900
|
export interface ListVoiceConnectorsRequest {
|
|
895
|
-
NextToken?: string;
|
|
896
|
-
MaxResults?: number;
|
|
901
|
+
NextToken?: string | undefined;
|
|
902
|
+
MaxResults?: number | undefined;
|
|
897
903
|
}
|
|
898
904
|
export interface ListVoiceConnectorsResponse {
|
|
899
|
-
VoiceConnectors?: VoiceConnector[];
|
|
900
|
-
NextToken?: string;
|
|
905
|
+
VoiceConnectors?: VoiceConnector[] | undefined;
|
|
906
|
+
NextToken?: string | undefined;
|
|
901
907
|
}
|
|
902
908
|
export interface ListVoiceConnectorTerminationCredentialsRequest {
|
|
903
909
|
VoiceConnectorId: string | undefined;
|
|
904
910
|
}
|
|
905
911
|
export interface ListVoiceConnectorTerminationCredentialsResponse {
|
|
906
|
-
Usernames?: string[];
|
|
912
|
+
Usernames?: string[] | undefined;
|
|
907
913
|
}
|
|
908
914
|
export interface ListVoiceProfileDomainsRequest {
|
|
909
|
-
NextToken?: string;
|
|
910
|
-
MaxResults?: number;
|
|
915
|
+
NextToken?: string | undefined;
|
|
916
|
+
MaxResults?: number | undefined;
|
|
911
917
|
}
|
|
912
918
|
export interface VoiceProfileDomainSummary {
|
|
913
|
-
VoiceProfileDomainId?: string;
|
|
914
|
-
VoiceProfileDomainArn?: string;
|
|
915
|
-
Name?: string;
|
|
916
|
-
Description?: string;
|
|
917
|
-
CreatedTimestamp?: Date;
|
|
918
|
-
UpdatedTimestamp?: Date;
|
|
919
|
+
VoiceProfileDomainId?: string | undefined;
|
|
920
|
+
VoiceProfileDomainArn?: string | undefined;
|
|
921
|
+
Name?: string | undefined;
|
|
922
|
+
Description?: string | undefined;
|
|
923
|
+
CreatedTimestamp?: Date | undefined;
|
|
924
|
+
UpdatedTimestamp?: Date | undefined;
|
|
919
925
|
}
|
|
920
926
|
export interface ListVoiceProfileDomainsResponse {
|
|
921
|
-
VoiceProfileDomains?: VoiceProfileDomainSummary[];
|
|
922
|
-
NextToken?: string;
|
|
927
|
+
VoiceProfileDomains?: VoiceProfileDomainSummary[] | undefined;
|
|
928
|
+
NextToken?: string | undefined;
|
|
923
929
|
}
|
|
924
930
|
export interface ListVoiceProfilesRequest {
|
|
925
931
|
VoiceProfileDomainId: string | undefined;
|
|
926
|
-
NextToken?: string;
|
|
927
|
-
MaxResults?: number;
|
|
932
|
+
NextToken?: string | undefined;
|
|
933
|
+
MaxResults?: number | undefined;
|
|
928
934
|
}
|
|
929
935
|
export interface VoiceProfileSummary {
|
|
930
|
-
VoiceProfileId?: string;
|
|
931
|
-
VoiceProfileArn?: string;
|
|
932
|
-
VoiceProfileDomainId?: string;
|
|
933
|
-
CreatedTimestamp?: Date;
|
|
934
|
-
UpdatedTimestamp?: Date;
|
|
935
|
-
ExpirationTimestamp?: Date;
|
|
936
|
+
VoiceProfileId?: string | undefined;
|
|
937
|
+
VoiceProfileArn?: string | undefined;
|
|
938
|
+
VoiceProfileDomainId?: string | undefined;
|
|
939
|
+
CreatedTimestamp?: Date | undefined;
|
|
940
|
+
UpdatedTimestamp?: Date | undefined;
|
|
941
|
+
ExpirationTimestamp?: Date | undefined;
|
|
936
942
|
}
|
|
937
943
|
export interface ListVoiceProfilesResponse {
|
|
938
|
-
VoiceProfiles?: VoiceProfileSummary[];
|
|
939
|
-
NextToken?: string;
|
|
944
|
+
VoiceProfiles?: VoiceProfileSummary[] | undefined;
|
|
945
|
+
NextToken?: string | undefined;
|
|
940
946
|
}
|
|
941
947
|
export interface PutSipMediaApplicationAlexaSkillConfigurationRequest {
|
|
942
948
|
SipMediaApplicationId: string | undefined;
|
|
943
|
-
SipMediaApplicationAlexaSkillConfiguration?:
|
|
949
|
+
SipMediaApplicationAlexaSkillConfiguration?:
|
|
950
|
+
| SipMediaApplicationAlexaSkillConfiguration
|
|
951
|
+
| undefined;
|
|
944
952
|
}
|
|
945
953
|
export interface PutSipMediaApplicationAlexaSkillConfigurationResponse {
|
|
946
|
-
SipMediaApplicationAlexaSkillConfiguration?:
|
|
954
|
+
SipMediaApplicationAlexaSkillConfiguration?:
|
|
955
|
+
| SipMediaApplicationAlexaSkillConfiguration
|
|
956
|
+
| undefined;
|
|
947
957
|
}
|
|
948
958
|
export interface PutSipMediaApplicationLoggingConfigurationRequest {
|
|
949
959
|
SipMediaApplicationId: string | undefined;
|
|
950
|
-
SipMediaApplicationLoggingConfiguration?:
|
|
960
|
+
SipMediaApplicationLoggingConfiguration?:
|
|
961
|
+
| SipMediaApplicationLoggingConfiguration
|
|
962
|
+
| undefined;
|
|
951
963
|
}
|
|
952
964
|
export interface PutSipMediaApplicationLoggingConfigurationResponse {
|
|
953
|
-
SipMediaApplicationLoggingConfiguration?:
|
|
965
|
+
SipMediaApplicationLoggingConfiguration?:
|
|
966
|
+
| SipMediaApplicationLoggingConfiguration
|
|
967
|
+
| undefined;
|
|
954
968
|
}
|
|
955
969
|
export interface PutVoiceConnectorEmergencyCallingConfigurationRequest {
|
|
956
970
|
VoiceConnectorId: string | undefined;
|
|
957
971
|
EmergencyCallingConfiguration: EmergencyCallingConfiguration | undefined;
|
|
958
972
|
}
|
|
959
973
|
export interface PutVoiceConnectorEmergencyCallingConfigurationResponse {
|
|
960
|
-
EmergencyCallingConfiguration?: EmergencyCallingConfiguration;
|
|
974
|
+
EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
|
|
961
975
|
}
|
|
962
976
|
export interface PutVoiceConnectorLoggingConfigurationRequest {
|
|
963
977
|
VoiceConnectorId: string | undefined;
|
|
964
978
|
LoggingConfiguration: LoggingConfiguration | undefined;
|
|
965
979
|
}
|
|
966
980
|
export interface PutVoiceConnectorLoggingConfigurationResponse {
|
|
967
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
981
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
968
982
|
}
|
|
969
983
|
export interface PutVoiceConnectorOriginationRequest {
|
|
970
984
|
VoiceConnectorId: string | undefined;
|
|
971
985
|
Origination: Origination | undefined;
|
|
972
986
|
}
|
|
973
987
|
export interface PutVoiceConnectorOriginationResponse {
|
|
974
|
-
Origination?: Origination;
|
|
988
|
+
Origination?: Origination | undefined;
|
|
975
989
|
}
|
|
976
990
|
export interface PutVoiceConnectorProxyRequest {
|
|
977
991
|
VoiceConnectorId: string | undefined;
|
|
978
992
|
DefaultSessionExpiryMinutes: number | undefined;
|
|
979
993
|
PhoneNumberPoolCountries: string[] | undefined;
|
|
980
|
-
FallBackPhoneNumber?: string;
|
|
981
|
-
Disabled?: boolean;
|
|
994
|
+
FallBackPhoneNumber?: string | undefined;
|
|
995
|
+
Disabled?: boolean | undefined;
|
|
982
996
|
}
|
|
983
997
|
export interface PutVoiceConnectorProxyResponse {
|
|
984
|
-
Proxy?: Proxy;
|
|
998
|
+
Proxy?: Proxy | undefined;
|
|
985
999
|
}
|
|
986
1000
|
export interface PutVoiceConnectorStreamingConfigurationRequest {
|
|
987
1001
|
VoiceConnectorId: string | undefined;
|
|
988
1002
|
StreamingConfiguration: StreamingConfiguration | undefined;
|
|
989
1003
|
}
|
|
990
1004
|
export interface PutVoiceConnectorStreamingConfigurationResponse {
|
|
991
|
-
StreamingConfiguration?: StreamingConfiguration;
|
|
1005
|
+
StreamingConfiguration?: StreamingConfiguration | undefined;
|
|
992
1006
|
}
|
|
993
1007
|
export interface PutVoiceConnectorTerminationRequest {
|
|
994
1008
|
VoiceConnectorId: string | undefined;
|
|
995
1009
|
Termination: Termination | undefined;
|
|
996
1010
|
}
|
|
997
1011
|
export interface PutVoiceConnectorTerminationResponse {
|
|
998
|
-
Termination?: Termination;
|
|
1012
|
+
Termination?: Termination | undefined;
|
|
999
1013
|
}
|
|
1000
1014
|
export interface Credential {
|
|
1001
|
-
Username?: string;
|
|
1002
|
-
Password?: string;
|
|
1015
|
+
Username?: string | undefined;
|
|
1016
|
+
Password?: string | undefined;
|
|
1003
1017
|
}
|
|
1004
1018
|
export interface PutVoiceConnectorTerminationCredentialsRequest {
|
|
1005
1019
|
VoiceConnectorId: string | undefined;
|
|
1006
|
-
Credentials?: Credential[];
|
|
1020
|
+
Credentials?: Credential[] | undefined;
|
|
1007
1021
|
}
|
|
1008
1022
|
export interface RestorePhoneNumberRequest {
|
|
1009
1023
|
PhoneNumberId: string | undefined;
|
|
1010
1024
|
}
|
|
1011
1025
|
export interface RestorePhoneNumberResponse {
|
|
1012
|
-
PhoneNumber?: PhoneNumber;
|
|
1026
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
1013
1027
|
}
|
|
1014
1028
|
export interface SearchAvailablePhoneNumbersRequest {
|
|
1015
|
-
AreaCode?: string;
|
|
1016
|
-
City?: string;
|
|
1017
|
-
Country?: string;
|
|
1018
|
-
State?: string;
|
|
1019
|
-
TollFreePrefix?: string;
|
|
1020
|
-
PhoneNumberType?: PhoneNumberType;
|
|
1021
|
-
MaxResults?: number;
|
|
1022
|
-
NextToken?: string;
|
|
1029
|
+
AreaCode?: string | undefined;
|
|
1030
|
+
City?: string | undefined;
|
|
1031
|
+
Country?: string | undefined;
|
|
1032
|
+
State?: string | undefined;
|
|
1033
|
+
TollFreePrefix?: string | undefined;
|
|
1034
|
+
PhoneNumberType?: PhoneNumberType | undefined;
|
|
1035
|
+
MaxResults?: number | undefined;
|
|
1036
|
+
NextToken?: string | undefined;
|
|
1023
1037
|
}
|
|
1024
1038
|
export interface SearchAvailablePhoneNumbersResponse {
|
|
1025
|
-
E164PhoneNumbers?: string[];
|
|
1026
|
-
NextToken?: string;
|
|
1039
|
+
E164PhoneNumbers?: string[] | undefined;
|
|
1040
|
+
NextToken?: string | undefined;
|
|
1027
1041
|
}
|
|
1028
1042
|
export interface StartSpeakerSearchTaskRequest {
|
|
1029
1043
|
VoiceConnectorId: string | undefined;
|
|
1030
1044
|
TransactionId: string | undefined;
|
|
1031
1045
|
VoiceProfileDomainId: string | undefined;
|
|
1032
|
-
ClientRequestToken?: string;
|
|
1033
|
-
CallLeg?: CallLegType;
|
|
1046
|
+
ClientRequestToken?: string | undefined;
|
|
1047
|
+
CallLeg?: CallLegType | undefined;
|
|
1034
1048
|
}
|
|
1035
1049
|
export interface StartSpeakerSearchTaskResponse {
|
|
1036
|
-
SpeakerSearchTask?: SpeakerSearchTask;
|
|
1050
|
+
SpeakerSearchTask?: SpeakerSearchTask | undefined;
|
|
1037
1051
|
}
|
|
1038
1052
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
1039
1053
|
readonly name: "UnprocessableEntityException";
|
|
1040
1054
|
readonly $fault: "client";
|
|
1041
|
-
Code?: ErrorCode;
|
|
1042
|
-
Message?: string;
|
|
1055
|
+
Code?: ErrorCode | undefined;
|
|
1056
|
+
Message?: string | undefined;
|
|
1043
1057
|
constructor(
|
|
1044
1058
|
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
1045
1059
|
);
|
|
@@ -1052,10 +1066,10 @@ export interface StartVoiceToneAnalysisTaskRequest {
|
|
|
1052
1066
|
VoiceConnectorId: string | undefined;
|
|
1053
1067
|
TransactionId: string | undefined;
|
|
1054
1068
|
LanguageCode: LanguageCode | undefined;
|
|
1055
|
-
ClientRequestToken?: string;
|
|
1069
|
+
ClientRequestToken?: string | undefined;
|
|
1056
1070
|
}
|
|
1057
1071
|
export interface StartVoiceToneAnalysisTaskResponse {
|
|
1058
|
-
VoiceToneAnalysisTask?: VoiceToneAnalysisTask;
|
|
1072
|
+
VoiceToneAnalysisTask?: VoiceToneAnalysisTask | undefined;
|
|
1059
1073
|
}
|
|
1060
1074
|
export interface StopSpeakerSearchTaskRequest {
|
|
1061
1075
|
VoiceConnectorId: string | undefined;
|
|
@@ -1074,16 +1088,16 @@ export interface UntagResourceRequest {
|
|
|
1074
1088
|
TagKeys: string[] | undefined;
|
|
1075
1089
|
}
|
|
1076
1090
|
export interface UpdateGlobalSettingsRequest {
|
|
1077
|
-
VoiceConnector?: VoiceConnectorSettings;
|
|
1091
|
+
VoiceConnector?: VoiceConnectorSettings | undefined;
|
|
1078
1092
|
}
|
|
1079
1093
|
export interface UpdatePhoneNumberRequest {
|
|
1080
1094
|
PhoneNumberId: string | undefined;
|
|
1081
|
-
ProductType?: PhoneNumberProductType;
|
|
1082
|
-
CallingName?: string;
|
|
1083
|
-
Name?: string;
|
|
1095
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
1096
|
+
CallingName?: string | undefined;
|
|
1097
|
+
Name?: string | undefined;
|
|
1084
1098
|
}
|
|
1085
1099
|
export interface UpdatePhoneNumberResponse {
|
|
1086
|
-
PhoneNumber?: PhoneNumber;
|
|
1100
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
1087
1101
|
}
|
|
1088
1102
|
export interface UpdatePhoneNumberSettingsRequest {
|
|
1089
1103
|
CallingName: string | undefined;
|
|
@@ -1092,18 +1106,18 @@ export interface UpdateProxySessionRequest {
|
|
|
1092
1106
|
VoiceConnectorId: string | undefined;
|
|
1093
1107
|
ProxySessionId: string | undefined;
|
|
1094
1108
|
Capabilities: Capability[] | undefined;
|
|
1095
|
-
ExpiryMinutes?: number;
|
|
1109
|
+
ExpiryMinutes?: number | undefined;
|
|
1096
1110
|
}
|
|
1097
1111
|
export interface UpdateProxySessionResponse {
|
|
1098
|
-
ProxySession?: ProxySession;
|
|
1112
|
+
ProxySession?: ProxySession | undefined;
|
|
1099
1113
|
}
|
|
1100
1114
|
export interface UpdateSipMediaApplicationRequest {
|
|
1101
1115
|
SipMediaApplicationId: string | undefined;
|
|
1102
|
-
Name?: string;
|
|
1103
|
-
Endpoints?: SipMediaApplicationEndpoint[];
|
|
1116
|
+
Name?: string | undefined;
|
|
1117
|
+
Endpoints?: SipMediaApplicationEndpoint[] | undefined;
|
|
1104
1118
|
}
|
|
1105
1119
|
export interface UpdateSipMediaApplicationResponse {
|
|
1106
|
-
SipMediaApplication?: SipMediaApplication;
|
|
1120
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
1107
1121
|
}
|
|
1108
1122
|
export interface UpdateSipMediaApplicationCallRequest {
|
|
1109
1123
|
SipMediaApplicationId: string | undefined;
|
|
@@ -1111,16 +1125,16 @@ export interface UpdateSipMediaApplicationCallRequest {
|
|
|
1111
1125
|
Arguments: Record<string, string> | undefined;
|
|
1112
1126
|
}
|
|
1113
1127
|
export interface UpdateSipMediaApplicationCallResponse {
|
|
1114
|
-
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
1128
|
+
SipMediaApplicationCall?: SipMediaApplicationCall | undefined;
|
|
1115
1129
|
}
|
|
1116
1130
|
export interface UpdateSipRuleRequest {
|
|
1117
1131
|
SipRuleId: string | undefined;
|
|
1118
1132
|
Name: string | undefined;
|
|
1119
|
-
Disabled?: boolean;
|
|
1120
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
1133
|
+
Disabled?: boolean | undefined;
|
|
1134
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
1121
1135
|
}
|
|
1122
1136
|
export interface UpdateSipRuleResponse {
|
|
1123
|
-
SipRule?: SipRule;
|
|
1137
|
+
SipRule?: SipRule | undefined;
|
|
1124
1138
|
}
|
|
1125
1139
|
export interface UpdateVoiceConnectorRequest {
|
|
1126
1140
|
VoiceConnectorId: string | undefined;
|
|
@@ -1128,7 +1142,7 @@ export interface UpdateVoiceConnectorRequest {
|
|
|
1128
1142
|
RequireEncryption: boolean | undefined;
|
|
1129
1143
|
}
|
|
1130
1144
|
export interface UpdateVoiceConnectorResponse {
|
|
1131
|
-
VoiceConnector?: VoiceConnector;
|
|
1145
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
1132
1146
|
}
|
|
1133
1147
|
export interface UpdateVoiceConnectorGroupRequest {
|
|
1134
1148
|
VoiceConnectorGroupId: string | undefined;
|
|
@@ -1136,22 +1150,22 @@ export interface UpdateVoiceConnectorGroupRequest {
|
|
|
1136
1150
|
VoiceConnectorItems: VoiceConnectorItem[] | undefined;
|
|
1137
1151
|
}
|
|
1138
1152
|
export interface UpdateVoiceConnectorGroupResponse {
|
|
1139
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
1153
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
1140
1154
|
}
|
|
1141
1155
|
export interface UpdateVoiceProfileRequest {
|
|
1142
1156
|
VoiceProfileId: string | undefined;
|
|
1143
1157
|
SpeakerSearchTaskId: string | undefined;
|
|
1144
1158
|
}
|
|
1145
1159
|
export interface UpdateVoiceProfileResponse {
|
|
1146
|
-
VoiceProfile?: VoiceProfile;
|
|
1160
|
+
VoiceProfile?: VoiceProfile | undefined;
|
|
1147
1161
|
}
|
|
1148
1162
|
export interface UpdateVoiceProfileDomainRequest {
|
|
1149
1163
|
VoiceProfileDomainId: string | undefined;
|
|
1150
|
-
Name?: string;
|
|
1151
|
-
Description?: string;
|
|
1164
|
+
Name?: string | undefined;
|
|
1165
|
+
Description?: string | undefined;
|
|
1152
1166
|
}
|
|
1153
1167
|
export interface UpdateVoiceProfileDomainResponse {
|
|
1154
|
-
VoiceProfileDomain?: VoiceProfileDomain;
|
|
1168
|
+
VoiceProfileDomain?: VoiceProfileDomain | undefined;
|
|
1155
1169
|
}
|
|
1156
1170
|
export interface ValidateE911AddressRequest {
|
|
1157
1171
|
AwsAccountId: string | undefined;
|
|
@@ -1163,10 +1177,10 @@ export interface ValidateE911AddressRequest {
|
|
|
1163
1177
|
PostalCode: string | undefined;
|
|
1164
1178
|
}
|
|
1165
1179
|
export interface ValidateE911AddressResponse {
|
|
1166
|
-
ValidationResult?: number;
|
|
1167
|
-
AddressExternalId?: string;
|
|
1168
|
-
Address?: Address;
|
|
1169
|
-
CandidateAddressList?: CandidateAddress[];
|
|
1180
|
+
ValidationResult?: number | undefined;
|
|
1181
|
+
AddressExternalId?: string | undefined;
|
|
1182
|
+
Address?: Address | undefined;
|
|
1183
|
+
CandidateAddressList?: CandidateAddress[] | undefined;
|
|
1170
1184
|
}
|
|
1171
1185
|
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1172
1186
|
export declare const AssociatePhoneNumbersWithVoiceConnectorRequestFilterSensitiveLog: (
|