@aws-sdk/client-chime-sdk-meetings 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ChimeSDKMeetingsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +115 -1
- package/dist-cjs/protocols/Aws_restJson1.js +139 -458
- package/dist-es/index.js +1 -0
- package/dist-es/models/ChimeSDKMeetingsServiceException.js +12 -0
- package/dist-es/models/models_0.js +108 -1
- package/dist-es/protocols/Aws_restJson1.js +261 -510
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ChimeSDKMeetingsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +60 -0
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +84 -0
- package/dist-types/ts3.4/commands/BatchCreateAttendeeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateAttendeeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMeetingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMeetingWithAttendeesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAttendeeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMeetingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAttendeeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMeetingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAttendeesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartMeetingTranscriptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopMeetingTranscriptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/ChimeSDKMeetingsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +511 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAttendeesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +35 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
|
+
|
|
4
|
+
export interface Attendee {
|
|
5
|
+
|
|
6
|
+
ExternalUserId?: string;
|
|
7
|
+
|
|
8
|
+
AttendeeId?: string;
|
|
9
|
+
|
|
10
|
+
JoinToken?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace Attendee {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: Attendee) => any;
|
|
15
|
+
}
|
|
16
|
+
export declare enum MeetingFeatureStatus {
|
|
17
|
+
AVAILABLE = "AVAILABLE",
|
|
18
|
+
UNAVAILABLE = "UNAVAILABLE"
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface AudioFeatures {
|
|
22
|
+
|
|
23
|
+
EchoReduction?: MeetingFeatureStatus | string;
|
|
24
|
+
}
|
|
25
|
+
export declare namespace AudioFeatures {
|
|
26
|
+
|
|
27
|
+
const filterSensitiveLog: (obj: AudioFeatures) => any;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export declare class BadRequestException extends __BaseException {
|
|
31
|
+
readonly name: "BadRequestException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
Code?: string;
|
|
34
|
+
Message?: string;
|
|
35
|
+
|
|
36
|
+
RequestId?: string;
|
|
37
|
+
|
|
38
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface CreateAttendeeRequestItem {
|
|
42
|
+
|
|
43
|
+
ExternalUserId: string | undefined;
|
|
44
|
+
}
|
|
45
|
+
export declare namespace CreateAttendeeRequestItem {
|
|
46
|
+
|
|
47
|
+
const filterSensitiveLog: (obj: CreateAttendeeRequestItem) => any;
|
|
48
|
+
}
|
|
49
|
+
export interface BatchCreateAttendeeRequest {
|
|
50
|
+
|
|
51
|
+
MeetingId: string | undefined;
|
|
52
|
+
|
|
53
|
+
Attendees: CreateAttendeeRequestItem[] | undefined;
|
|
54
|
+
}
|
|
55
|
+
export declare namespace BatchCreateAttendeeRequest {
|
|
56
|
+
|
|
57
|
+
const filterSensitiveLog: (obj: BatchCreateAttendeeRequest) => any;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export interface CreateAttendeeError {
|
|
61
|
+
|
|
62
|
+
ExternalUserId?: string;
|
|
63
|
+
|
|
64
|
+
ErrorCode?: string;
|
|
65
|
+
|
|
66
|
+
ErrorMessage?: string;
|
|
67
|
+
}
|
|
68
|
+
export declare namespace CreateAttendeeError {
|
|
69
|
+
|
|
70
|
+
const filterSensitiveLog: (obj: CreateAttendeeError) => any;
|
|
71
|
+
}
|
|
72
|
+
export interface BatchCreateAttendeeResponse {
|
|
73
|
+
|
|
74
|
+
Attendees?: Attendee[];
|
|
75
|
+
|
|
76
|
+
Errors?: CreateAttendeeError[];
|
|
77
|
+
}
|
|
78
|
+
export declare namespace BatchCreateAttendeeResponse {
|
|
79
|
+
|
|
80
|
+
const filterSensitiveLog: (obj: BatchCreateAttendeeResponse) => any;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export declare class ForbiddenException extends __BaseException {
|
|
84
|
+
readonly name: "ForbiddenException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
Code?: string;
|
|
87
|
+
Message?: string;
|
|
88
|
+
|
|
89
|
+
RequestId?: string;
|
|
90
|
+
|
|
91
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export declare class LimitExceededException extends __BaseException {
|
|
95
|
+
readonly name: "LimitExceededException";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
Code?: string;
|
|
98
|
+
Message?: string;
|
|
99
|
+
|
|
100
|
+
RequestId?: string;
|
|
101
|
+
|
|
102
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export declare class NotFoundException extends __BaseException {
|
|
106
|
+
readonly name: "NotFoundException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
Code?: string;
|
|
109
|
+
Message?: string;
|
|
110
|
+
|
|
111
|
+
RequestId?: string;
|
|
112
|
+
|
|
113
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
117
|
+
readonly name: "ServiceUnavailableException";
|
|
118
|
+
readonly $fault: "server";
|
|
119
|
+
Code?: string;
|
|
120
|
+
Message?: string;
|
|
121
|
+
|
|
122
|
+
RequestId?: string;
|
|
123
|
+
|
|
124
|
+
RetryAfterSeconds?: string;
|
|
125
|
+
|
|
126
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
130
|
+
readonly name: "UnauthorizedException";
|
|
131
|
+
readonly $fault: "client";
|
|
132
|
+
Code?: string;
|
|
133
|
+
Message?: string;
|
|
134
|
+
|
|
135
|
+
RequestId?: string;
|
|
136
|
+
|
|
137
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
138
|
+
}
|
|
139
|
+
export interface CreateAttendeeRequest {
|
|
140
|
+
|
|
141
|
+
MeetingId: string | undefined;
|
|
142
|
+
|
|
143
|
+
ExternalUserId: string | undefined;
|
|
144
|
+
}
|
|
145
|
+
export declare namespace CreateAttendeeRequest {
|
|
146
|
+
|
|
147
|
+
const filterSensitiveLog: (obj: CreateAttendeeRequest) => any;
|
|
148
|
+
}
|
|
149
|
+
export interface CreateAttendeeResponse {
|
|
150
|
+
|
|
151
|
+
Attendee?: Attendee;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace CreateAttendeeResponse {
|
|
154
|
+
|
|
155
|
+
const filterSensitiveLog: (obj: CreateAttendeeResponse) => any;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export declare class UnprocessableEntityException extends __BaseException {
|
|
159
|
+
readonly name: "UnprocessableEntityException";
|
|
160
|
+
readonly $fault: "client";
|
|
161
|
+
Code?: string;
|
|
162
|
+
Message?: string;
|
|
163
|
+
|
|
164
|
+
RequestId?: string;
|
|
165
|
+
|
|
166
|
+
constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface MeetingFeaturesConfiguration {
|
|
170
|
+
|
|
171
|
+
Audio?: AudioFeatures;
|
|
172
|
+
}
|
|
173
|
+
export declare namespace MeetingFeaturesConfiguration {
|
|
174
|
+
|
|
175
|
+
const filterSensitiveLog: (obj: MeetingFeaturesConfiguration) => any;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface NotificationsConfiguration {
|
|
179
|
+
|
|
180
|
+
LambdaFunctionArn?: string;
|
|
181
|
+
|
|
182
|
+
SnsTopicArn?: string;
|
|
183
|
+
|
|
184
|
+
SqsQueueArn?: string;
|
|
185
|
+
}
|
|
186
|
+
export declare namespace NotificationsConfiguration {
|
|
187
|
+
|
|
188
|
+
const filterSensitiveLog: (obj: NotificationsConfiguration) => any;
|
|
189
|
+
}
|
|
190
|
+
export interface CreateMeetingRequest {
|
|
191
|
+
|
|
192
|
+
ClientRequestToken?: string;
|
|
193
|
+
|
|
194
|
+
MediaRegion: string | undefined;
|
|
195
|
+
|
|
196
|
+
MeetingHostId?: string;
|
|
197
|
+
|
|
198
|
+
ExternalMeetingId: string | undefined;
|
|
199
|
+
|
|
200
|
+
NotificationsConfiguration?: NotificationsConfiguration;
|
|
201
|
+
|
|
202
|
+
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
203
|
+
}
|
|
204
|
+
export declare namespace CreateMeetingRequest {
|
|
205
|
+
|
|
206
|
+
const filterSensitiveLog: (obj: CreateMeetingRequest) => any;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export interface MediaPlacement {
|
|
210
|
+
|
|
211
|
+
AudioHostUrl?: string;
|
|
212
|
+
|
|
213
|
+
AudioFallbackUrl?: string;
|
|
214
|
+
|
|
215
|
+
SignalingUrl?: string;
|
|
216
|
+
|
|
217
|
+
TurnControlUrl?: string;
|
|
218
|
+
|
|
219
|
+
ScreenDataUrl?: string;
|
|
220
|
+
|
|
221
|
+
ScreenViewingUrl?: string;
|
|
222
|
+
|
|
223
|
+
ScreenSharingUrl?: string;
|
|
224
|
+
|
|
225
|
+
EventIngestionUrl?: string;
|
|
226
|
+
}
|
|
227
|
+
export declare namespace MediaPlacement {
|
|
228
|
+
|
|
229
|
+
const filterSensitiveLog: (obj: MediaPlacement) => any;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
export interface Meeting {
|
|
233
|
+
|
|
234
|
+
MeetingId?: string;
|
|
235
|
+
|
|
236
|
+
MeetingHostId?: string;
|
|
237
|
+
|
|
238
|
+
ExternalMeetingId?: string;
|
|
239
|
+
|
|
240
|
+
MediaRegion?: string;
|
|
241
|
+
|
|
242
|
+
MediaPlacement?: MediaPlacement;
|
|
243
|
+
|
|
244
|
+
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
245
|
+
}
|
|
246
|
+
export declare namespace Meeting {
|
|
247
|
+
|
|
248
|
+
const filterSensitiveLog: (obj: Meeting) => any;
|
|
249
|
+
}
|
|
250
|
+
export interface CreateMeetingResponse {
|
|
251
|
+
|
|
252
|
+
Meeting?: Meeting;
|
|
253
|
+
}
|
|
254
|
+
export declare namespace CreateMeetingResponse {
|
|
255
|
+
|
|
256
|
+
const filterSensitiveLog: (obj: CreateMeetingResponse) => any;
|
|
257
|
+
}
|
|
258
|
+
export interface CreateMeetingWithAttendeesRequest {
|
|
259
|
+
|
|
260
|
+
ClientRequestToken?: string;
|
|
261
|
+
|
|
262
|
+
MediaRegion: string | undefined;
|
|
263
|
+
|
|
264
|
+
MeetingHostId?: string;
|
|
265
|
+
|
|
266
|
+
ExternalMeetingId: string | undefined;
|
|
267
|
+
|
|
268
|
+
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
269
|
+
|
|
270
|
+
NotificationsConfiguration?: NotificationsConfiguration;
|
|
271
|
+
|
|
272
|
+
Attendees: CreateAttendeeRequestItem[] | undefined;
|
|
273
|
+
}
|
|
274
|
+
export declare namespace CreateMeetingWithAttendeesRequest {
|
|
275
|
+
|
|
276
|
+
const filterSensitiveLog: (obj: CreateMeetingWithAttendeesRequest) => any;
|
|
277
|
+
}
|
|
278
|
+
export interface CreateMeetingWithAttendeesResponse {
|
|
279
|
+
|
|
280
|
+
Meeting?: Meeting;
|
|
281
|
+
|
|
282
|
+
Attendees?: Attendee[];
|
|
283
|
+
|
|
284
|
+
Errors?: CreateAttendeeError[];
|
|
285
|
+
}
|
|
286
|
+
export declare namespace CreateMeetingWithAttendeesResponse {
|
|
287
|
+
|
|
288
|
+
const filterSensitiveLog: (obj: CreateMeetingWithAttendeesResponse) => any;
|
|
289
|
+
}
|
|
290
|
+
export interface DeleteAttendeeRequest {
|
|
291
|
+
|
|
292
|
+
MeetingId: string | undefined;
|
|
293
|
+
|
|
294
|
+
AttendeeId: string | undefined;
|
|
295
|
+
}
|
|
296
|
+
export declare namespace DeleteAttendeeRequest {
|
|
297
|
+
|
|
298
|
+
const filterSensitiveLog: (obj: DeleteAttendeeRequest) => any;
|
|
299
|
+
}
|
|
300
|
+
export interface DeleteMeetingRequest {
|
|
301
|
+
|
|
302
|
+
MeetingId: string | undefined;
|
|
303
|
+
}
|
|
304
|
+
export declare namespace DeleteMeetingRequest {
|
|
305
|
+
|
|
306
|
+
const filterSensitiveLog: (obj: DeleteMeetingRequest) => any;
|
|
307
|
+
}
|
|
308
|
+
export interface GetAttendeeRequest {
|
|
309
|
+
|
|
310
|
+
MeetingId: string | undefined;
|
|
311
|
+
|
|
312
|
+
AttendeeId: string | undefined;
|
|
313
|
+
}
|
|
314
|
+
export declare namespace GetAttendeeRequest {
|
|
315
|
+
|
|
316
|
+
const filterSensitiveLog: (obj: GetAttendeeRequest) => any;
|
|
317
|
+
}
|
|
318
|
+
export interface GetAttendeeResponse {
|
|
319
|
+
|
|
320
|
+
Attendee?: Attendee;
|
|
321
|
+
}
|
|
322
|
+
export declare namespace GetAttendeeResponse {
|
|
323
|
+
|
|
324
|
+
const filterSensitiveLog: (obj: GetAttendeeResponse) => any;
|
|
325
|
+
}
|
|
326
|
+
export interface GetMeetingRequest {
|
|
327
|
+
|
|
328
|
+
MeetingId: string | undefined;
|
|
329
|
+
}
|
|
330
|
+
export declare namespace GetMeetingRequest {
|
|
331
|
+
|
|
332
|
+
const filterSensitiveLog: (obj: GetMeetingRequest) => any;
|
|
333
|
+
}
|
|
334
|
+
export interface GetMeetingResponse {
|
|
335
|
+
|
|
336
|
+
Meeting?: Meeting;
|
|
337
|
+
}
|
|
338
|
+
export declare namespace GetMeetingResponse {
|
|
339
|
+
|
|
340
|
+
const filterSensitiveLog: (obj: GetMeetingResponse) => any;
|
|
341
|
+
}
|
|
342
|
+
export interface ListAttendeesRequest {
|
|
343
|
+
|
|
344
|
+
MeetingId: string | undefined;
|
|
345
|
+
|
|
346
|
+
NextToken?: string;
|
|
347
|
+
|
|
348
|
+
MaxResults?: number;
|
|
349
|
+
}
|
|
350
|
+
export declare namespace ListAttendeesRequest {
|
|
351
|
+
|
|
352
|
+
const filterSensitiveLog: (obj: ListAttendeesRequest) => any;
|
|
353
|
+
}
|
|
354
|
+
export interface ListAttendeesResponse {
|
|
355
|
+
|
|
356
|
+
Attendees?: Attendee[];
|
|
357
|
+
|
|
358
|
+
NextToken?: string;
|
|
359
|
+
}
|
|
360
|
+
export declare namespace ListAttendeesResponse {
|
|
361
|
+
|
|
362
|
+
const filterSensitiveLog: (obj: ListAttendeesResponse) => any;
|
|
363
|
+
}
|
|
364
|
+
export declare enum TranscribeMedicalContentIdentificationType {
|
|
365
|
+
PHI = "PHI"
|
|
366
|
+
}
|
|
367
|
+
export declare enum TranscribeMedicalLanguageCode {
|
|
368
|
+
EN_US = "en-US"
|
|
369
|
+
}
|
|
370
|
+
export declare enum TranscribeMedicalRegion {
|
|
371
|
+
AP_SOUTHEAST_2 = "ap-southeast-2",
|
|
372
|
+
AUTO = "auto",
|
|
373
|
+
CA_CENTRAL_1 = "ca-central-1",
|
|
374
|
+
EU_WEST_1 = "eu-west-1",
|
|
375
|
+
US_EAST_1 = "us-east-1",
|
|
376
|
+
US_EAST_2 = "us-east-2",
|
|
377
|
+
US_WEST_2 = "us-west-2"
|
|
378
|
+
}
|
|
379
|
+
export declare enum TranscribeMedicalSpecialty {
|
|
380
|
+
CARDIOLOGY = "CARDIOLOGY",
|
|
381
|
+
NEUROLOGY = "NEUROLOGY",
|
|
382
|
+
ONCOLOGY = "ONCOLOGY",
|
|
383
|
+
PRIMARYCARE = "PRIMARYCARE",
|
|
384
|
+
RADIOLOGY = "RADIOLOGY",
|
|
385
|
+
UROLOGY = "UROLOGY"
|
|
386
|
+
}
|
|
387
|
+
export declare enum TranscribeMedicalType {
|
|
388
|
+
CONVERSATION = "CONVERSATION",
|
|
389
|
+
DICTATION = "DICTATION"
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
export interface EngineTranscribeMedicalSettings {
|
|
393
|
+
|
|
394
|
+
LanguageCode: TranscribeMedicalLanguageCode | string | undefined;
|
|
395
|
+
|
|
396
|
+
Specialty: TranscribeMedicalSpecialty | string | undefined;
|
|
397
|
+
|
|
398
|
+
Type: TranscribeMedicalType | string | undefined;
|
|
399
|
+
|
|
400
|
+
VocabularyName?: string;
|
|
401
|
+
|
|
402
|
+
Region?: TranscribeMedicalRegion | string;
|
|
403
|
+
|
|
404
|
+
ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
|
|
405
|
+
}
|
|
406
|
+
export declare namespace EngineTranscribeMedicalSettings {
|
|
407
|
+
|
|
408
|
+
const filterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
|
|
409
|
+
}
|
|
410
|
+
export declare enum TranscribeContentIdentificationType {
|
|
411
|
+
PII = "PII"
|
|
412
|
+
}
|
|
413
|
+
export declare enum TranscribeContentRedactionType {
|
|
414
|
+
PII = "PII"
|
|
415
|
+
}
|
|
416
|
+
export declare enum TranscribeLanguageCode {
|
|
417
|
+
DE_DE = "de-DE",
|
|
418
|
+
EN_AU = "en-AU",
|
|
419
|
+
EN_GB = "en-GB",
|
|
420
|
+
EN_US = "en-US",
|
|
421
|
+
ES_US = "es-US",
|
|
422
|
+
FR_CA = "fr-CA",
|
|
423
|
+
FR_FR = "fr-FR",
|
|
424
|
+
IT_IT = "it-IT",
|
|
425
|
+
JA_JP = "ja-JP",
|
|
426
|
+
KO_KR = "ko-KR",
|
|
427
|
+
PT_BR = "pt-BR",
|
|
428
|
+
ZH_CN = "zh-CN"
|
|
429
|
+
}
|
|
430
|
+
export declare enum TranscribePartialResultsStability {
|
|
431
|
+
HIGH = "high",
|
|
432
|
+
LOW = "low",
|
|
433
|
+
MEDIUM = "medium"
|
|
434
|
+
}
|
|
435
|
+
export declare enum TranscribeRegion {
|
|
436
|
+
AP_NORTHEAST_1 = "ap-northeast-1",
|
|
437
|
+
AP_NORTHEAST_2 = "ap-northeast-2",
|
|
438
|
+
AP_SOUTHEAST_2 = "ap-southeast-2",
|
|
439
|
+
AUTO = "auto",
|
|
440
|
+
CA_CENTRAL_1 = "ca-central-1",
|
|
441
|
+
EU_CENTRAL_1 = "eu-central-1",
|
|
442
|
+
EU_WEST_1 = "eu-west-1",
|
|
443
|
+
EU_WEST_2 = "eu-west-2",
|
|
444
|
+
SA_EAST_1 = "sa-east-1",
|
|
445
|
+
US_EAST_1 = "us-east-1",
|
|
446
|
+
US_EAST_2 = "us-east-2",
|
|
447
|
+
US_WEST_2 = "us-west-2"
|
|
448
|
+
}
|
|
449
|
+
export declare enum TranscribeVocabularyFilterMethod {
|
|
450
|
+
MASK = "mask",
|
|
451
|
+
REMOVE = "remove",
|
|
452
|
+
TAG = "tag"
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
export interface EngineTranscribeSettings {
|
|
456
|
+
|
|
457
|
+
LanguageCode: TranscribeLanguageCode | string | undefined;
|
|
458
|
+
|
|
459
|
+
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
|
|
460
|
+
|
|
461
|
+
VocabularyFilterName?: string;
|
|
462
|
+
|
|
463
|
+
VocabularyName?: string;
|
|
464
|
+
|
|
465
|
+
Region?: TranscribeRegion | string;
|
|
466
|
+
|
|
467
|
+
EnablePartialResultsStabilization?: boolean;
|
|
468
|
+
|
|
469
|
+
PartialResultsStability?: TranscribePartialResultsStability | string;
|
|
470
|
+
|
|
471
|
+
ContentIdentificationType?: TranscribeContentIdentificationType | string;
|
|
472
|
+
|
|
473
|
+
ContentRedactionType?: TranscribeContentRedactionType | string;
|
|
474
|
+
|
|
475
|
+
PiiEntityTypes?: string;
|
|
476
|
+
|
|
477
|
+
LanguageModelName?: string;
|
|
478
|
+
}
|
|
479
|
+
export declare namespace EngineTranscribeSettings {
|
|
480
|
+
|
|
481
|
+
const filterSensitiveLog: (obj: EngineTranscribeSettings) => any;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
export interface TranscriptionConfiguration {
|
|
485
|
+
|
|
486
|
+
EngineTranscribeSettings?: EngineTranscribeSettings;
|
|
487
|
+
|
|
488
|
+
EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
|
|
489
|
+
}
|
|
490
|
+
export declare namespace TranscriptionConfiguration {
|
|
491
|
+
|
|
492
|
+
const filterSensitiveLog: (obj: TranscriptionConfiguration) => any;
|
|
493
|
+
}
|
|
494
|
+
export interface StartMeetingTranscriptionRequest {
|
|
495
|
+
|
|
496
|
+
MeetingId: string | undefined;
|
|
497
|
+
|
|
498
|
+
TranscriptionConfiguration: TranscriptionConfiguration | undefined;
|
|
499
|
+
}
|
|
500
|
+
export declare namespace StartMeetingTranscriptionRequest {
|
|
501
|
+
|
|
502
|
+
const filterSensitiveLog: (obj: StartMeetingTranscriptionRequest) => any;
|
|
503
|
+
}
|
|
504
|
+
export interface StopMeetingTranscriptionRequest {
|
|
505
|
+
|
|
506
|
+
MeetingId: string | undefined;
|
|
507
|
+
}
|
|
508
|
+
export declare namespace StopMeetingTranscriptionRequest {
|
|
509
|
+
|
|
510
|
+
const filterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
|
|
511
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ChimeSDKMeetings } from "../ChimeSDKMeetings";
|
|
3
|
+
import { ChimeSDKMeetingsClient } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
export interface ChimeSDKMeetingsPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: ChimeSDKMeetings | ChimeSDKMeetingsClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
|
|
3
|
+
import { ChimeSDKMeetingsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListAttendees(config: ChimeSDKMeetingsPaginationConfiguration, input: ListAttendeesCommandInput, ...additionalArguments: any): Paginator<ListAttendeesCommandOutput>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "../commands/BatchCreateAttendeeCommand";
|
|
4
|
+
import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "../commands/CreateAttendeeCommand";
|
|
5
|
+
import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "../commands/CreateMeetingCommand";
|
|
6
|
+
import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "../commands/CreateMeetingWithAttendeesCommand";
|
|
7
|
+
import { DeleteAttendeeCommandInput, DeleteAttendeeCommandOutput } from "../commands/DeleteAttendeeCommand";
|
|
8
|
+
import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "../commands/DeleteMeetingCommand";
|
|
9
|
+
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "../commands/GetAttendeeCommand";
|
|
10
|
+
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "../commands/GetMeetingCommand";
|
|
11
|
+
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
|
|
12
|
+
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "../commands/StartMeetingTranscriptionCommand";
|
|
13
|
+
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "../commands/StopMeetingTranscriptionCommand";
|
|
14
|
+
export declare const serializeAws_restJson1BatchCreateAttendeeCommand: (input: BatchCreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
|
+
export declare const serializeAws_restJson1CreateAttendeeCommand: (input: CreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
+
export declare const serializeAws_restJson1CreateMeetingCommand: (input: CreateMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_restJson1CreateMeetingWithAttendeesCommand: (input: CreateMeetingWithAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_restJson1DeleteAttendeeCommand: (input: DeleteAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const serializeAws_restJson1DeleteMeetingCommand: (input: DeleteMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
export declare const serializeAws_restJson1GetAttendeeCommand: (input: GetAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
+
export declare const serializeAws_restJson1GetMeetingCommand: (input: GetMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const serializeAws_restJson1ListAttendeesCommand: (input: ListAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1StartMeetingTranscriptionCommand: (input: StartMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_restJson1StopMeetingTranscriptionCommand: (input: StopMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const deserializeAws_restJson1BatchCreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCreateAttendeeCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_restJson1CreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAttendeeCommandOutput>;
|
|
27
|
+
export declare const deserializeAws_restJson1CreateMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingCommandOutput>;
|
|
28
|
+
export declare const deserializeAws_restJson1CreateMeetingWithAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMeetingWithAttendeesCommandOutput>;
|
|
29
|
+
export declare const deserializeAws_restJson1DeleteAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAttendeeCommandOutput>;
|
|
30
|
+
export declare const deserializeAws_restJson1DeleteMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMeetingCommandOutput>;
|
|
31
|
+
export declare const deserializeAws_restJson1GetAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAttendeeCommandOutput>;
|
|
32
|
+
export declare const deserializeAws_restJson1GetMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMeetingCommandOutput>;
|
|
33
|
+
export declare const deserializeAws_restJson1ListAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttendeesCommandOutput>;
|
|
34
|
+
export declare const deserializeAws_restJson1StartMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMeetingTranscriptionCommandOutput>;
|
|
35
|
+
export declare const deserializeAws_restJson1StopMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopMeetingTranscriptionCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|