@aws-sdk/client-chime 3.687.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 +470 -470
- package/dist-types/models/models_1.d.ts +276 -276
- package/dist-types/ts3.4/models/models_0.d.ts +476 -470
- package/dist-types/ts3.4/models/models_1.d.ts +284 -276
- package/package.json +7 -7
|
@@ -21,8 +21,8 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
21
21
|
export declare class AccessDeniedException extends __BaseException {
|
|
22
22
|
readonly name: "AccessDeniedException";
|
|
23
23
|
readonly $fault: "client";
|
|
24
|
-
Code?: ErrorCode;
|
|
25
|
-
Message?: string;
|
|
24
|
+
Code?: ErrorCode | undefined;
|
|
25
|
+
Message?: string | undefined;
|
|
26
26
|
constructor(
|
|
27
27
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
28
28
|
);
|
|
@@ -47,57 +47,57 @@ export declare const License: {
|
|
|
47
47
|
};
|
|
48
48
|
export type License = (typeof License)[keyof typeof License];
|
|
49
49
|
export interface SigninDelegateGroup {
|
|
50
|
-
GroupName?: string;
|
|
50
|
+
GroupName?: string | undefined;
|
|
51
51
|
}
|
|
52
52
|
export interface Account {
|
|
53
53
|
AwsAccountId: string | undefined;
|
|
54
54
|
AccountId: string | undefined;
|
|
55
55
|
Name: string | undefined;
|
|
56
|
-
AccountType?: AccountType;
|
|
57
|
-
CreatedTimestamp?: Date;
|
|
58
|
-
DefaultLicense?: License;
|
|
59
|
-
SupportedLicenses?: License[];
|
|
60
|
-
AccountStatus?: AccountStatus;
|
|
61
|
-
SigninDelegateGroups?: SigninDelegateGroup[];
|
|
56
|
+
AccountType?: AccountType | undefined;
|
|
57
|
+
CreatedTimestamp?: Date | undefined;
|
|
58
|
+
DefaultLicense?: License | undefined;
|
|
59
|
+
SupportedLicenses?: License[] | undefined;
|
|
60
|
+
AccountStatus?: AccountStatus | undefined;
|
|
61
|
+
SigninDelegateGroups?: SigninDelegateGroup[] | undefined;
|
|
62
62
|
}
|
|
63
63
|
export interface AccountSettings {
|
|
64
|
-
DisableRemoteControl?: boolean;
|
|
65
|
-
EnableDialOut?: boolean;
|
|
64
|
+
DisableRemoteControl?: boolean | undefined;
|
|
65
|
+
EnableDialOut?: boolean | undefined;
|
|
66
66
|
}
|
|
67
67
|
export interface Address {
|
|
68
|
-
streetName?: string;
|
|
69
|
-
streetSuffix?: string;
|
|
70
|
-
postDirectional?: string;
|
|
71
|
-
preDirectional?: string;
|
|
72
|
-
streetNumber?: string;
|
|
73
|
-
city?: string;
|
|
74
|
-
state?: string;
|
|
75
|
-
postalCode?: string;
|
|
76
|
-
postalCodePlus4?: string;
|
|
77
|
-
country?: string;
|
|
68
|
+
streetName?: string | undefined;
|
|
69
|
+
streetSuffix?: string | undefined;
|
|
70
|
+
postDirectional?: string | undefined;
|
|
71
|
+
preDirectional?: string | undefined;
|
|
72
|
+
streetNumber?: string | undefined;
|
|
73
|
+
city?: string | undefined;
|
|
74
|
+
state?: string | undefined;
|
|
75
|
+
postalCode?: string | undefined;
|
|
76
|
+
postalCodePlus4?: string | undefined;
|
|
77
|
+
country?: string | undefined;
|
|
78
78
|
}
|
|
79
79
|
export interface AlexaForBusinessMetadata {
|
|
80
|
-
IsAlexaForBusinessEnabled?: boolean;
|
|
81
|
-
AlexaForBusinessRoomArn?: string;
|
|
80
|
+
IsAlexaForBusinessEnabled?: boolean | undefined;
|
|
81
|
+
AlexaForBusinessRoomArn?: string | undefined;
|
|
82
82
|
}
|
|
83
83
|
export interface AppInstance {
|
|
84
|
-
AppInstanceArn?: string;
|
|
85
|
-
Name?: string;
|
|
86
|
-
Metadata?: string;
|
|
87
|
-
CreatedTimestamp?: Date;
|
|
88
|
-
LastUpdatedTimestamp?: Date;
|
|
84
|
+
AppInstanceArn?: string | undefined;
|
|
85
|
+
Name?: string | undefined;
|
|
86
|
+
Metadata?: string | undefined;
|
|
87
|
+
CreatedTimestamp?: Date | undefined;
|
|
88
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface Identity {
|
|
91
|
-
Arn?: string;
|
|
92
|
-
Name?: string;
|
|
91
|
+
Arn?: string | undefined;
|
|
92
|
+
Name?: string | undefined;
|
|
93
93
|
}
|
|
94
94
|
export interface AppInstanceAdmin {
|
|
95
|
-
Admin?: Identity;
|
|
96
|
-
AppInstanceArn?: string;
|
|
97
|
-
CreatedTimestamp?: Date;
|
|
95
|
+
Admin?: Identity | undefined;
|
|
96
|
+
AppInstanceArn?: string | undefined;
|
|
97
|
+
CreatedTimestamp?: Date | undefined;
|
|
98
98
|
}
|
|
99
99
|
export interface AppInstanceAdminSummary {
|
|
100
|
-
Admin?: Identity;
|
|
100
|
+
Admin?: Identity | undefined;
|
|
101
101
|
}
|
|
102
102
|
export declare const AppInstanceDataType: {
|
|
103
103
|
readonly Channel: "Channel";
|
|
@@ -106,31 +106,31 @@ export declare const AppInstanceDataType: {
|
|
|
106
106
|
export type AppInstanceDataType =
|
|
107
107
|
(typeof AppInstanceDataType)[keyof typeof AppInstanceDataType];
|
|
108
108
|
export interface AppInstanceSummary {
|
|
109
|
-
AppInstanceArn?: string;
|
|
110
|
-
Name?: string;
|
|
111
|
-
Metadata?: string;
|
|
109
|
+
AppInstanceArn?: string | undefined;
|
|
110
|
+
Name?: string | undefined;
|
|
111
|
+
Metadata?: string | undefined;
|
|
112
112
|
}
|
|
113
113
|
export interface ChannelRetentionSettings {
|
|
114
|
-
RetentionDays?: number;
|
|
114
|
+
RetentionDays?: number | undefined;
|
|
115
115
|
}
|
|
116
116
|
export interface AppInstanceRetentionSettings {
|
|
117
|
-
ChannelRetentionSettings?: ChannelRetentionSettings;
|
|
117
|
+
ChannelRetentionSettings?: ChannelRetentionSettings | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface AppInstanceStreamingConfiguration {
|
|
120
120
|
AppInstanceDataType: AppInstanceDataType | undefined;
|
|
121
121
|
ResourceArn: string | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface AppInstanceUser {
|
|
124
|
-
AppInstanceUserArn?: string;
|
|
125
|
-
Name?: string;
|
|
126
|
-
CreatedTimestamp?: Date;
|
|
127
|
-
Metadata?: string;
|
|
128
|
-
LastUpdatedTimestamp?: Date;
|
|
124
|
+
AppInstanceUserArn?: string | undefined;
|
|
125
|
+
Name?: string | undefined;
|
|
126
|
+
CreatedTimestamp?: Date | undefined;
|
|
127
|
+
Metadata?: string | undefined;
|
|
128
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
129
129
|
}
|
|
130
130
|
export interface AppInstanceUserSummary {
|
|
131
|
-
AppInstanceUserArn?: string;
|
|
132
|
-
Name?: string;
|
|
133
|
-
Metadata?: string;
|
|
131
|
+
AppInstanceUserArn?: string | undefined;
|
|
132
|
+
Name?: string | undefined;
|
|
133
|
+
Metadata?: string | undefined;
|
|
134
134
|
}
|
|
135
135
|
export declare const ChannelMembershipType: {
|
|
136
136
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -139,8 +139,8 @@ export declare const ChannelMembershipType: {
|
|
|
139
139
|
export type ChannelMembershipType =
|
|
140
140
|
(typeof ChannelMembershipType)[keyof typeof ChannelMembershipType];
|
|
141
141
|
export interface AppInstanceUserMembershipSummary {
|
|
142
|
-
Type?: ChannelMembershipType;
|
|
143
|
-
ReadMarkerTimestamp?: Date;
|
|
142
|
+
Type?: ChannelMembershipType | undefined;
|
|
143
|
+
ReadMarkerTimestamp?: Date | undefined;
|
|
144
144
|
}
|
|
145
145
|
export declare const AudioMuxType: {
|
|
146
146
|
readonly AudioOnly: "AudioOnly";
|
|
@@ -163,7 +163,7 @@ export type ArtifactsState =
|
|
|
163
163
|
(typeof ArtifactsState)[keyof typeof ArtifactsState];
|
|
164
164
|
export interface ContentArtifactsConfiguration {
|
|
165
165
|
State: ArtifactsState | undefined;
|
|
166
|
-
MuxType?: ContentMuxType;
|
|
166
|
+
MuxType?: ContentMuxType | undefined;
|
|
167
167
|
}
|
|
168
168
|
export declare const VideoMuxType: {
|
|
169
169
|
readonly VideoOnly: "VideoOnly";
|
|
@@ -171,7 +171,7 @@ export declare const VideoMuxType: {
|
|
|
171
171
|
export type VideoMuxType = (typeof VideoMuxType)[keyof typeof VideoMuxType];
|
|
172
172
|
export interface VideoArtifactsConfiguration {
|
|
173
173
|
State: ArtifactsState | undefined;
|
|
174
|
-
MuxType?: VideoMuxType;
|
|
174
|
+
MuxType?: VideoMuxType | undefined;
|
|
175
175
|
}
|
|
176
176
|
export interface ArtifactsConfiguration {
|
|
177
177
|
Audio: AudioArtifactsConfiguration | undefined;
|
|
@@ -181,21 +181,21 @@ export interface ArtifactsConfiguration {
|
|
|
181
181
|
export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
|
|
182
182
|
VoiceConnectorId: string | undefined;
|
|
183
183
|
E164PhoneNumbers: string[] | undefined;
|
|
184
|
-
ForceAssociate?: boolean;
|
|
184
|
+
ForceAssociate?: boolean | undefined;
|
|
185
185
|
}
|
|
186
186
|
export interface PhoneNumberError {
|
|
187
|
-
PhoneNumberId?: string;
|
|
188
|
-
ErrorCode?: ErrorCode;
|
|
189
|
-
ErrorMessage?: string;
|
|
187
|
+
PhoneNumberId?: string | undefined;
|
|
188
|
+
ErrorCode?: ErrorCode | undefined;
|
|
189
|
+
ErrorMessage?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
|
|
192
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
192
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
193
193
|
}
|
|
194
194
|
export declare class BadRequestException extends __BaseException {
|
|
195
195
|
readonly name: "BadRequestException";
|
|
196
196
|
readonly $fault: "client";
|
|
197
|
-
Code?: ErrorCode;
|
|
198
|
-
Message?: string;
|
|
197
|
+
Code?: ErrorCode | undefined;
|
|
198
|
+
Message?: string | undefined;
|
|
199
199
|
constructor(
|
|
200
200
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
201
201
|
);
|
|
@@ -203,22 +203,22 @@ export declare class BadRequestException extends __BaseException {
|
|
|
203
203
|
export declare class ForbiddenException extends __BaseException {
|
|
204
204
|
readonly name: "ForbiddenException";
|
|
205
205
|
readonly $fault: "client";
|
|
206
|
-
Code?: ErrorCode;
|
|
207
|
-
Message?: string;
|
|
206
|
+
Code?: ErrorCode | undefined;
|
|
207
|
+
Message?: string | undefined;
|
|
208
208
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
209
209
|
}
|
|
210
210
|
export declare class NotFoundException extends __BaseException {
|
|
211
211
|
readonly name: "NotFoundException";
|
|
212
212
|
readonly $fault: "client";
|
|
213
|
-
Code?: ErrorCode;
|
|
214
|
-
Message?: string;
|
|
213
|
+
Code?: ErrorCode | undefined;
|
|
214
|
+
Message?: string | undefined;
|
|
215
215
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
216
216
|
}
|
|
217
217
|
export declare class ServiceFailureException extends __BaseException {
|
|
218
218
|
readonly name: "ServiceFailureException";
|
|
219
219
|
readonly $fault: "server";
|
|
220
|
-
Code?: ErrorCode;
|
|
221
|
-
Message?: string;
|
|
220
|
+
Code?: ErrorCode | undefined;
|
|
221
|
+
Message?: string | undefined;
|
|
222
222
|
constructor(
|
|
223
223
|
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
224
224
|
);
|
|
@@ -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
|
constructor(
|
|
232
232
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
233
233
|
);
|
|
@@ -235,8 +235,8 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
235
235
|
export declare class ThrottledClientException extends __BaseException {
|
|
236
236
|
readonly name: "ThrottledClientException";
|
|
237
237
|
readonly $fault: "client";
|
|
238
|
-
Code?: ErrorCode;
|
|
239
|
-
Message?: string;
|
|
238
|
+
Code?: ErrorCode | undefined;
|
|
239
|
+
Message?: string | undefined;
|
|
240
240
|
constructor(
|
|
241
241
|
opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
|
|
242
242
|
);
|
|
@@ -244,8 +244,8 @@ export declare class ThrottledClientException extends __BaseException {
|
|
|
244
244
|
export declare class UnauthorizedClientException extends __BaseException {
|
|
245
245
|
readonly name: "UnauthorizedClientException";
|
|
246
246
|
readonly $fault: "client";
|
|
247
|
-
Code?: ErrorCode;
|
|
248
|
-
Message?: string;
|
|
247
|
+
Code?: ErrorCode | undefined;
|
|
248
|
+
Message?: string | undefined;
|
|
249
249
|
constructor(
|
|
250
250
|
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
251
251
|
);
|
|
@@ -253,10 +253,10 @@ export declare class UnauthorizedClientException extends __BaseException {
|
|
|
253
253
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
|
|
254
254
|
VoiceConnectorGroupId: string | undefined;
|
|
255
255
|
E164PhoneNumbers: string[] | undefined;
|
|
256
|
-
ForceAssociate?: boolean;
|
|
256
|
+
ForceAssociate?: boolean | undefined;
|
|
257
257
|
}
|
|
258
258
|
export interface AssociatePhoneNumbersWithVoiceConnectorGroupResponse {
|
|
259
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
259
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
260
260
|
}
|
|
261
261
|
export interface AssociatePhoneNumberWithUserRequest {
|
|
262
262
|
AccountId: string | undefined;
|
|
@@ -270,60 +270,60 @@ export interface AssociateSigninDelegateGroupsWithAccountRequest {
|
|
|
270
270
|
}
|
|
271
271
|
export interface AssociateSigninDelegateGroupsWithAccountResponse {}
|
|
272
272
|
export interface Attendee {
|
|
273
|
-
ExternalUserId?: string;
|
|
274
|
-
AttendeeId?: string;
|
|
275
|
-
JoinToken?: string;
|
|
273
|
+
ExternalUserId?: string | undefined;
|
|
274
|
+
AttendeeId?: string | undefined;
|
|
275
|
+
JoinToken?: string | undefined;
|
|
276
276
|
}
|
|
277
277
|
export interface Tag {
|
|
278
278
|
Key: string | undefined;
|
|
279
279
|
Value: string | undefined;
|
|
280
280
|
}
|
|
281
281
|
export interface BatchChannelMemberships {
|
|
282
|
-
InvitedBy?: Identity;
|
|
283
|
-
Type?: ChannelMembershipType;
|
|
284
|
-
Members?: Identity[];
|
|
285
|
-
ChannelArn?: string;
|
|
282
|
+
InvitedBy?: Identity | undefined;
|
|
283
|
+
Type?: ChannelMembershipType | undefined;
|
|
284
|
+
Members?: Identity[] | undefined;
|
|
285
|
+
ChannelArn?: string | undefined;
|
|
286
286
|
}
|
|
287
287
|
export interface CreateAttendeeRequestItem {
|
|
288
288
|
ExternalUserId: string | undefined;
|
|
289
|
-
Tags?: Tag[];
|
|
289
|
+
Tags?: Tag[] | undefined;
|
|
290
290
|
}
|
|
291
291
|
export interface BatchCreateAttendeeRequest {
|
|
292
292
|
MeetingId: string | undefined;
|
|
293
293
|
Attendees: CreateAttendeeRequestItem[] | undefined;
|
|
294
294
|
}
|
|
295
295
|
export interface CreateAttendeeError {
|
|
296
|
-
ExternalUserId?: string;
|
|
297
|
-
ErrorCode?: string;
|
|
298
|
-
ErrorMessage?: string;
|
|
296
|
+
ExternalUserId?: string | undefined;
|
|
297
|
+
ErrorCode?: string | undefined;
|
|
298
|
+
ErrorMessage?: string | undefined;
|
|
299
299
|
}
|
|
300
300
|
export interface BatchCreateAttendeeResponse {
|
|
301
|
-
Attendees?: Attendee[];
|
|
302
|
-
Errors?: CreateAttendeeError[];
|
|
301
|
+
Attendees?: Attendee[] | undefined;
|
|
302
|
+
Errors?: CreateAttendeeError[] | undefined;
|
|
303
303
|
}
|
|
304
304
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
305
305
|
readonly name: "ResourceLimitExceededException";
|
|
306
306
|
readonly $fault: "client";
|
|
307
|
-
Code?: ErrorCode;
|
|
308
|
-
Message?: string;
|
|
307
|
+
Code?: ErrorCode | undefined;
|
|
308
|
+
Message?: string | undefined;
|
|
309
309
|
constructor(
|
|
310
310
|
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
311
311
|
);
|
|
312
312
|
}
|
|
313
313
|
export interface BatchCreateChannelMembershipRequest {
|
|
314
314
|
ChannelArn: string | undefined;
|
|
315
|
-
Type?: ChannelMembershipType;
|
|
315
|
+
Type?: ChannelMembershipType | undefined;
|
|
316
316
|
MemberArns: string[] | undefined;
|
|
317
|
-
ChimeBearer?: string;
|
|
317
|
+
ChimeBearer?: string | undefined;
|
|
318
318
|
}
|
|
319
319
|
export interface BatchCreateChannelMembershipError {
|
|
320
|
-
MemberArn?: string;
|
|
321
|
-
ErrorCode?: ErrorCode;
|
|
322
|
-
ErrorMessage?: string;
|
|
320
|
+
MemberArn?: string | undefined;
|
|
321
|
+
ErrorCode?: ErrorCode | undefined;
|
|
322
|
+
ErrorMessage?: string | undefined;
|
|
323
323
|
}
|
|
324
324
|
export interface BatchCreateChannelMembershipResponse {
|
|
325
|
-
BatchChannelMemberships?: BatchChannelMemberships;
|
|
326
|
-
Errors?: BatchCreateChannelMembershipError[];
|
|
325
|
+
BatchChannelMemberships?: BatchChannelMemberships | undefined;
|
|
326
|
+
Errors?: BatchCreateChannelMembershipError[] | undefined;
|
|
327
327
|
}
|
|
328
328
|
export declare const RoomMembershipRole: {
|
|
329
329
|
readonly Administrator: "Administrator";
|
|
@@ -332,8 +332,8 @@ export declare const RoomMembershipRole: {
|
|
|
332
332
|
export type RoomMembershipRole =
|
|
333
333
|
(typeof RoomMembershipRole)[keyof typeof RoomMembershipRole];
|
|
334
334
|
export interface MembershipItem {
|
|
335
|
-
MemberId?: string;
|
|
336
|
-
Role?: RoomMembershipRole;
|
|
335
|
+
MemberId?: string | undefined;
|
|
336
|
+
Role?: RoomMembershipRole | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface BatchCreateRoomMembershipRequest {
|
|
339
339
|
AccountId: string | undefined;
|
|
@@ -341,37 +341,37 @@ export interface BatchCreateRoomMembershipRequest {
|
|
|
341
341
|
MembershipItemList: MembershipItem[] | undefined;
|
|
342
342
|
}
|
|
343
343
|
export interface MemberError {
|
|
344
|
-
MemberId?: string;
|
|
345
|
-
ErrorCode?: ErrorCode;
|
|
346
|
-
ErrorMessage?: string;
|
|
344
|
+
MemberId?: string | undefined;
|
|
345
|
+
ErrorCode?: ErrorCode | undefined;
|
|
346
|
+
ErrorMessage?: string | undefined;
|
|
347
347
|
}
|
|
348
348
|
export interface BatchCreateRoomMembershipResponse {
|
|
349
|
-
Errors?: MemberError[];
|
|
349
|
+
Errors?: MemberError[] | undefined;
|
|
350
350
|
}
|
|
351
351
|
export interface BatchDeletePhoneNumberRequest {
|
|
352
352
|
PhoneNumberIds: string[] | undefined;
|
|
353
353
|
}
|
|
354
354
|
export interface BatchDeletePhoneNumberResponse {
|
|
355
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
355
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
356
356
|
}
|
|
357
357
|
export interface BatchSuspendUserRequest {
|
|
358
358
|
AccountId: string | undefined;
|
|
359
359
|
UserIdList: string[] | undefined;
|
|
360
360
|
}
|
|
361
361
|
export interface UserError {
|
|
362
|
-
UserId?: string;
|
|
363
|
-
ErrorCode?: ErrorCode;
|
|
364
|
-
ErrorMessage?: string;
|
|
362
|
+
UserId?: string | undefined;
|
|
363
|
+
ErrorCode?: ErrorCode | undefined;
|
|
364
|
+
ErrorMessage?: string | undefined;
|
|
365
365
|
}
|
|
366
366
|
export interface BatchSuspendUserResponse {
|
|
367
|
-
UserErrors?: UserError[];
|
|
367
|
+
UserErrors?: UserError[] | undefined;
|
|
368
368
|
}
|
|
369
369
|
export interface BatchUnsuspendUserRequest {
|
|
370
370
|
AccountId: string | undefined;
|
|
371
371
|
UserIdList: string[] | undefined;
|
|
372
372
|
}
|
|
373
373
|
export interface BatchUnsuspendUserResponse {
|
|
374
|
-
UserErrors?: UserError[];
|
|
374
|
+
UserErrors?: UserError[] | undefined;
|
|
375
375
|
}
|
|
376
376
|
export declare const PhoneNumberProductType: {
|
|
377
377
|
readonly BusinessCalling: "BusinessCalling";
|
|
@@ -382,14 +382,14 @@ export type PhoneNumberProductType =
|
|
|
382
382
|
(typeof PhoneNumberProductType)[keyof typeof PhoneNumberProductType];
|
|
383
383
|
export interface UpdatePhoneNumberRequestItem {
|
|
384
384
|
PhoneNumberId: string | undefined;
|
|
385
|
-
ProductType?: PhoneNumberProductType;
|
|
386
|
-
CallingName?: string;
|
|
385
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
386
|
+
CallingName?: string | undefined;
|
|
387
387
|
}
|
|
388
388
|
export interface BatchUpdatePhoneNumberRequest {
|
|
389
389
|
UpdatePhoneNumberRequestItems: UpdatePhoneNumberRequestItem[] | undefined;
|
|
390
390
|
}
|
|
391
391
|
export interface BatchUpdatePhoneNumberResponse {
|
|
392
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
392
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
393
393
|
}
|
|
394
394
|
export declare const UserType: {
|
|
395
395
|
readonly PrivateUser: "PrivateUser";
|
|
@@ -398,34 +398,34 @@ export declare const UserType: {
|
|
|
398
398
|
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
399
399
|
export interface UpdateUserRequestItem {
|
|
400
400
|
UserId: string | undefined;
|
|
401
|
-
LicenseType?: License;
|
|
402
|
-
UserType?: UserType;
|
|
403
|
-
AlexaForBusinessMetadata?: AlexaForBusinessMetadata;
|
|
401
|
+
LicenseType?: License | undefined;
|
|
402
|
+
UserType?: UserType | undefined;
|
|
403
|
+
AlexaForBusinessMetadata?: AlexaForBusinessMetadata | undefined;
|
|
404
404
|
}
|
|
405
405
|
export interface BatchUpdateUserRequest {
|
|
406
406
|
AccountId: string | undefined;
|
|
407
407
|
UpdateUserRequestItems: UpdateUserRequestItem[] | undefined;
|
|
408
408
|
}
|
|
409
409
|
export interface BatchUpdateUserResponse {
|
|
410
|
-
UserErrors?: UserError[];
|
|
410
|
+
UserErrors?: UserError[] | undefined;
|
|
411
411
|
}
|
|
412
412
|
export declare const BotType: {
|
|
413
413
|
readonly ChatBot: "ChatBot";
|
|
414
414
|
};
|
|
415
415
|
export type BotType = (typeof BotType)[keyof typeof BotType];
|
|
416
416
|
export interface Bot {
|
|
417
|
-
BotId?: string;
|
|
418
|
-
UserId?: string;
|
|
419
|
-
DisplayName?: string;
|
|
420
|
-
BotType?: BotType;
|
|
421
|
-
Disabled?: boolean;
|
|
422
|
-
CreatedTimestamp?: Date;
|
|
423
|
-
UpdatedTimestamp?: Date;
|
|
424
|
-
BotEmail?: string;
|
|
425
|
-
SecurityToken?: string;
|
|
417
|
+
BotId?: string | undefined;
|
|
418
|
+
UserId?: string | undefined;
|
|
419
|
+
DisplayName?: string | undefined;
|
|
420
|
+
BotType?: BotType | undefined;
|
|
421
|
+
Disabled?: boolean | undefined;
|
|
422
|
+
CreatedTimestamp?: Date | undefined;
|
|
423
|
+
UpdatedTimestamp?: Date | undefined;
|
|
424
|
+
BotEmail?: string | undefined;
|
|
425
|
+
SecurityToken?: string | undefined;
|
|
426
426
|
}
|
|
427
427
|
export interface BusinessCallingSettings {
|
|
428
|
-
CdrBucket?: string;
|
|
428
|
+
CdrBucket?: string | undefined;
|
|
429
429
|
}
|
|
430
430
|
export declare const CallingNameStatus: {
|
|
431
431
|
readonly Unassigned: "Unassigned";
|
|
@@ -436,13 +436,13 @@ export declare const CallingNameStatus: {
|
|
|
436
436
|
export type CallingNameStatus =
|
|
437
437
|
(typeof CallingNameStatus)[keyof typeof CallingNameStatus];
|
|
438
438
|
export interface CandidateAddress {
|
|
439
|
-
streetInfo?: string;
|
|
440
|
-
streetNumber?: string;
|
|
441
|
-
city?: string;
|
|
442
|
-
state?: string;
|
|
443
|
-
postalCode?: string;
|
|
444
|
-
postalCodePlus4?: string;
|
|
445
|
-
country?: string;
|
|
439
|
+
streetInfo?: string | undefined;
|
|
440
|
+
streetNumber?: string | undefined;
|
|
441
|
+
city?: string | undefined;
|
|
442
|
+
state?: string | undefined;
|
|
443
|
+
postalCode?: string | undefined;
|
|
444
|
+
postalCodePlus4?: string | undefined;
|
|
445
|
+
country?: string | undefined;
|
|
446
446
|
}
|
|
447
447
|
export declare const Capability: {
|
|
448
448
|
readonly SMS: "SMS";
|
|
@@ -461,47 +461,49 @@ export declare const ChannelPrivacy: {
|
|
|
461
461
|
export type ChannelPrivacy =
|
|
462
462
|
(typeof ChannelPrivacy)[keyof typeof ChannelPrivacy];
|
|
463
463
|
export interface Channel {
|
|
464
|
-
Name?: string;
|
|
465
|
-
ChannelArn?: string;
|
|
466
|
-
Mode?: ChannelMode;
|
|
467
|
-
Privacy?: ChannelPrivacy;
|
|
468
|
-
Metadata?: string;
|
|
469
|
-
CreatedBy?: Identity;
|
|
470
|
-
CreatedTimestamp?: Date;
|
|
471
|
-
LastMessageTimestamp?: Date;
|
|
472
|
-
LastUpdatedTimestamp?: Date;
|
|
464
|
+
Name?: string | undefined;
|
|
465
|
+
ChannelArn?: string | undefined;
|
|
466
|
+
Mode?: ChannelMode | undefined;
|
|
467
|
+
Privacy?: ChannelPrivacy | undefined;
|
|
468
|
+
Metadata?: string | undefined;
|
|
469
|
+
CreatedBy?: Identity | undefined;
|
|
470
|
+
CreatedTimestamp?: Date | undefined;
|
|
471
|
+
LastMessageTimestamp?: Date | undefined;
|
|
472
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
473
473
|
}
|
|
474
474
|
export interface ChannelBan {
|
|
475
|
-
Member?: Identity;
|
|
476
|
-
ChannelArn?: string;
|
|
477
|
-
CreatedTimestamp?: Date;
|
|
478
|
-
CreatedBy?: Identity;
|
|
475
|
+
Member?: Identity | undefined;
|
|
476
|
+
ChannelArn?: string | undefined;
|
|
477
|
+
CreatedTimestamp?: Date | undefined;
|
|
478
|
+
CreatedBy?: Identity | undefined;
|
|
479
479
|
}
|
|
480
480
|
export interface ChannelBanSummary {
|
|
481
|
-
Member?: Identity;
|
|
481
|
+
Member?: Identity | undefined;
|
|
482
482
|
}
|
|
483
483
|
export interface ChannelMembership {
|
|
484
|
-
InvitedBy?: Identity;
|
|
485
|
-
Type?: ChannelMembershipType;
|
|
486
|
-
Member?: Identity;
|
|
487
|
-
ChannelArn?: string;
|
|
488
|
-
CreatedTimestamp?: Date;
|
|
489
|
-
LastUpdatedTimestamp?: Date;
|
|
484
|
+
InvitedBy?: Identity | undefined;
|
|
485
|
+
Type?: ChannelMembershipType | undefined;
|
|
486
|
+
Member?: Identity | undefined;
|
|
487
|
+
ChannelArn?: string | undefined;
|
|
488
|
+
CreatedTimestamp?: Date | undefined;
|
|
489
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
490
490
|
}
|
|
491
491
|
export interface ChannelSummary {
|
|
492
|
-
Name?: string;
|
|
493
|
-
ChannelArn?: string;
|
|
494
|
-
Mode?: ChannelMode;
|
|
495
|
-
Privacy?: ChannelPrivacy;
|
|
496
|
-
Metadata?: string;
|
|
497
|
-
LastMessageTimestamp?: Date;
|
|
492
|
+
Name?: string | undefined;
|
|
493
|
+
ChannelArn?: string | undefined;
|
|
494
|
+
Mode?: ChannelMode | undefined;
|
|
495
|
+
Privacy?: ChannelPrivacy | undefined;
|
|
496
|
+
Metadata?: string | undefined;
|
|
497
|
+
LastMessageTimestamp?: Date | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface ChannelMembershipForAppInstanceUserSummary {
|
|
500
|
-
ChannelSummary?: ChannelSummary;
|
|
501
|
-
AppInstanceUserMembershipSummary?:
|
|
500
|
+
ChannelSummary?: ChannelSummary | undefined;
|
|
501
|
+
AppInstanceUserMembershipSummary?:
|
|
502
|
+
| AppInstanceUserMembershipSummary
|
|
503
|
+
| undefined;
|
|
502
504
|
}
|
|
503
505
|
export interface ChannelMembershipSummary {
|
|
504
|
-
Member?: Identity;
|
|
506
|
+
Member?: Identity | undefined;
|
|
505
507
|
}
|
|
506
508
|
export declare const ChannelMessagePersistenceType: {
|
|
507
509
|
readonly NON_PERSISTENT: "NON_PERSISTENT";
|
|
@@ -516,152 +518,152 @@ export declare const ChannelMessageType: {
|
|
|
516
518
|
export type ChannelMessageType =
|
|
517
519
|
(typeof ChannelMessageType)[keyof typeof ChannelMessageType];
|
|
518
520
|
export interface ChannelMessage {
|
|
519
|
-
ChannelArn?: string;
|
|
520
|
-
MessageId?: string;
|
|
521
|
-
Content?: string;
|
|
522
|
-
Metadata?: string;
|
|
523
|
-
Type?: ChannelMessageType;
|
|
524
|
-
CreatedTimestamp?: Date;
|
|
525
|
-
LastEditedTimestamp?: Date;
|
|
526
|
-
LastUpdatedTimestamp?: Date;
|
|
527
|
-
Sender?: Identity;
|
|
528
|
-
Redacted?: boolean;
|
|
529
|
-
Persistence?: ChannelMessagePersistenceType;
|
|
521
|
+
ChannelArn?: string | undefined;
|
|
522
|
+
MessageId?: string | undefined;
|
|
523
|
+
Content?: string | undefined;
|
|
524
|
+
Metadata?: string | undefined;
|
|
525
|
+
Type?: ChannelMessageType | undefined;
|
|
526
|
+
CreatedTimestamp?: Date | undefined;
|
|
527
|
+
LastEditedTimestamp?: Date | undefined;
|
|
528
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
529
|
+
Sender?: Identity | undefined;
|
|
530
|
+
Redacted?: boolean | undefined;
|
|
531
|
+
Persistence?: ChannelMessagePersistenceType | undefined;
|
|
530
532
|
}
|
|
531
533
|
export interface ChannelMessageSummary {
|
|
532
|
-
MessageId?: string;
|
|
533
|
-
Content?: string;
|
|
534
|
-
Metadata?: string;
|
|
535
|
-
Type?: ChannelMessageType;
|
|
536
|
-
CreatedTimestamp?: Date;
|
|
537
|
-
LastUpdatedTimestamp?: Date;
|
|
538
|
-
LastEditedTimestamp?: Date;
|
|
539
|
-
Sender?: Identity;
|
|
540
|
-
Redacted?: boolean;
|
|
534
|
+
MessageId?: string | undefined;
|
|
535
|
+
Content?: string | undefined;
|
|
536
|
+
Metadata?: string | undefined;
|
|
537
|
+
Type?: ChannelMessageType | undefined;
|
|
538
|
+
CreatedTimestamp?: Date | undefined;
|
|
539
|
+
LastUpdatedTimestamp?: Date | undefined;
|
|
540
|
+
LastEditedTimestamp?: Date | undefined;
|
|
541
|
+
Sender?: Identity | undefined;
|
|
542
|
+
Redacted?: boolean | undefined;
|
|
541
543
|
}
|
|
542
544
|
export interface ChannelModeratedByAppInstanceUserSummary {
|
|
543
|
-
ChannelSummary?: ChannelSummary;
|
|
545
|
+
ChannelSummary?: ChannelSummary | undefined;
|
|
544
546
|
}
|
|
545
547
|
export interface ChannelModerator {
|
|
546
|
-
Moderator?: Identity;
|
|
547
|
-
ChannelArn?: string;
|
|
548
|
-
CreatedTimestamp?: Date;
|
|
549
|
-
CreatedBy?: Identity;
|
|
548
|
+
Moderator?: Identity | undefined;
|
|
549
|
+
ChannelArn?: string | undefined;
|
|
550
|
+
CreatedTimestamp?: Date | undefined;
|
|
551
|
+
CreatedBy?: Identity | undefined;
|
|
550
552
|
}
|
|
551
553
|
export interface ChannelModeratorSummary {
|
|
552
|
-
Moderator?: Identity;
|
|
554
|
+
Moderator?: Identity | undefined;
|
|
553
555
|
}
|
|
554
556
|
export interface SelectedVideoStreams {
|
|
555
|
-
AttendeeIds?: string[];
|
|
556
|
-
ExternalUserIds?: string[];
|
|
557
|
+
AttendeeIds?: string[] | undefined;
|
|
558
|
+
ExternalUserIds?: string[] | undefined;
|
|
557
559
|
}
|
|
558
560
|
export interface SourceConfiguration {
|
|
559
|
-
SelectedVideoStreams?: SelectedVideoStreams;
|
|
561
|
+
SelectedVideoStreams?: SelectedVideoStreams | undefined;
|
|
560
562
|
}
|
|
561
563
|
export interface ChimeSdkMeetingConfiguration {
|
|
562
|
-
SourceConfiguration?: SourceConfiguration;
|
|
563
|
-
ArtifactsConfiguration?: ArtifactsConfiguration;
|
|
564
|
+
SourceConfiguration?: SourceConfiguration | undefined;
|
|
565
|
+
ArtifactsConfiguration?: ArtifactsConfiguration | undefined;
|
|
564
566
|
}
|
|
565
567
|
export declare class ConflictException extends __BaseException {
|
|
566
568
|
readonly name: "ConflictException";
|
|
567
569
|
readonly $fault: "client";
|
|
568
|
-
Code?: ErrorCode;
|
|
569
|
-
Message?: string;
|
|
570
|
+
Code?: ErrorCode | undefined;
|
|
571
|
+
Message?: string | undefined;
|
|
570
572
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
571
573
|
}
|
|
572
574
|
export interface ConversationRetentionSettings {
|
|
573
|
-
RetentionDays?: number;
|
|
575
|
+
RetentionDays?: number | undefined;
|
|
574
576
|
}
|
|
575
577
|
export interface CreateAccountRequest {
|
|
576
578
|
Name: string | undefined;
|
|
577
579
|
}
|
|
578
580
|
export interface CreateAccountResponse {
|
|
579
|
-
Account?: Account;
|
|
581
|
+
Account?: Account | undefined;
|
|
580
582
|
}
|
|
581
583
|
export interface CreateAppInstanceRequest {
|
|
582
584
|
Name: string | undefined;
|
|
583
|
-
Metadata?: string;
|
|
584
|
-
ClientRequestToken?: string;
|
|
585
|
-
Tags?: Tag[];
|
|
585
|
+
Metadata?: string | undefined;
|
|
586
|
+
ClientRequestToken?: string | undefined;
|
|
587
|
+
Tags?: Tag[] | undefined;
|
|
586
588
|
}
|
|
587
589
|
export interface CreateAppInstanceResponse {
|
|
588
|
-
AppInstanceArn?: string;
|
|
590
|
+
AppInstanceArn?: string | undefined;
|
|
589
591
|
}
|
|
590
592
|
export interface CreateAppInstanceAdminRequest {
|
|
591
593
|
AppInstanceAdminArn: string | undefined;
|
|
592
594
|
AppInstanceArn: string | undefined;
|
|
593
595
|
}
|
|
594
596
|
export interface CreateAppInstanceAdminResponse {
|
|
595
|
-
AppInstanceAdmin?: Identity;
|
|
596
|
-
AppInstanceArn?: string;
|
|
597
|
+
AppInstanceAdmin?: Identity | undefined;
|
|
598
|
+
AppInstanceArn?: string | undefined;
|
|
597
599
|
}
|
|
598
600
|
export interface CreateAppInstanceUserRequest {
|
|
599
601
|
AppInstanceArn: string | undefined;
|
|
600
602
|
AppInstanceUserId: string | undefined;
|
|
601
603
|
Name: string | undefined;
|
|
602
|
-
Metadata?: string;
|
|
603
|
-
ClientRequestToken?: string;
|
|
604
|
-
Tags?: Tag[];
|
|
604
|
+
Metadata?: string | undefined;
|
|
605
|
+
ClientRequestToken?: string | undefined;
|
|
606
|
+
Tags?: Tag[] | undefined;
|
|
605
607
|
}
|
|
606
608
|
export interface CreateAppInstanceUserResponse {
|
|
607
|
-
AppInstanceUserArn?: string;
|
|
609
|
+
AppInstanceUserArn?: string | undefined;
|
|
608
610
|
}
|
|
609
611
|
export interface CreateAttendeeRequest {
|
|
610
612
|
MeetingId: string | undefined;
|
|
611
613
|
ExternalUserId: string | undefined;
|
|
612
|
-
Tags?: Tag[];
|
|
614
|
+
Tags?: Tag[] | undefined;
|
|
613
615
|
}
|
|
614
616
|
export interface CreateAttendeeResponse {
|
|
615
|
-
Attendee?: Attendee;
|
|
617
|
+
Attendee?: Attendee | undefined;
|
|
616
618
|
}
|
|
617
619
|
export interface CreateBotRequest {
|
|
618
620
|
AccountId: string | undefined;
|
|
619
621
|
DisplayName: string | undefined;
|
|
620
|
-
Domain?: string;
|
|
622
|
+
Domain?: string | undefined;
|
|
621
623
|
}
|
|
622
624
|
export interface CreateBotResponse {
|
|
623
|
-
Bot?: Bot;
|
|
625
|
+
Bot?: Bot | undefined;
|
|
624
626
|
}
|
|
625
627
|
export interface CreateChannelRequest {
|
|
626
628
|
AppInstanceArn: string | undefined;
|
|
627
629
|
Name: string | undefined;
|
|
628
|
-
Mode?: ChannelMode;
|
|
629
|
-
Privacy?: ChannelPrivacy;
|
|
630
|
-
Metadata?: string;
|
|
631
|
-
ClientRequestToken?: string;
|
|
632
|
-
Tags?: Tag[];
|
|
633
|
-
ChimeBearer?: string;
|
|
630
|
+
Mode?: ChannelMode | undefined;
|
|
631
|
+
Privacy?: ChannelPrivacy | undefined;
|
|
632
|
+
Metadata?: string | undefined;
|
|
633
|
+
ClientRequestToken?: string | undefined;
|
|
634
|
+
Tags?: Tag[] | undefined;
|
|
635
|
+
ChimeBearer?: string | undefined;
|
|
634
636
|
}
|
|
635
637
|
export interface CreateChannelResponse {
|
|
636
|
-
ChannelArn?: string;
|
|
638
|
+
ChannelArn?: string | undefined;
|
|
637
639
|
}
|
|
638
640
|
export interface CreateChannelBanRequest {
|
|
639
641
|
ChannelArn: string | undefined;
|
|
640
642
|
MemberArn: string | undefined;
|
|
641
|
-
ChimeBearer?: string;
|
|
643
|
+
ChimeBearer?: string | undefined;
|
|
642
644
|
}
|
|
643
645
|
export interface CreateChannelBanResponse {
|
|
644
|
-
ChannelArn?: string;
|
|
645
|
-
Member?: Identity;
|
|
646
|
+
ChannelArn?: string | undefined;
|
|
647
|
+
Member?: Identity | undefined;
|
|
646
648
|
}
|
|
647
649
|
export interface CreateChannelMembershipRequest {
|
|
648
650
|
ChannelArn: string | undefined;
|
|
649
651
|
MemberArn: string | undefined;
|
|
650
652
|
Type: ChannelMembershipType | undefined;
|
|
651
|
-
ChimeBearer?: string;
|
|
653
|
+
ChimeBearer?: string | undefined;
|
|
652
654
|
}
|
|
653
655
|
export interface CreateChannelMembershipResponse {
|
|
654
|
-
ChannelArn?: string;
|
|
655
|
-
Member?: Identity;
|
|
656
|
+
ChannelArn?: string | undefined;
|
|
657
|
+
Member?: Identity | undefined;
|
|
656
658
|
}
|
|
657
659
|
export interface CreateChannelModeratorRequest {
|
|
658
660
|
ChannelArn: string | undefined;
|
|
659
661
|
ChannelModeratorArn: string | undefined;
|
|
660
|
-
ChimeBearer?: string;
|
|
662
|
+
ChimeBearer?: string | undefined;
|
|
661
663
|
}
|
|
662
664
|
export interface CreateChannelModeratorResponse {
|
|
663
|
-
ChannelArn?: string;
|
|
664
|
-
ChannelModerator?: Identity;
|
|
665
|
+
ChannelArn?: string | undefined;
|
|
666
|
+
ChannelModerator?: Identity | undefined;
|
|
665
667
|
}
|
|
666
668
|
export declare const MediaPipelineSinkType: {
|
|
667
669
|
readonly S3Bucket: "S3Bucket";
|
|
@@ -678,8 +680,8 @@ export interface CreateMediaCapturePipelineRequest {
|
|
|
678
680
|
SourceArn: string | undefined;
|
|
679
681
|
SinkType: MediaPipelineSinkType | undefined;
|
|
680
682
|
SinkArn: string | undefined;
|
|
681
|
-
ClientRequestToken?: string;
|
|
682
|
-
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
683
|
+
ClientRequestToken?: string | undefined;
|
|
684
|
+
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration | undefined;
|
|
683
685
|
}
|
|
684
686
|
export declare const MediaPipelineStatus: {
|
|
685
687
|
readonly Failed: "Failed";
|
|
@@ -691,49 +693,49 @@ export declare const MediaPipelineStatus: {
|
|
|
691
693
|
export type MediaPipelineStatus =
|
|
692
694
|
(typeof MediaPipelineStatus)[keyof typeof MediaPipelineStatus];
|
|
693
695
|
export interface MediaCapturePipeline {
|
|
694
|
-
MediaPipelineId?: string;
|
|
695
|
-
SourceType?: MediaPipelineSourceType;
|
|
696
|
-
SourceArn?: string;
|
|
697
|
-
Status?: MediaPipelineStatus;
|
|
698
|
-
SinkType?: MediaPipelineSinkType;
|
|
699
|
-
SinkArn?: string;
|
|
700
|
-
CreatedTimestamp?: Date;
|
|
701
|
-
UpdatedTimestamp?: Date;
|
|
702
|
-
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
696
|
+
MediaPipelineId?: string | undefined;
|
|
697
|
+
SourceType?: MediaPipelineSourceType | undefined;
|
|
698
|
+
SourceArn?: string | undefined;
|
|
699
|
+
Status?: MediaPipelineStatus | undefined;
|
|
700
|
+
SinkType?: MediaPipelineSinkType | undefined;
|
|
701
|
+
SinkArn?: string | undefined;
|
|
702
|
+
CreatedTimestamp?: Date | undefined;
|
|
703
|
+
UpdatedTimestamp?: Date | undefined;
|
|
704
|
+
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration | undefined;
|
|
703
705
|
}
|
|
704
706
|
export interface CreateMediaCapturePipelineResponse {
|
|
705
|
-
MediaCapturePipeline?: MediaCapturePipeline;
|
|
707
|
+
MediaCapturePipeline?: MediaCapturePipeline | undefined;
|
|
706
708
|
}
|
|
707
709
|
export interface MeetingNotificationConfiguration {
|
|
708
|
-
SnsTopicArn?: string;
|
|
709
|
-
SqsQueueArn?: string;
|
|
710
|
+
SnsTopicArn?: string | undefined;
|
|
711
|
+
SqsQueueArn?: string | undefined;
|
|
710
712
|
}
|
|
711
713
|
export interface CreateMeetingRequest {
|
|
712
|
-
ClientRequestToken?: string;
|
|
713
|
-
ExternalMeetingId?: string;
|
|
714
|
-
MeetingHostId?: string;
|
|
715
|
-
MediaRegion?: string;
|
|
716
|
-
Tags?: Tag[];
|
|
717
|
-
NotificationsConfiguration?: MeetingNotificationConfiguration;
|
|
714
|
+
ClientRequestToken?: string | undefined;
|
|
715
|
+
ExternalMeetingId?: string | undefined;
|
|
716
|
+
MeetingHostId?: string | undefined;
|
|
717
|
+
MediaRegion?: string | undefined;
|
|
718
|
+
Tags?: Tag[] | undefined;
|
|
719
|
+
NotificationsConfiguration?: MeetingNotificationConfiguration | undefined;
|
|
718
720
|
}
|
|
719
721
|
export interface MediaPlacement {
|
|
720
|
-
AudioHostUrl?: string;
|
|
721
|
-
AudioFallbackUrl?: string;
|
|
722
|
-
ScreenDataUrl?: string;
|
|
723
|
-
ScreenSharingUrl?: string;
|
|
724
|
-
ScreenViewingUrl?: string;
|
|
725
|
-
SignalingUrl?: string;
|
|
726
|
-
TurnControlUrl?: string;
|
|
727
|
-
EventIngestionUrl?: string;
|
|
722
|
+
AudioHostUrl?: string | undefined;
|
|
723
|
+
AudioFallbackUrl?: string | undefined;
|
|
724
|
+
ScreenDataUrl?: string | undefined;
|
|
725
|
+
ScreenSharingUrl?: string | undefined;
|
|
726
|
+
ScreenViewingUrl?: string | undefined;
|
|
727
|
+
SignalingUrl?: string | undefined;
|
|
728
|
+
TurnControlUrl?: string | undefined;
|
|
729
|
+
EventIngestionUrl?: string | undefined;
|
|
728
730
|
}
|
|
729
731
|
export interface Meeting {
|
|
730
|
-
MeetingId?: string;
|
|
731
|
-
ExternalMeetingId?: string;
|
|
732
|
-
MediaPlacement?: MediaPlacement;
|
|
733
|
-
MediaRegion?: string;
|
|
732
|
+
MeetingId?: string | undefined;
|
|
733
|
+
ExternalMeetingId?: string | undefined;
|
|
734
|
+
MediaPlacement?: MediaPlacement | undefined;
|
|
735
|
+
MediaRegion?: string | undefined;
|
|
734
736
|
}
|
|
735
737
|
export interface CreateMeetingResponse {
|
|
736
|
-
Meeting?: Meeting;
|
|
738
|
+
Meeting?: Meeting | undefined;
|
|
737
739
|
}
|
|
738
740
|
export interface CreateMeetingDialOutRequest {
|
|
739
741
|
MeetingId: string | undefined;
|
|
@@ -742,21 +744,21 @@ export interface CreateMeetingDialOutRequest {
|
|
|
742
744
|
JoinToken: string | undefined;
|
|
743
745
|
}
|
|
744
746
|
export interface CreateMeetingDialOutResponse {
|
|
745
|
-
TransactionId?: string;
|
|
747
|
+
TransactionId?: string | undefined;
|
|
746
748
|
}
|
|
747
749
|
export interface CreateMeetingWithAttendeesRequest {
|
|
748
|
-
ClientRequestToken?: string;
|
|
749
|
-
ExternalMeetingId?: string;
|
|
750
|
-
MeetingHostId?: string;
|
|
751
|
-
MediaRegion?: string;
|
|
752
|
-
Tags?: Tag[];
|
|
753
|
-
NotificationsConfiguration?: MeetingNotificationConfiguration;
|
|
754
|
-
Attendees?: CreateAttendeeRequestItem[];
|
|
750
|
+
ClientRequestToken?: string | undefined;
|
|
751
|
+
ExternalMeetingId?: string | undefined;
|
|
752
|
+
MeetingHostId?: string | undefined;
|
|
753
|
+
MediaRegion?: string | undefined;
|
|
754
|
+
Tags?: Tag[] | undefined;
|
|
755
|
+
NotificationsConfiguration?: MeetingNotificationConfiguration | undefined;
|
|
756
|
+
Attendees?: CreateAttendeeRequestItem[] | undefined;
|
|
755
757
|
}
|
|
756
758
|
export interface CreateMeetingWithAttendeesResponse {
|
|
757
|
-
Meeting?: Meeting;
|
|
758
|
-
Attendees?: Attendee[];
|
|
759
|
-
Errors?: CreateAttendeeError[];
|
|
759
|
+
Meeting?: Meeting | undefined;
|
|
760
|
+
Attendees?: Attendee[] | undefined;
|
|
761
|
+
Errors?: CreateAttendeeError[] | undefined;
|
|
760
762
|
}
|
|
761
763
|
export interface CreatePhoneNumberOrderRequest {
|
|
762
764
|
ProductType: PhoneNumberProductType | undefined;
|
|
@@ -770,8 +772,8 @@ export declare const OrderedPhoneNumberStatus: {
|
|
|
770
772
|
export type OrderedPhoneNumberStatus =
|
|
771
773
|
(typeof OrderedPhoneNumberStatus)[keyof typeof OrderedPhoneNumberStatus];
|
|
772
774
|
export interface OrderedPhoneNumber {
|
|
773
|
-
E164PhoneNumber?: string;
|
|
774
|
-
Status?: OrderedPhoneNumberStatus;
|
|
775
|
+
E164PhoneNumber?: string | undefined;
|
|
776
|
+
Status?: OrderedPhoneNumberStatus | undefined;
|
|
775
777
|
}
|
|
776
778
|
export declare const PhoneNumberOrderStatus: {
|
|
777
779
|
readonly Failed: "Failed";
|
|
@@ -782,15 +784,15 @@ export declare const PhoneNumberOrderStatus: {
|
|
|
782
784
|
export type PhoneNumberOrderStatus =
|
|
783
785
|
(typeof PhoneNumberOrderStatus)[keyof typeof PhoneNumberOrderStatus];
|
|
784
786
|
export interface PhoneNumberOrder {
|
|
785
|
-
PhoneNumberOrderId?: string;
|
|
786
|
-
ProductType?: PhoneNumberProductType;
|
|
787
|
-
Status?: PhoneNumberOrderStatus;
|
|
788
|
-
OrderedPhoneNumbers?: OrderedPhoneNumber[];
|
|
789
|
-
CreatedTimestamp?: Date;
|
|
790
|
-
UpdatedTimestamp?: Date;
|
|
787
|
+
PhoneNumberOrderId?: string | undefined;
|
|
788
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
789
|
+
Status?: PhoneNumberOrderStatus | undefined;
|
|
790
|
+
OrderedPhoneNumbers?: OrderedPhoneNumber[] | undefined;
|
|
791
|
+
CreatedTimestamp?: Date | undefined;
|
|
792
|
+
UpdatedTimestamp?: Date | undefined;
|
|
791
793
|
}
|
|
792
794
|
export interface CreatePhoneNumberOrderResponse {
|
|
793
|
-
PhoneNumberOrder?: PhoneNumberOrder;
|
|
795
|
+
PhoneNumberOrder?: PhoneNumberOrder | undefined;
|
|
794
796
|
}
|
|
795
797
|
export declare const GeoMatchLevel: {
|
|
796
798
|
readonly AreaCode: "AreaCode";
|
|
@@ -810,16 +812,16 @@ export type NumberSelectionBehavior =
|
|
|
810
812
|
export interface CreateProxySessionRequest {
|
|
811
813
|
VoiceConnectorId: string | undefined;
|
|
812
814
|
ParticipantPhoneNumbers: string[] | undefined;
|
|
813
|
-
Name?: string;
|
|
814
|
-
ExpiryMinutes?: number;
|
|
815
|
+
Name?: string | undefined;
|
|
816
|
+
ExpiryMinutes?: number | undefined;
|
|
815
817
|
Capabilities: Capability[] | undefined;
|
|
816
|
-
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
817
|
-
GeoMatchLevel?: GeoMatchLevel;
|
|
818
|
-
GeoMatchParams?: GeoMatchParams;
|
|
818
|
+
NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
|
|
819
|
+
GeoMatchLevel?: GeoMatchLevel | undefined;
|
|
820
|
+
GeoMatchParams?: GeoMatchParams | undefined;
|
|
819
821
|
}
|
|
820
822
|
export interface Participant {
|
|
821
|
-
PhoneNumber?: string;
|
|
822
|
-
ProxyPhoneNumber?: string;
|
|
823
|
+
PhoneNumber?: string | undefined;
|
|
824
|
+
ProxyPhoneNumber?: string | undefined;
|
|
823
825
|
}
|
|
824
826
|
export declare const ProxySessionStatus: {
|
|
825
827
|
readonly Closed: "Closed";
|
|
@@ -829,44 +831,44 @@ export declare const ProxySessionStatus: {
|
|
|
829
831
|
export type ProxySessionStatus =
|
|
830
832
|
(typeof ProxySessionStatus)[keyof typeof ProxySessionStatus];
|
|
831
833
|
export interface ProxySession {
|
|
832
|
-
VoiceConnectorId?: string;
|
|
833
|
-
ProxySessionId?: string;
|
|
834
|
-
Name?: string;
|
|
835
|
-
Status?: ProxySessionStatus;
|
|
836
|
-
ExpiryMinutes?: number;
|
|
837
|
-
Capabilities?: Capability[];
|
|
838
|
-
CreatedTimestamp?: Date;
|
|
839
|
-
UpdatedTimestamp?: Date;
|
|
840
|
-
EndedTimestamp?: Date;
|
|
841
|
-
Participants?: Participant[];
|
|
842
|
-
NumberSelectionBehavior?: NumberSelectionBehavior;
|
|
843
|
-
GeoMatchLevel?: GeoMatchLevel;
|
|
844
|
-
GeoMatchParams?: GeoMatchParams;
|
|
834
|
+
VoiceConnectorId?: string | undefined;
|
|
835
|
+
ProxySessionId?: string | undefined;
|
|
836
|
+
Name?: string | undefined;
|
|
837
|
+
Status?: ProxySessionStatus | undefined;
|
|
838
|
+
ExpiryMinutes?: number | undefined;
|
|
839
|
+
Capabilities?: Capability[] | undefined;
|
|
840
|
+
CreatedTimestamp?: Date | undefined;
|
|
841
|
+
UpdatedTimestamp?: Date | undefined;
|
|
842
|
+
EndedTimestamp?: Date | undefined;
|
|
843
|
+
Participants?: Participant[] | undefined;
|
|
844
|
+
NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
|
|
845
|
+
GeoMatchLevel?: GeoMatchLevel | undefined;
|
|
846
|
+
GeoMatchParams?: GeoMatchParams | undefined;
|
|
845
847
|
}
|
|
846
848
|
export interface CreateProxySessionResponse {
|
|
847
|
-
ProxySession?: ProxySession;
|
|
849
|
+
ProxySession?: ProxySession | undefined;
|
|
848
850
|
}
|
|
849
851
|
export interface CreateRoomRequest {
|
|
850
852
|
AccountId: string | undefined;
|
|
851
853
|
Name: string | undefined;
|
|
852
|
-
ClientRequestToken?: string;
|
|
854
|
+
ClientRequestToken?: string | undefined;
|
|
853
855
|
}
|
|
854
856
|
export interface Room {
|
|
855
|
-
RoomId?: string;
|
|
856
|
-
Name?: string;
|
|
857
|
-
AccountId?: string;
|
|
858
|
-
CreatedBy?: string;
|
|
859
|
-
CreatedTimestamp?: Date;
|
|
860
|
-
UpdatedTimestamp?: Date;
|
|
857
|
+
RoomId?: string | undefined;
|
|
858
|
+
Name?: string | undefined;
|
|
859
|
+
AccountId?: string | undefined;
|
|
860
|
+
CreatedBy?: string | undefined;
|
|
861
|
+
CreatedTimestamp?: Date | undefined;
|
|
862
|
+
UpdatedTimestamp?: Date | undefined;
|
|
861
863
|
}
|
|
862
864
|
export interface CreateRoomResponse {
|
|
863
|
-
Room?: Room;
|
|
865
|
+
Room?: Room | undefined;
|
|
864
866
|
}
|
|
865
867
|
export interface CreateRoomMembershipRequest {
|
|
866
868
|
AccountId: string | undefined;
|
|
867
869
|
RoomId: string | undefined;
|
|
868
870
|
MemberId: string | undefined;
|
|
869
|
-
Role?: RoomMembershipRole;
|
|
871
|
+
Role?: RoomMembershipRole | undefined;
|
|
870
872
|
}
|
|
871
873
|
export declare const MemberType: {
|
|
872
874
|
readonly Bot: "Bot";
|
|
@@ -875,24 +877,24 @@ export declare const MemberType: {
|
|
|
875
877
|
};
|
|
876
878
|
export type MemberType = (typeof MemberType)[keyof typeof MemberType];
|
|
877
879
|
export interface Member {
|
|
878
|
-
MemberId?: string;
|
|
879
|
-
MemberType?: MemberType;
|
|
880
|
-
Email?: string;
|
|
881
|
-
FullName?: string;
|
|
882
|
-
AccountId?: string;
|
|
880
|
+
MemberId?: string | undefined;
|
|
881
|
+
MemberType?: MemberType | undefined;
|
|
882
|
+
Email?: string | undefined;
|
|
883
|
+
FullName?: string | undefined;
|
|
884
|
+
AccountId?: string | undefined;
|
|
883
885
|
}
|
|
884
886
|
export interface RoomMembership {
|
|
885
|
-
RoomId?: string;
|
|
886
|
-
Member?: Member;
|
|
887
|
-
Role?: RoomMembershipRole;
|
|
888
|
-
InvitedBy?: string;
|
|
889
|
-
UpdatedTimestamp?: Date;
|
|
887
|
+
RoomId?: string | undefined;
|
|
888
|
+
Member?: Member | undefined;
|
|
889
|
+
Role?: RoomMembershipRole | undefined;
|
|
890
|
+
InvitedBy?: string | undefined;
|
|
891
|
+
UpdatedTimestamp?: Date | undefined;
|
|
890
892
|
}
|
|
891
893
|
export interface CreateRoomMembershipResponse {
|
|
892
|
-
RoomMembership?: RoomMembership;
|
|
894
|
+
RoomMembership?: RoomMembership | undefined;
|
|
893
895
|
}
|
|
894
896
|
export interface SipMediaApplicationEndpoint {
|
|
895
|
-
LambdaArn?: string;
|
|
897
|
+
LambdaArn?: string | undefined;
|
|
896
898
|
}
|
|
897
899
|
export interface CreateSipMediaApplicationRequest {
|
|
898
900
|
AwsRegion: string | undefined;
|
|
@@ -900,32 +902,32 @@ export interface CreateSipMediaApplicationRequest {
|
|
|
900
902
|
Endpoints: SipMediaApplicationEndpoint[] | undefined;
|
|
901
903
|
}
|
|
902
904
|
export interface SipMediaApplication {
|
|
903
|
-
SipMediaApplicationId?: string;
|
|
904
|
-
AwsRegion?: string;
|
|
905
|
-
Name?: string;
|
|
906
|
-
Endpoints?: SipMediaApplicationEndpoint[];
|
|
907
|
-
CreatedTimestamp?: Date;
|
|
908
|
-
UpdatedTimestamp?: Date;
|
|
905
|
+
SipMediaApplicationId?: string | undefined;
|
|
906
|
+
AwsRegion?: string | undefined;
|
|
907
|
+
Name?: string | undefined;
|
|
908
|
+
Endpoints?: SipMediaApplicationEndpoint[] | undefined;
|
|
909
|
+
CreatedTimestamp?: Date | undefined;
|
|
910
|
+
UpdatedTimestamp?: Date | undefined;
|
|
909
911
|
}
|
|
910
912
|
export interface CreateSipMediaApplicationResponse {
|
|
911
|
-
SipMediaApplication?: SipMediaApplication;
|
|
913
|
+
SipMediaApplication?: SipMediaApplication | undefined;
|
|
912
914
|
}
|
|
913
915
|
export interface CreateSipMediaApplicationCallRequest {
|
|
914
916
|
FromPhoneNumber: string | undefined;
|
|
915
917
|
ToPhoneNumber: string | undefined;
|
|
916
918
|
SipMediaApplicationId: string | undefined;
|
|
917
|
-
SipHeaders?: Record<string, string
|
|
919
|
+
SipHeaders?: Record<string, string> | undefined;
|
|
918
920
|
}
|
|
919
921
|
export interface SipMediaApplicationCall {
|
|
920
|
-
TransactionId?: string;
|
|
922
|
+
TransactionId?: string | undefined;
|
|
921
923
|
}
|
|
922
924
|
export interface CreateSipMediaApplicationCallResponse {
|
|
923
|
-
SipMediaApplicationCall?: SipMediaApplicationCall;
|
|
925
|
+
SipMediaApplicationCall?: SipMediaApplicationCall | undefined;
|
|
924
926
|
}
|
|
925
927
|
export interface SipRuleTargetApplication {
|
|
926
|
-
SipMediaApplicationId?: string;
|
|
927
|
-
Priority?: number;
|
|
928
|
-
AwsRegion?: string;
|
|
928
|
+
SipMediaApplicationId?: string | undefined;
|
|
929
|
+
Priority?: number | undefined;
|
|
930
|
+
AwsRegion?: string | undefined;
|
|
929
931
|
}
|
|
930
932
|
export declare const SipRuleTriggerType: {
|
|
931
933
|
readonly RequestUriHostname: "RequestUriHostname";
|
|
@@ -937,27 +939,27 @@ export interface CreateSipRuleRequest {
|
|
|
937
939
|
Name: string | undefined;
|
|
938
940
|
TriggerType: SipRuleTriggerType | undefined;
|
|
939
941
|
TriggerValue: string | undefined;
|
|
940
|
-
Disabled?: boolean;
|
|
942
|
+
Disabled?: boolean | undefined;
|
|
941
943
|
TargetApplications: SipRuleTargetApplication[] | undefined;
|
|
942
944
|
}
|
|
943
945
|
export interface SipRule {
|
|
944
|
-
SipRuleId?: string;
|
|
945
|
-
Name?: string;
|
|
946
|
-
Disabled?: boolean;
|
|
947
|
-
TriggerType?: SipRuleTriggerType;
|
|
948
|
-
TriggerValue?: string;
|
|
949
|
-
TargetApplications?: SipRuleTargetApplication[];
|
|
950
|
-
CreatedTimestamp?: Date;
|
|
951
|
-
UpdatedTimestamp?: Date;
|
|
946
|
+
SipRuleId?: string | undefined;
|
|
947
|
+
Name?: string | undefined;
|
|
948
|
+
Disabled?: boolean | undefined;
|
|
949
|
+
TriggerType?: SipRuleTriggerType | undefined;
|
|
950
|
+
TriggerValue?: string | undefined;
|
|
951
|
+
TargetApplications?: SipRuleTargetApplication[] | undefined;
|
|
952
|
+
CreatedTimestamp?: Date | undefined;
|
|
953
|
+
UpdatedTimestamp?: Date | undefined;
|
|
952
954
|
}
|
|
953
955
|
export interface CreateSipRuleResponse {
|
|
954
|
-
SipRule?: SipRule;
|
|
956
|
+
SipRule?: SipRule | undefined;
|
|
955
957
|
}
|
|
956
958
|
export interface CreateUserRequest {
|
|
957
959
|
AccountId: string | undefined;
|
|
958
|
-
Username?: string;
|
|
959
|
-
Email?: string;
|
|
960
|
-
UserType?: UserType;
|
|
960
|
+
Username?: string | undefined;
|
|
961
|
+
Email?: string | undefined;
|
|
962
|
+
UserType?: UserType | undefined;
|
|
961
963
|
}
|
|
962
964
|
export declare const InviteStatus: {
|
|
963
965
|
readonly Accepted: "Accepted";
|
|
@@ -974,21 +976,21 @@ export type RegistrationStatus =
|
|
|
974
976
|
(typeof RegistrationStatus)[keyof typeof RegistrationStatus];
|
|
975
977
|
export interface User {
|
|
976
978
|
UserId: string | undefined;
|
|
977
|
-
AccountId?: string;
|
|
978
|
-
PrimaryEmail?: string;
|
|
979
|
-
PrimaryProvisionedNumber?: string;
|
|
980
|
-
DisplayName?: string;
|
|
981
|
-
LicenseType?: License;
|
|
982
|
-
UserType?: UserType;
|
|
983
|
-
UserRegistrationStatus?: RegistrationStatus;
|
|
984
|
-
UserInvitationStatus?: InviteStatus;
|
|
985
|
-
RegisteredOn?: Date;
|
|
986
|
-
InvitedOn?: Date;
|
|
987
|
-
AlexaForBusinessMetadata?: AlexaForBusinessMetadata;
|
|
988
|
-
PersonalPIN?: string;
|
|
979
|
+
AccountId?: string | undefined;
|
|
980
|
+
PrimaryEmail?: string | undefined;
|
|
981
|
+
PrimaryProvisionedNumber?: string | undefined;
|
|
982
|
+
DisplayName?: string | undefined;
|
|
983
|
+
LicenseType?: License | undefined;
|
|
984
|
+
UserType?: UserType | undefined;
|
|
985
|
+
UserRegistrationStatus?: RegistrationStatus | undefined;
|
|
986
|
+
UserInvitationStatus?: InviteStatus | undefined;
|
|
987
|
+
RegisteredOn?: Date | undefined;
|
|
988
|
+
InvitedOn?: Date | undefined;
|
|
989
|
+
AlexaForBusinessMetadata?: AlexaForBusinessMetadata | undefined;
|
|
990
|
+
PersonalPIN?: string | undefined;
|
|
989
991
|
}
|
|
990
992
|
export interface CreateUserResponse {
|
|
991
|
-
User?: User;
|
|
993
|
+
User?: User | undefined;
|
|
992
994
|
}
|
|
993
995
|
export declare const VoiceConnectorAwsRegion: {
|
|
994
996
|
readonly US_EAST_1: "us-east-1";
|
|
@@ -998,21 +1000,21 @@ export type VoiceConnectorAwsRegion =
|
|
|
998
1000
|
(typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
|
|
999
1001
|
export interface CreateVoiceConnectorRequest {
|
|
1000
1002
|
Name: string | undefined;
|
|
1001
|
-
AwsRegion?: VoiceConnectorAwsRegion;
|
|
1003
|
+
AwsRegion?: VoiceConnectorAwsRegion | undefined;
|
|
1002
1004
|
RequireEncryption: boolean | undefined;
|
|
1003
1005
|
}
|
|
1004
1006
|
export interface VoiceConnector {
|
|
1005
|
-
VoiceConnectorId?: string;
|
|
1006
|
-
AwsRegion?: VoiceConnectorAwsRegion;
|
|
1007
|
-
Name?: string;
|
|
1008
|
-
OutboundHostName?: string;
|
|
1009
|
-
RequireEncryption?: boolean;
|
|
1010
|
-
CreatedTimestamp?: Date;
|
|
1011
|
-
UpdatedTimestamp?: Date;
|
|
1012
|
-
VoiceConnectorArn?: string;
|
|
1007
|
+
VoiceConnectorId?: string | undefined;
|
|
1008
|
+
AwsRegion?: VoiceConnectorAwsRegion | undefined;
|
|
1009
|
+
Name?: string | undefined;
|
|
1010
|
+
OutboundHostName?: string | undefined;
|
|
1011
|
+
RequireEncryption?: boolean | undefined;
|
|
1012
|
+
CreatedTimestamp?: Date | undefined;
|
|
1013
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1014
|
+
VoiceConnectorArn?: string | undefined;
|
|
1013
1015
|
}
|
|
1014
1016
|
export interface CreateVoiceConnectorResponse {
|
|
1015
|
-
VoiceConnector?: VoiceConnector;
|
|
1017
|
+
VoiceConnector?: VoiceConnector | undefined;
|
|
1016
1018
|
}
|
|
1017
1019
|
export interface VoiceConnectorItem {
|
|
1018
1020
|
VoiceConnectorId: string | undefined;
|
|
@@ -1020,22 +1022,22 @@ export interface VoiceConnectorItem {
|
|
|
1020
1022
|
}
|
|
1021
1023
|
export interface CreateVoiceConnectorGroupRequest {
|
|
1022
1024
|
Name: string | undefined;
|
|
1023
|
-
VoiceConnectorItems?: VoiceConnectorItem[];
|
|
1025
|
+
VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
|
|
1024
1026
|
}
|
|
1025
1027
|
export interface VoiceConnectorGroup {
|
|
1026
|
-
VoiceConnectorGroupId?: string;
|
|
1027
|
-
Name?: string;
|
|
1028
|
-
VoiceConnectorItems?: VoiceConnectorItem[];
|
|
1029
|
-
CreatedTimestamp?: Date;
|
|
1030
|
-
UpdatedTimestamp?: Date;
|
|
1031
|
-
VoiceConnectorGroupArn?: string;
|
|
1028
|
+
VoiceConnectorGroupId?: string | undefined;
|
|
1029
|
+
Name?: string | undefined;
|
|
1030
|
+
VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
|
|
1031
|
+
CreatedTimestamp?: Date | undefined;
|
|
1032
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1033
|
+
VoiceConnectorGroupArn?: string | undefined;
|
|
1032
1034
|
}
|
|
1033
1035
|
export interface CreateVoiceConnectorGroupResponse {
|
|
1034
|
-
VoiceConnectorGroup?: VoiceConnectorGroup;
|
|
1036
|
+
VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
|
|
1035
1037
|
}
|
|
1036
1038
|
export interface Credential {
|
|
1037
|
-
Username?: string;
|
|
1038
|
-
Password?: string;
|
|
1039
|
+
Username?: string | undefined;
|
|
1040
|
+
Password?: string | undefined;
|
|
1039
1041
|
}
|
|
1040
1042
|
export interface DeleteAccountRequest {
|
|
1041
1043
|
AccountId: string | undefined;
|
|
@@ -1044,8 +1046,8 @@ export interface DeleteAccountResponse {}
|
|
|
1044
1046
|
export declare class UnprocessableEntityException extends __BaseException {
|
|
1045
1047
|
readonly name: "UnprocessableEntityException";
|
|
1046
1048
|
readonly $fault: "client";
|
|
1047
|
-
Code?: ErrorCode;
|
|
1048
|
-
Message?: string;
|
|
1049
|
+
Code?: ErrorCode | undefined;
|
|
1050
|
+
Message?: string | undefined;
|
|
1049
1051
|
constructor(
|
|
1050
1052
|
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
1051
1053
|
);
|
|
@@ -1069,27 +1071,27 @@ export interface DeleteAttendeeRequest {
|
|
|
1069
1071
|
}
|
|
1070
1072
|
export interface DeleteChannelRequest {
|
|
1071
1073
|
ChannelArn: string | undefined;
|
|
1072
|
-
ChimeBearer?: string;
|
|
1074
|
+
ChimeBearer?: string | undefined;
|
|
1073
1075
|
}
|
|
1074
1076
|
export interface DeleteChannelBanRequest {
|
|
1075
1077
|
ChannelArn: string | undefined;
|
|
1076
1078
|
MemberArn: string | undefined;
|
|
1077
|
-
ChimeBearer?: string;
|
|
1079
|
+
ChimeBearer?: string | undefined;
|
|
1078
1080
|
}
|
|
1079
1081
|
export interface DeleteChannelMembershipRequest {
|
|
1080
1082
|
ChannelArn: string | undefined;
|
|
1081
1083
|
MemberArn: string | undefined;
|
|
1082
|
-
ChimeBearer?: string;
|
|
1084
|
+
ChimeBearer?: string | undefined;
|
|
1083
1085
|
}
|
|
1084
1086
|
export interface DeleteChannelMessageRequest {
|
|
1085
1087
|
ChannelArn: string | undefined;
|
|
1086
1088
|
MessageId: string | undefined;
|
|
1087
|
-
ChimeBearer?: string;
|
|
1089
|
+
ChimeBearer?: string | undefined;
|
|
1088
1090
|
}
|
|
1089
1091
|
export interface DeleteChannelModeratorRequest {
|
|
1090
1092
|
ChannelArn: string | undefined;
|
|
1091
1093
|
ChannelModeratorArn: string | undefined;
|
|
1092
|
-
ChimeBearer?: string;
|
|
1094
|
+
ChimeBearer?: string | undefined;
|
|
1093
1095
|
}
|
|
1094
1096
|
export interface DeleteEventsConfigurationRequest {
|
|
1095
1097
|
AccountId: string | undefined;
|
|
@@ -1152,67 +1154,67 @@ export interface DescribeAppInstanceRequest {
|
|
|
1152
1154
|
AppInstanceArn: string | undefined;
|
|
1153
1155
|
}
|
|
1154
1156
|
export interface DescribeAppInstanceResponse {
|
|
1155
|
-
AppInstance?: AppInstance;
|
|
1157
|
+
AppInstance?: AppInstance | undefined;
|
|
1156
1158
|
}
|
|
1157
1159
|
export interface DescribeAppInstanceAdminRequest {
|
|
1158
1160
|
AppInstanceAdminArn: string | undefined;
|
|
1159
1161
|
AppInstanceArn: string | undefined;
|
|
1160
1162
|
}
|
|
1161
1163
|
export interface DescribeAppInstanceAdminResponse {
|
|
1162
|
-
AppInstanceAdmin?: AppInstanceAdmin;
|
|
1164
|
+
AppInstanceAdmin?: AppInstanceAdmin | undefined;
|
|
1163
1165
|
}
|
|
1164
1166
|
export interface DescribeAppInstanceUserRequest {
|
|
1165
1167
|
AppInstanceUserArn: string | undefined;
|
|
1166
1168
|
}
|
|
1167
1169
|
export interface DescribeAppInstanceUserResponse {
|
|
1168
|
-
AppInstanceUser?: AppInstanceUser;
|
|
1170
|
+
AppInstanceUser?: AppInstanceUser | undefined;
|
|
1169
1171
|
}
|
|
1170
1172
|
export interface DescribeChannelRequest {
|
|
1171
1173
|
ChannelArn: string | undefined;
|
|
1172
|
-
ChimeBearer?: string;
|
|
1174
|
+
ChimeBearer?: string | undefined;
|
|
1173
1175
|
}
|
|
1174
1176
|
export interface DescribeChannelResponse {
|
|
1175
|
-
Channel?: Channel;
|
|
1177
|
+
Channel?: Channel | undefined;
|
|
1176
1178
|
}
|
|
1177
1179
|
export interface DescribeChannelBanRequest {
|
|
1178
1180
|
ChannelArn: string | undefined;
|
|
1179
1181
|
MemberArn: string | undefined;
|
|
1180
|
-
ChimeBearer?: string;
|
|
1182
|
+
ChimeBearer?: string | undefined;
|
|
1181
1183
|
}
|
|
1182
1184
|
export interface DescribeChannelBanResponse {
|
|
1183
|
-
ChannelBan?: ChannelBan;
|
|
1185
|
+
ChannelBan?: ChannelBan | undefined;
|
|
1184
1186
|
}
|
|
1185
1187
|
export interface DescribeChannelMembershipRequest {
|
|
1186
1188
|
ChannelArn: string | undefined;
|
|
1187
1189
|
MemberArn: string | undefined;
|
|
1188
|
-
ChimeBearer?: string;
|
|
1190
|
+
ChimeBearer?: string | undefined;
|
|
1189
1191
|
}
|
|
1190
1192
|
export interface DescribeChannelMembershipResponse {
|
|
1191
|
-
ChannelMembership?: ChannelMembership;
|
|
1193
|
+
ChannelMembership?: ChannelMembership | undefined;
|
|
1192
1194
|
}
|
|
1193
1195
|
export interface DescribeChannelMembershipForAppInstanceUserRequest {
|
|
1194
1196
|
ChannelArn: string | undefined;
|
|
1195
1197
|
AppInstanceUserArn: string | undefined;
|
|
1196
|
-
ChimeBearer?: string;
|
|
1198
|
+
ChimeBearer?: string | undefined;
|
|
1197
1199
|
}
|
|
1198
1200
|
export interface DescribeChannelMembershipForAppInstanceUserResponse {
|
|
1199
|
-
ChannelMembership?: ChannelMembershipForAppInstanceUserSummary;
|
|
1201
|
+
ChannelMembership?: ChannelMembershipForAppInstanceUserSummary | undefined;
|
|
1200
1202
|
}
|
|
1201
1203
|
export interface DescribeChannelModeratedByAppInstanceUserRequest {
|
|
1202
1204
|
ChannelArn: string | undefined;
|
|
1203
1205
|
AppInstanceUserArn: string | undefined;
|
|
1204
|
-
ChimeBearer?: string;
|
|
1206
|
+
ChimeBearer?: string | undefined;
|
|
1205
1207
|
}
|
|
1206
1208
|
export interface DescribeChannelModeratedByAppInstanceUserResponse {
|
|
1207
|
-
Channel?: ChannelModeratedByAppInstanceUserSummary;
|
|
1209
|
+
Channel?: ChannelModeratedByAppInstanceUserSummary | undefined;
|
|
1208
1210
|
}
|
|
1209
1211
|
export interface DescribeChannelModeratorRequest {
|
|
1210
1212
|
ChannelArn: string | undefined;
|
|
1211
1213
|
ChannelModeratorArn: string | undefined;
|
|
1212
|
-
ChimeBearer?: string;
|
|
1214
|
+
ChimeBearer?: string | undefined;
|
|
1213
1215
|
}
|
|
1214
1216
|
export interface DescribeChannelModeratorResponse {
|
|
1215
|
-
ChannelModerator?: ChannelModerator;
|
|
1217
|
+
ChannelModerator?: ChannelModerator | undefined;
|
|
1216
1218
|
}
|
|
1217
1219
|
export interface DisassociatePhoneNumberFromUserRequest {
|
|
1218
1220
|
AccountId: string | undefined;
|
|
@@ -1224,14 +1226,14 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorRequest {
|
|
|
1224
1226
|
E164PhoneNumbers: string[] | undefined;
|
|
1225
1227
|
}
|
|
1226
1228
|
export interface DisassociatePhoneNumbersFromVoiceConnectorResponse {
|
|
1227
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
1229
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
1228
1230
|
}
|
|
1229
1231
|
export interface DisassociatePhoneNumbersFromVoiceConnectorGroupRequest {
|
|
1230
1232
|
VoiceConnectorGroupId: string | undefined;
|
|
1231
1233
|
E164PhoneNumbers: string[] | undefined;
|
|
1232
1234
|
}
|
|
1233
1235
|
export interface DisassociatePhoneNumbersFromVoiceConnectorGroupResponse {
|
|
1234
|
-
PhoneNumberErrors?: PhoneNumberError[];
|
|
1236
|
+
PhoneNumberErrors?: PhoneNumberError[] | undefined;
|
|
1235
1237
|
}
|
|
1236
1238
|
export interface DisassociateSigninDelegateGroupsFromAccountRequest {
|
|
1237
1239
|
AccountId: string | undefined;
|
|
@@ -1240,7 +1242,7 @@ export interface DisassociateSigninDelegateGroupsFromAccountRequest {
|
|
|
1240
1242
|
export interface DisassociateSigninDelegateGroupsFromAccountResponse {}
|
|
1241
1243
|
export interface DNISEmergencyCallingConfiguration {
|
|
1242
1244
|
EmergencyPhoneNumber: string | undefined;
|
|
1243
|
-
TestPhoneNumber?: string;
|
|
1245
|
+
TestPhoneNumber?: string | undefined;
|
|
1244
1246
|
CallingCountry: string | undefined;
|
|
1245
1247
|
}
|
|
1246
1248
|
export declare const EmailStatus: {
|
|
@@ -1250,7 +1252,7 @@ export declare const EmailStatus: {
|
|
|
1250
1252
|
};
|
|
1251
1253
|
export type EmailStatus = (typeof EmailStatus)[keyof typeof EmailStatus];
|
|
1252
1254
|
export interface EmergencyCallingConfiguration {
|
|
1253
|
-
DNIS?: DNISEmergencyCallingConfiguration[];
|
|
1255
|
+
DNIS?: DNISEmergencyCallingConfiguration[] | undefined;
|
|
1254
1256
|
}
|
|
1255
1257
|
export declare const TranscribeMedicalContentIdentificationType: {
|
|
1256
1258
|
readonly PHI: "PHI";
|
|
@@ -1293,9 +1295,11 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
1293
1295
|
LanguageCode: TranscribeMedicalLanguageCode | undefined;
|
|
1294
1296
|
Specialty: TranscribeMedicalSpecialty | undefined;
|
|
1295
1297
|
Type: TranscribeMedicalType | undefined;
|
|
1296
|
-
VocabularyName?: string;
|
|
1297
|
-
Region?: TranscribeMedicalRegion;
|
|
1298
|
-
ContentIdentificationType?:
|
|
1298
|
+
VocabularyName?: string | undefined;
|
|
1299
|
+
Region?: TranscribeMedicalRegion | undefined;
|
|
1300
|
+
ContentIdentificationType?:
|
|
1301
|
+
| TranscribeMedicalContentIdentificationType
|
|
1302
|
+
| undefined;
|
|
1299
1303
|
}
|
|
1300
1304
|
export declare const TranscribeContentIdentificationType: {
|
|
1301
1305
|
readonly PII: "PII";
|
|
@@ -1356,107 +1360,109 @@ export declare const TranscribeVocabularyFilterMethod: {
|
|
|
1356
1360
|
export type TranscribeVocabularyFilterMethod =
|
|
1357
1361
|
(typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
|
|
1358
1362
|
export interface EngineTranscribeSettings {
|
|
1359
|
-
LanguageCode?: TranscribeLanguageCode;
|
|
1360
|
-
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
|
|
1361
|
-
VocabularyFilterName?: string;
|
|
1362
|
-
VocabularyName?: string;
|
|
1363
|
-
Region?: TranscribeRegion;
|
|
1364
|
-
EnablePartialResultsStabilization?: boolean;
|
|
1365
|
-
PartialResultsStability?: TranscribePartialResultsStability;
|
|
1366
|
-
ContentIdentificationType?: TranscribeContentIdentificationType;
|
|
1367
|
-
ContentRedactionType?: TranscribeContentRedactionType;
|
|
1368
|
-
PiiEntityTypes?: string;
|
|
1369
|
-
LanguageModelName?: string;
|
|
1370
|
-
IdentifyLanguage?: boolean;
|
|
1371
|
-
LanguageOptions?: string;
|
|
1372
|
-
PreferredLanguage?: TranscribeLanguageCode;
|
|
1373
|
-
VocabularyNames?: string;
|
|
1374
|
-
VocabularyFilterNames?: string;
|
|
1363
|
+
LanguageCode?: TranscribeLanguageCode | undefined;
|
|
1364
|
+
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | undefined;
|
|
1365
|
+
VocabularyFilterName?: string | undefined;
|
|
1366
|
+
VocabularyName?: string | undefined;
|
|
1367
|
+
Region?: TranscribeRegion | undefined;
|
|
1368
|
+
EnablePartialResultsStabilization?: boolean | undefined;
|
|
1369
|
+
PartialResultsStability?: TranscribePartialResultsStability | undefined;
|
|
1370
|
+
ContentIdentificationType?: TranscribeContentIdentificationType | undefined;
|
|
1371
|
+
ContentRedactionType?: TranscribeContentRedactionType | undefined;
|
|
1372
|
+
PiiEntityTypes?: string | undefined;
|
|
1373
|
+
LanguageModelName?: string | undefined;
|
|
1374
|
+
IdentifyLanguage?: boolean | undefined;
|
|
1375
|
+
LanguageOptions?: string | undefined;
|
|
1376
|
+
PreferredLanguage?: TranscribeLanguageCode | undefined;
|
|
1377
|
+
VocabularyNames?: string | undefined;
|
|
1378
|
+
VocabularyFilterNames?: string | undefined;
|
|
1375
1379
|
}
|
|
1376
1380
|
export interface EventsConfiguration {
|
|
1377
|
-
BotId?: string;
|
|
1378
|
-
OutboundEventsHTTPSEndpoint?: string;
|
|
1379
|
-
LambdaFunctionArn?: string;
|
|
1381
|
+
BotId?: string | undefined;
|
|
1382
|
+
OutboundEventsHTTPSEndpoint?: string | undefined;
|
|
1383
|
+
LambdaFunctionArn?: string | undefined;
|
|
1380
1384
|
}
|
|
1381
1385
|
export interface GetAccountRequest {
|
|
1382
1386
|
AccountId: string | undefined;
|
|
1383
1387
|
}
|
|
1384
1388
|
export interface GetAccountResponse {
|
|
1385
|
-
Account?: Account;
|
|
1389
|
+
Account?: Account | undefined;
|
|
1386
1390
|
}
|
|
1387
1391
|
export interface GetAccountSettingsRequest {
|
|
1388
1392
|
AccountId: string | undefined;
|
|
1389
1393
|
}
|
|
1390
1394
|
export interface GetAccountSettingsResponse {
|
|
1391
|
-
AccountSettings?: AccountSettings;
|
|
1395
|
+
AccountSettings?: AccountSettings | undefined;
|
|
1392
1396
|
}
|
|
1393
1397
|
export interface GetAppInstanceRetentionSettingsRequest {
|
|
1394
1398
|
AppInstanceArn: string | undefined;
|
|
1395
1399
|
}
|
|
1396
1400
|
export interface GetAppInstanceRetentionSettingsResponse {
|
|
1397
|
-
AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
|
|
1398
|
-
InitiateDeletionTimestamp?: Date;
|
|
1401
|
+
AppInstanceRetentionSettings?: AppInstanceRetentionSettings | undefined;
|
|
1402
|
+
InitiateDeletionTimestamp?: Date | undefined;
|
|
1399
1403
|
}
|
|
1400
1404
|
export interface GetAppInstanceStreamingConfigurationsRequest {
|
|
1401
1405
|
AppInstanceArn: string | undefined;
|
|
1402
1406
|
}
|
|
1403
1407
|
export interface GetAppInstanceStreamingConfigurationsResponse {
|
|
1404
|
-
AppInstanceStreamingConfigurations?:
|
|
1408
|
+
AppInstanceStreamingConfigurations?:
|
|
1409
|
+
| AppInstanceStreamingConfiguration[]
|
|
1410
|
+
| undefined;
|
|
1405
1411
|
}
|
|
1406
1412
|
export interface GetAttendeeRequest {
|
|
1407
1413
|
MeetingId: string | undefined;
|
|
1408
1414
|
AttendeeId: string | undefined;
|
|
1409
1415
|
}
|
|
1410
1416
|
export interface GetAttendeeResponse {
|
|
1411
|
-
Attendee?: Attendee;
|
|
1417
|
+
Attendee?: Attendee | undefined;
|
|
1412
1418
|
}
|
|
1413
1419
|
export interface GetBotRequest {
|
|
1414
1420
|
AccountId: string | undefined;
|
|
1415
1421
|
BotId: string | undefined;
|
|
1416
1422
|
}
|
|
1417
1423
|
export interface GetBotResponse {
|
|
1418
|
-
Bot?: Bot;
|
|
1424
|
+
Bot?: Bot | undefined;
|
|
1419
1425
|
}
|
|
1420
1426
|
export interface GetChannelMessageRequest {
|
|
1421
1427
|
ChannelArn: string | undefined;
|
|
1422
1428
|
MessageId: string | undefined;
|
|
1423
|
-
ChimeBearer?: string;
|
|
1429
|
+
ChimeBearer?: string | undefined;
|
|
1424
1430
|
}
|
|
1425
1431
|
export interface GetChannelMessageResponse {
|
|
1426
|
-
ChannelMessage?: ChannelMessage;
|
|
1432
|
+
ChannelMessage?: ChannelMessage | undefined;
|
|
1427
1433
|
}
|
|
1428
1434
|
export interface GetEventsConfigurationRequest {
|
|
1429
1435
|
AccountId: string | undefined;
|
|
1430
1436
|
BotId: string | undefined;
|
|
1431
1437
|
}
|
|
1432
1438
|
export interface GetEventsConfigurationResponse {
|
|
1433
|
-
EventsConfiguration?: EventsConfiguration;
|
|
1439
|
+
EventsConfiguration?: EventsConfiguration | undefined;
|
|
1434
1440
|
}
|
|
1435
1441
|
export interface VoiceConnectorSettings {
|
|
1436
|
-
CdrBucket?: string;
|
|
1442
|
+
CdrBucket?: string | undefined;
|
|
1437
1443
|
}
|
|
1438
1444
|
export interface GetGlobalSettingsResponse {
|
|
1439
|
-
BusinessCalling?: BusinessCallingSettings;
|
|
1440
|
-
VoiceConnector?: VoiceConnectorSettings;
|
|
1445
|
+
BusinessCalling?: BusinessCallingSettings | undefined;
|
|
1446
|
+
VoiceConnector?: VoiceConnectorSettings | undefined;
|
|
1441
1447
|
}
|
|
1442
1448
|
export interface GetMediaCapturePipelineRequest {
|
|
1443
1449
|
MediaPipelineId: string | undefined;
|
|
1444
1450
|
}
|
|
1445
1451
|
export interface GetMediaCapturePipelineResponse {
|
|
1446
|
-
MediaCapturePipeline?: MediaCapturePipeline;
|
|
1452
|
+
MediaCapturePipeline?: MediaCapturePipeline | undefined;
|
|
1447
1453
|
}
|
|
1448
1454
|
export interface GetMeetingRequest {
|
|
1449
1455
|
MeetingId: string | undefined;
|
|
1450
1456
|
}
|
|
1451
1457
|
export interface GetMeetingResponse {
|
|
1452
|
-
Meeting?: Meeting;
|
|
1458
|
+
Meeting?: Meeting | undefined;
|
|
1453
1459
|
}
|
|
1454
1460
|
export interface GetMessagingSessionEndpointRequest {}
|
|
1455
1461
|
export interface MessagingSessionEndpoint {
|
|
1456
|
-
Url?: string;
|
|
1462
|
+
Url?: string | undefined;
|
|
1457
1463
|
}
|
|
1458
1464
|
export interface GetMessagingSessionEndpointResponse {
|
|
1459
|
-
Endpoint?: MessagingSessionEndpoint;
|
|
1465
|
+
Endpoint?: MessagingSessionEndpoint | undefined;
|
|
1460
1466
|
}
|
|
1461
1467
|
export interface GetPhoneNumberRequest {
|
|
1462
1468
|
PhoneNumberId: string | undefined;
|
|
@@ -1471,17 +1477,17 @@ export declare const PhoneNumberAssociationName: {
|
|
|
1471
1477
|
export type PhoneNumberAssociationName =
|
|
1472
1478
|
(typeof PhoneNumberAssociationName)[keyof typeof PhoneNumberAssociationName];
|
|
1473
1479
|
export interface PhoneNumberAssociation {
|
|
1474
|
-
Value?: string;
|
|
1475
|
-
Name?: PhoneNumberAssociationName;
|
|
1476
|
-
AssociatedTimestamp?: Date;
|
|
1480
|
+
Value?: string | undefined;
|
|
1481
|
+
Name?: PhoneNumberAssociationName | undefined;
|
|
1482
|
+
AssociatedTimestamp?: Date | undefined;
|
|
1477
1483
|
}
|
|
1478
1484
|
export interface PhoneNumberCapabilities {
|
|
1479
|
-
InboundCall?: boolean;
|
|
1480
|
-
OutboundCall?: boolean;
|
|
1481
|
-
InboundSMS?: boolean;
|
|
1482
|
-
OutboundSMS?: boolean;
|
|
1483
|
-
InboundMMS?: boolean;
|
|
1484
|
-
OutboundMMS?: boolean;
|
|
1485
|
+
InboundCall?: boolean | undefined;
|
|
1486
|
+
OutboundCall?: boolean | undefined;
|
|
1487
|
+
InboundSMS?: boolean | undefined;
|
|
1488
|
+
OutboundSMS?: boolean | undefined;
|
|
1489
|
+
InboundMMS?: boolean | undefined;
|
|
1490
|
+
OutboundMMS?: boolean | undefined;
|
|
1485
1491
|
}
|
|
1486
1492
|
export declare const PhoneNumberStatus: {
|
|
1487
1493
|
readonly AcquireFailed: "AcquireFailed";
|
|
@@ -1502,39 +1508,39 @@ export declare const PhoneNumberType: {
|
|
|
1502
1508
|
export type PhoneNumberType =
|
|
1503
1509
|
(typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
1504
1510
|
export interface PhoneNumber {
|
|
1505
|
-
PhoneNumberId?: string;
|
|
1506
|
-
E164PhoneNumber?: string;
|
|
1507
|
-
Country?: string;
|
|
1508
|
-
Type?: PhoneNumberType;
|
|
1509
|
-
ProductType?: PhoneNumberProductType;
|
|
1510
|
-
Status?: PhoneNumberStatus;
|
|
1511
|
-
Capabilities?: PhoneNumberCapabilities;
|
|
1512
|
-
Associations?: PhoneNumberAssociation[];
|
|
1513
|
-
CallingName?: string;
|
|
1514
|
-
CallingNameStatus?: CallingNameStatus;
|
|
1515
|
-
CreatedTimestamp?: Date;
|
|
1516
|
-
UpdatedTimestamp?: Date;
|
|
1517
|
-
DeletionTimestamp?: Date;
|
|
1511
|
+
PhoneNumberId?: string | undefined;
|
|
1512
|
+
E164PhoneNumber?: string | undefined;
|
|
1513
|
+
Country?: string | undefined;
|
|
1514
|
+
Type?: PhoneNumberType | undefined;
|
|
1515
|
+
ProductType?: PhoneNumberProductType | undefined;
|
|
1516
|
+
Status?: PhoneNumberStatus | undefined;
|
|
1517
|
+
Capabilities?: PhoneNumberCapabilities | undefined;
|
|
1518
|
+
Associations?: PhoneNumberAssociation[] | undefined;
|
|
1519
|
+
CallingName?: string | undefined;
|
|
1520
|
+
CallingNameStatus?: CallingNameStatus | undefined;
|
|
1521
|
+
CreatedTimestamp?: Date | undefined;
|
|
1522
|
+
UpdatedTimestamp?: Date | undefined;
|
|
1523
|
+
DeletionTimestamp?: Date | undefined;
|
|
1518
1524
|
}
|
|
1519
1525
|
export interface GetPhoneNumberResponse {
|
|
1520
|
-
PhoneNumber?: PhoneNumber;
|
|
1526
|
+
PhoneNumber?: PhoneNumber | undefined;
|
|
1521
1527
|
}
|
|
1522
1528
|
export interface GetPhoneNumberOrderRequest {
|
|
1523
1529
|
PhoneNumberOrderId: string | undefined;
|
|
1524
1530
|
}
|
|
1525
1531
|
export interface GetPhoneNumberOrderResponse {
|
|
1526
|
-
PhoneNumberOrder?: PhoneNumberOrder;
|
|
1532
|
+
PhoneNumberOrder?: PhoneNumberOrder | undefined;
|
|
1527
1533
|
}
|
|
1528
1534
|
export interface GetPhoneNumberSettingsResponse {
|
|
1529
|
-
CallingName?: string;
|
|
1530
|
-
CallingNameUpdatedTimestamp?: Date;
|
|
1535
|
+
CallingName?: string | undefined;
|
|
1536
|
+
CallingNameUpdatedTimestamp?: Date | undefined;
|
|
1531
1537
|
}
|
|
1532
1538
|
export interface GetProxySessionRequest {
|
|
1533
1539
|
VoiceConnectorId: string | undefined;
|
|
1534
1540
|
ProxySessionId: string | undefined;
|
|
1535
1541
|
}
|
|
1536
1542
|
export interface GetProxySessionResponse {
|
|
1537
|
-
ProxySession?: ProxySession;
|
|
1543
|
+
ProxySession?: ProxySession | undefined;
|
|
1538
1544
|
}
|
|
1539
1545
|
export interface GetRetentionSettingsRequest {
|
|
1540
1546
|
AccountId: string | undefined;
|