@aws-sdk/client-chime-sdk-meetings 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +99 -98
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +98 -0
- package/dist-es/models/errors.js +223 -0
- package/dist-es/models/models_0.js +1 -321
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +226 -0
- package/dist-types/models/errors.d.ts +245 -0
- package/dist-types/models/models_0.d.ts +1 -471
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +130 -0
- package/dist-types/ts3.4/models/errors.d.ts +119 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -249
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
|
+
export declare class BadRequestException extends __BaseException {
|
|
4
|
+
readonly name: "BadRequestException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Code?: string | undefined;
|
|
7
|
+
Message?: string | undefined;
|
|
8
|
+
RequestId?: string | undefined;
|
|
9
|
+
constructor(
|
|
10
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare class ForbiddenException extends __BaseException {
|
|
14
|
+
readonly name: "ForbiddenException";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
Code?: string | undefined;
|
|
17
|
+
Message?: string | undefined;
|
|
18
|
+
RequestId?: string | undefined;
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
20
|
+
}
|
|
21
|
+
export declare class LimitExceededException extends __BaseException {
|
|
22
|
+
readonly name: "LimitExceededException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
Code?: string | undefined;
|
|
25
|
+
Message?: string | undefined;
|
|
26
|
+
RequestId?: string | undefined;
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class NotFoundException extends __BaseException {
|
|
32
|
+
readonly name: "NotFoundException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
Code?: string | undefined;
|
|
35
|
+
Message?: string | undefined;
|
|
36
|
+
RequestId?: string | undefined;
|
|
37
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
export declare class ServiceFailureException extends __BaseException {
|
|
40
|
+
readonly name: "ServiceFailureException";
|
|
41
|
+
readonly $fault: "server";
|
|
42
|
+
Code?: string | undefined;
|
|
43
|
+
Message?: string | undefined;
|
|
44
|
+
RequestId?: string | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|
|
49
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
50
|
+
readonly name: "ServiceUnavailableException";
|
|
51
|
+
readonly $fault: "server";
|
|
52
|
+
Code?: string | undefined;
|
|
53
|
+
Message?: string | undefined;
|
|
54
|
+
RequestId?: string | undefined;
|
|
55
|
+
RetryAfterSeconds?: string | undefined;
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class ThrottlingException extends __BaseException {
|
|
61
|
+
readonly name: "ThrottlingException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
Code?: string | undefined;
|
|
64
|
+
Message?: string | undefined;
|
|
65
|
+
RequestId?: string | undefined;
|
|
66
|
+
constructor(
|
|
67
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
71
|
+
readonly name: "UnauthorizedException";
|
|
72
|
+
readonly $fault: "client";
|
|
73
|
+
Code?: string | undefined;
|
|
74
|
+
Message?: string | undefined;
|
|
75
|
+
RequestId?: string | undefined;
|
|
76
|
+
constructor(
|
|
77
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
export declare class UnprocessableEntityException extends __BaseException {
|
|
81
|
+
readonly name: "UnprocessableEntityException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
Code?: string | undefined;
|
|
84
|
+
Message?: string | undefined;
|
|
85
|
+
RequestId?: string | undefined;
|
|
86
|
+
constructor(
|
|
87
|
+
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
export declare class ConflictException extends __BaseException {
|
|
91
|
+
readonly name: "ConflictException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
Code?: string | undefined;
|
|
94
|
+
Message?: string | undefined;
|
|
95
|
+
RequestId?: string | undefined;
|
|
96
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
97
|
+
}
|
|
98
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
99
|
+
readonly name: "ResourceNotFoundException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
Code?: string | undefined;
|
|
102
|
+
Message?: string | undefined;
|
|
103
|
+
RequestId?: string | undefined;
|
|
104
|
+
ResourceName?: string | undefined;
|
|
105
|
+
constructor(
|
|
106
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
107
|
+
);
|
|
108
|
+
}
|
|
109
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
110
|
+
readonly name: "TooManyTagsException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
Code?: string | undefined;
|
|
113
|
+
Message?: string | undefined;
|
|
114
|
+
RequestId?: string | undefined;
|
|
115
|
+
ResourceName?: string | undefined;
|
|
116
|
+
constructor(
|
|
117
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
118
|
+
);
|
|
119
|
+
}
|
|
@@ -1,13 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import {
|
|
2
|
+
ContentResolution,
|
|
3
|
+
MediaCapabilities,
|
|
4
|
+
MediaPlacementNetworkType,
|
|
5
|
+
MeetingFeatureStatus,
|
|
6
|
+
TranscribeContentIdentificationType,
|
|
7
|
+
TranscribeContentRedactionType,
|
|
8
|
+
TranscribeLanguageCode,
|
|
9
|
+
TranscribeMedicalContentIdentificationType,
|
|
10
|
+
TranscribeMedicalLanguageCode,
|
|
11
|
+
TranscribeMedicalRegion,
|
|
12
|
+
TranscribeMedicalSpecialty,
|
|
13
|
+
TranscribeMedicalType,
|
|
14
|
+
TranscribePartialResultsStability,
|
|
15
|
+
TranscribeRegion,
|
|
16
|
+
TranscribeVocabularyFilterMethod,
|
|
17
|
+
VideoResolution,
|
|
18
|
+
} from "./enums";
|
|
11
19
|
export interface AttendeeCapabilities {
|
|
12
20
|
Audio: MediaCapabilities | undefined;
|
|
13
21
|
Video: MediaCapabilities | undefined;
|
|
@@ -25,25 +33,9 @@ export interface AttendeeFeatures {
|
|
|
25
33
|
export interface AttendeeIdItem {
|
|
26
34
|
AttendeeId: string | undefined;
|
|
27
35
|
}
|
|
28
|
-
export declare const MeetingFeatureStatus: {
|
|
29
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
30
|
-
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
31
|
-
};
|
|
32
|
-
export type MeetingFeatureStatus =
|
|
33
|
-
(typeof MeetingFeatureStatus)[keyof typeof MeetingFeatureStatus];
|
|
34
36
|
export interface AudioFeatures {
|
|
35
37
|
EchoReduction?: MeetingFeatureStatus | undefined;
|
|
36
38
|
}
|
|
37
|
-
export declare class BadRequestException extends __BaseException {
|
|
38
|
-
readonly name: "BadRequestException";
|
|
39
|
-
readonly $fault: "client";
|
|
40
|
-
Code?: string | undefined;
|
|
41
|
-
Message?: string | undefined;
|
|
42
|
-
RequestId?: string | undefined;
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
45
|
-
);
|
|
46
|
-
}
|
|
47
39
|
export interface CreateAttendeeRequestItem {
|
|
48
40
|
ExternalUserId: string | undefined;
|
|
49
41
|
Capabilities?: AttendeeCapabilities | undefined;
|
|
@@ -61,96 +53,11 @@ export interface BatchCreateAttendeeResponse {
|
|
|
61
53
|
Attendees?: Attendee[] | undefined;
|
|
62
54
|
Errors?: CreateAttendeeError[] | undefined;
|
|
63
55
|
}
|
|
64
|
-
export declare class ForbiddenException extends __BaseException {
|
|
65
|
-
readonly name: "ForbiddenException";
|
|
66
|
-
readonly $fault: "client";
|
|
67
|
-
Code?: string | undefined;
|
|
68
|
-
Message?: string | undefined;
|
|
69
|
-
RequestId?: string | undefined;
|
|
70
|
-
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
71
|
-
}
|
|
72
|
-
export declare class LimitExceededException extends __BaseException {
|
|
73
|
-
readonly name: "LimitExceededException";
|
|
74
|
-
readonly $fault: "client";
|
|
75
|
-
Code?: string | undefined;
|
|
76
|
-
Message?: string | undefined;
|
|
77
|
-
RequestId?: string | undefined;
|
|
78
|
-
constructor(
|
|
79
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
80
|
-
);
|
|
81
|
-
}
|
|
82
|
-
export declare class NotFoundException extends __BaseException {
|
|
83
|
-
readonly name: "NotFoundException";
|
|
84
|
-
readonly $fault: "client";
|
|
85
|
-
Code?: string | undefined;
|
|
86
|
-
Message?: string | undefined;
|
|
87
|
-
RequestId?: string | undefined;
|
|
88
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
89
|
-
}
|
|
90
|
-
export declare class ServiceFailureException extends __BaseException {
|
|
91
|
-
readonly name: "ServiceFailureException";
|
|
92
|
-
readonly $fault: "server";
|
|
93
|
-
Code?: string | undefined;
|
|
94
|
-
Message?: string | undefined;
|
|
95
|
-
RequestId?: string | undefined;
|
|
96
|
-
constructor(
|
|
97
|
-
opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
101
|
-
readonly name: "ServiceUnavailableException";
|
|
102
|
-
readonly $fault: "server";
|
|
103
|
-
Code?: string | undefined;
|
|
104
|
-
Message?: string | undefined;
|
|
105
|
-
RequestId?: string | undefined;
|
|
106
|
-
RetryAfterSeconds?: string | undefined;
|
|
107
|
-
constructor(
|
|
108
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
109
|
-
);
|
|
110
|
-
}
|
|
111
|
-
export declare class ThrottlingException extends __BaseException {
|
|
112
|
-
readonly name: "ThrottlingException";
|
|
113
|
-
readonly $fault: "client";
|
|
114
|
-
Code?: string | undefined;
|
|
115
|
-
Message?: string | undefined;
|
|
116
|
-
RequestId?: string | undefined;
|
|
117
|
-
constructor(
|
|
118
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
119
|
-
);
|
|
120
|
-
}
|
|
121
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
122
|
-
readonly name: "UnauthorizedException";
|
|
123
|
-
readonly $fault: "client";
|
|
124
|
-
Code?: string | undefined;
|
|
125
|
-
Message?: string | undefined;
|
|
126
|
-
RequestId?: string | undefined;
|
|
127
|
-
constructor(
|
|
128
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
129
|
-
);
|
|
130
|
-
}
|
|
131
|
-
export declare class UnprocessableEntityException extends __BaseException {
|
|
132
|
-
readonly name: "UnprocessableEntityException";
|
|
133
|
-
readonly $fault: "client";
|
|
134
|
-
Code?: string | undefined;
|
|
135
|
-
Message?: string | undefined;
|
|
136
|
-
RequestId?: string | undefined;
|
|
137
|
-
constructor(
|
|
138
|
-
opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
|
|
139
|
-
);
|
|
140
|
-
}
|
|
141
56
|
export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
|
|
142
57
|
MeetingId: string | undefined;
|
|
143
58
|
ExcludedAttendeeIds: AttendeeIdItem[] | undefined;
|
|
144
59
|
Capabilities: AttendeeCapabilities | undefined;
|
|
145
60
|
}
|
|
146
|
-
export declare class ConflictException extends __BaseException {
|
|
147
|
-
readonly name: "ConflictException";
|
|
148
|
-
readonly $fault: "client";
|
|
149
|
-
Code?: string | undefined;
|
|
150
|
-
Message?: string | undefined;
|
|
151
|
-
RequestId?: string | undefined;
|
|
152
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
153
|
-
}
|
|
154
61
|
export interface CreateAttendeeRequest {
|
|
155
62
|
MeetingId: string | undefined;
|
|
156
63
|
ExternalUserId: string | undefined;
|
|
@@ -159,29 +66,9 @@ export interface CreateAttendeeRequest {
|
|
|
159
66
|
export interface CreateAttendeeResponse {
|
|
160
67
|
Attendee?: Attendee | undefined;
|
|
161
68
|
}
|
|
162
|
-
export declare const MediaPlacementNetworkType: {
|
|
163
|
-
readonly DUAL_STACK: "DualStack";
|
|
164
|
-
readonly IPV4_ONLY: "Ipv4Only";
|
|
165
|
-
};
|
|
166
|
-
export type MediaPlacementNetworkType =
|
|
167
|
-
(typeof MediaPlacementNetworkType)[keyof typeof MediaPlacementNetworkType];
|
|
168
|
-
export declare const ContentResolution: {
|
|
169
|
-
readonly FHD: "FHD";
|
|
170
|
-
readonly NONE: "None";
|
|
171
|
-
readonly UHD: "UHD";
|
|
172
|
-
};
|
|
173
|
-
export type ContentResolution =
|
|
174
|
-
(typeof ContentResolution)[keyof typeof ContentResolution];
|
|
175
69
|
export interface ContentFeatures {
|
|
176
70
|
MaxResolution?: ContentResolution | undefined;
|
|
177
71
|
}
|
|
178
|
-
export declare const VideoResolution: {
|
|
179
|
-
readonly FHD: "FHD";
|
|
180
|
-
readonly HD: "HD";
|
|
181
|
-
readonly NONE: "None";
|
|
182
|
-
};
|
|
183
|
-
export type VideoResolution =
|
|
184
|
-
(typeof VideoResolution)[keyof typeof VideoResolution];
|
|
185
72
|
export interface VideoFeatures {
|
|
186
73
|
MaxResolution?: VideoResolution | undefined;
|
|
187
74
|
}
|
|
@@ -289,54 +176,6 @@ export interface ListTagsForResourceRequest {
|
|
|
289
176
|
export interface ListTagsForResourceResponse {
|
|
290
177
|
Tags?: Tag[] | undefined;
|
|
291
178
|
}
|
|
292
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
293
|
-
readonly name: "ResourceNotFoundException";
|
|
294
|
-
readonly $fault: "client";
|
|
295
|
-
Code?: string | undefined;
|
|
296
|
-
Message?: string | undefined;
|
|
297
|
-
RequestId?: string | undefined;
|
|
298
|
-
ResourceName?: string | undefined;
|
|
299
|
-
constructor(
|
|
300
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
301
|
-
);
|
|
302
|
-
}
|
|
303
|
-
export declare const TranscribeMedicalContentIdentificationType: {
|
|
304
|
-
readonly PHI: "PHI";
|
|
305
|
-
};
|
|
306
|
-
export type TranscribeMedicalContentIdentificationType =
|
|
307
|
-
(typeof TranscribeMedicalContentIdentificationType)[keyof typeof TranscribeMedicalContentIdentificationType];
|
|
308
|
-
export declare const TranscribeMedicalLanguageCode: {
|
|
309
|
-
readonly EN_US: "en-US";
|
|
310
|
-
};
|
|
311
|
-
export type TranscribeMedicalLanguageCode =
|
|
312
|
-
(typeof TranscribeMedicalLanguageCode)[keyof typeof TranscribeMedicalLanguageCode];
|
|
313
|
-
export declare const TranscribeMedicalRegion: {
|
|
314
|
-
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
315
|
-
readonly AUTO: "auto";
|
|
316
|
-
readonly CA_CENTRAL_1: "ca-central-1";
|
|
317
|
-
readonly EU_WEST_1: "eu-west-1";
|
|
318
|
-
readonly US_EAST_1: "us-east-1";
|
|
319
|
-
readonly US_EAST_2: "us-east-2";
|
|
320
|
-
readonly US_WEST_2: "us-west-2";
|
|
321
|
-
};
|
|
322
|
-
export type TranscribeMedicalRegion =
|
|
323
|
-
(typeof TranscribeMedicalRegion)[keyof typeof TranscribeMedicalRegion];
|
|
324
|
-
export declare const TranscribeMedicalSpecialty: {
|
|
325
|
-
readonly CARDIOLOGY: "CARDIOLOGY";
|
|
326
|
-
readonly NEUROLOGY: "NEUROLOGY";
|
|
327
|
-
readonly ONCOLOGY: "ONCOLOGY";
|
|
328
|
-
readonly PRIMARYCARE: "PRIMARYCARE";
|
|
329
|
-
readonly RADIOLOGY: "RADIOLOGY";
|
|
330
|
-
readonly UROLOGY: "UROLOGY";
|
|
331
|
-
};
|
|
332
|
-
export type TranscribeMedicalSpecialty =
|
|
333
|
-
(typeof TranscribeMedicalSpecialty)[keyof typeof TranscribeMedicalSpecialty];
|
|
334
|
-
export declare const TranscribeMedicalType: {
|
|
335
|
-
readonly CONVERSATION: "CONVERSATION";
|
|
336
|
-
readonly DICTATION: "DICTATION";
|
|
337
|
-
};
|
|
338
|
-
export type TranscribeMedicalType =
|
|
339
|
-
(typeof TranscribeMedicalType)[keyof typeof TranscribeMedicalType];
|
|
340
179
|
export interface EngineTranscribeMedicalSettings {
|
|
341
180
|
LanguageCode: TranscribeMedicalLanguageCode | undefined;
|
|
342
181
|
Specialty: TranscribeMedicalSpecialty | undefined;
|
|
@@ -347,65 +186,6 @@ export interface EngineTranscribeMedicalSettings {
|
|
|
347
186
|
| TranscribeMedicalContentIdentificationType
|
|
348
187
|
| undefined;
|
|
349
188
|
}
|
|
350
|
-
export declare const TranscribeContentIdentificationType: {
|
|
351
|
-
readonly PII: "PII";
|
|
352
|
-
};
|
|
353
|
-
export type TranscribeContentIdentificationType =
|
|
354
|
-
(typeof TranscribeContentIdentificationType)[keyof typeof TranscribeContentIdentificationType];
|
|
355
|
-
export declare const TranscribeContentRedactionType: {
|
|
356
|
-
readonly PII: "PII";
|
|
357
|
-
};
|
|
358
|
-
export type TranscribeContentRedactionType =
|
|
359
|
-
(typeof TranscribeContentRedactionType)[keyof typeof TranscribeContentRedactionType];
|
|
360
|
-
export declare const TranscribeLanguageCode: {
|
|
361
|
-
readonly DE_DE: "de-DE";
|
|
362
|
-
readonly EN_AU: "en-AU";
|
|
363
|
-
readonly EN_GB: "en-GB";
|
|
364
|
-
readonly EN_US: "en-US";
|
|
365
|
-
readonly ES_US: "es-US";
|
|
366
|
-
readonly FR_CA: "fr-CA";
|
|
367
|
-
readonly FR_FR: "fr-FR";
|
|
368
|
-
readonly HI_IN: "hi-IN";
|
|
369
|
-
readonly IT_IT: "it-IT";
|
|
370
|
-
readonly JA_JP: "ja-JP";
|
|
371
|
-
readonly KO_KR: "ko-KR";
|
|
372
|
-
readonly PT_BR: "pt-BR";
|
|
373
|
-
readonly TH_TH: "th-TH";
|
|
374
|
-
readonly ZH_CN: "zh-CN";
|
|
375
|
-
};
|
|
376
|
-
export type TranscribeLanguageCode =
|
|
377
|
-
(typeof TranscribeLanguageCode)[keyof typeof TranscribeLanguageCode];
|
|
378
|
-
export declare const TranscribePartialResultsStability: {
|
|
379
|
-
readonly HIGH: "high";
|
|
380
|
-
readonly LOW: "low";
|
|
381
|
-
readonly MEDIUM: "medium";
|
|
382
|
-
};
|
|
383
|
-
export type TranscribePartialResultsStability =
|
|
384
|
-
(typeof TranscribePartialResultsStability)[keyof typeof TranscribePartialResultsStability];
|
|
385
|
-
export declare const TranscribeRegion: {
|
|
386
|
-
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
387
|
-
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
388
|
-
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
389
|
-
readonly AUTO: "auto";
|
|
390
|
-
readonly CA_CENTRAL_1: "ca-central-1";
|
|
391
|
-
readonly EU_CENTRAL_1: "eu-central-1";
|
|
392
|
-
readonly EU_WEST_1: "eu-west-1";
|
|
393
|
-
readonly EU_WEST_2: "eu-west-2";
|
|
394
|
-
readonly SA_EAST_1: "sa-east-1";
|
|
395
|
-
readonly US_EAST_1: "us-east-1";
|
|
396
|
-
readonly US_EAST_2: "us-east-2";
|
|
397
|
-
readonly US_GOV_WEST_1: "us-gov-west-1";
|
|
398
|
-
readonly US_WEST_2: "us-west-2";
|
|
399
|
-
};
|
|
400
|
-
export type TranscribeRegion =
|
|
401
|
-
(typeof TranscribeRegion)[keyof typeof TranscribeRegion];
|
|
402
|
-
export declare const TranscribeVocabularyFilterMethod: {
|
|
403
|
-
readonly MASK: "mask";
|
|
404
|
-
readonly REMOVE: "remove";
|
|
405
|
-
readonly TAG: "tag";
|
|
406
|
-
};
|
|
407
|
-
export type TranscribeVocabularyFilterMethod =
|
|
408
|
-
(typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
|
|
409
189
|
export interface EngineTranscribeSettings {
|
|
410
190
|
LanguageCode?: TranscribeLanguageCode | undefined;
|
|
411
191
|
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | undefined;
|
|
@@ -440,17 +220,6 @@ export interface TagResourceRequest {
|
|
|
440
220
|
Tags: Tag[] | undefined;
|
|
441
221
|
}
|
|
442
222
|
export interface TagResourceResponse {}
|
|
443
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
444
|
-
readonly name: "TooManyTagsException";
|
|
445
|
-
readonly $fault: "client";
|
|
446
|
-
Code?: string | undefined;
|
|
447
|
-
Message?: string | undefined;
|
|
448
|
-
RequestId?: string | undefined;
|
|
449
|
-
ResourceName?: string | undefined;
|
|
450
|
-
constructor(
|
|
451
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
452
|
-
);
|
|
453
|
-
}
|
|
454
223
|
export interface UntagResourceRequest {
|
|
455
224
|
ResourceARN: string | undefined;
|
|
456
225
|
TagKeys: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-meetings",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-meetings",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|