@aws-sdk/client-chime-sdk-meetings 3.52.0 → 3.54.1

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.
@@ -13,8 +13,7 @@ import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommand
13
13
  import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
14
14
  /**
15
15
  * <p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and
16
- * receive meeting notifications. For more information
17
- * about the meeting APIs, see <a href="http://amazonaws.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_meetings">Amazon Chime SDK meetings</a>.</p>
16
+ * receive meeting notifications. For more information about the meeting APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Meetings.html">Amazon Chime SDK meetings</a>.</p>
18
17
  */
19
18
  export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
20
19
  /**
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
10
10
  import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "./commands/CreateAttendeeCommand";
11
11
  import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "./commands/CreateMeetingCommand";
@@ -39,7 +39,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
39
39
  * A function that can calculate the length of a request body.
40
40
  * @internal
41
41
  */
42
- bodyLengthChecker?: (body: any) => number | undefined;
42
+ bodyLengthChecker?: __BodyLengthCalculator;
43
43
  /**
44
44
  * A function that converts a stream into an array of bytes.
45
45
  * @internal
@@ -138,8 +138,7 @@ export interface ChimeSDKMeetingsClientResolvedConfig extends ChimeSDKMeetingsCl
138
138
  }
139
139
  /**
140
140
  * <p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and
141
- * receive meeting notifications. For more information
142
- * about the meeting APIs, see <a href="http://amazonaws.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_meetings">Amazon Chime SDK meetings</a>.</p>
141
+ * receive meeting notifications. For more information about the meeting APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Meetings.html">Amazon Chime SDK meetings</a>.</p>
143
142
  */
144
143
  export declare class ChimeSDKMeetingsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ChimeSDKMeetingsClientResolvedConfig> {
145
144
  /**
@@ -3,3 +3,4 @@ export * from "./ChimeSDKMeetingsClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ChimeSDKMeetingsServiceException } from "./models/ChimeSDKMeetingsServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ChimeSDKMeetings service.
4
+ */
5
+ export declare class ChimeSDKMeetingsServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
2
3
  /**
3
4
  * <p>An Amazon Chime SDK meeting attendee. Includes a unique
4
5
  * <code>AttendeeId</code> and <code>JoinToken</code>. The
@@ -39,7 +40,7 @@ export declare enum MeetingFeatureStatus {
39
40
  UNAVAILABLE = "UNAVAILABLE"
40
41
  }
41
42
  /**
42
- * <p>An optional category of meeting features that contains audio-specific configurations, such as operating parameters for Amazon Voice Focus.</p>
43
+ * <p>An optional category of meeting features that contains audio-specific configurations, such as operating parameters for Amazon Voice Focus. </p>
43
44
  */
44
45
  export interface AudioFeatures {
45
46
  /**
@@ -56,15 +57,19 @@ export declare namespace AudioFeatures {
56
57
  /**
57
58
  * <p>The input parameters don't match the service's restrictions.</p>
58
59
  */
59
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
60
- name: "BadRequestException";
61
- $fault: "client";
60
+ export declare class BadRequestException extends __BaseException {
61
+ readonly name: "BadRequestException";
62
+ readonly $fault: "client";
62
63
  Code?: string;
63
64
  Message?: string;
64
65
  /**
65
66
  * <p>The request id associated with the call responsible for the exception.</p>
66
67
  */
67
68
  RequestId?: string;
69
+ /**
70
+ * @internal
71
+ */
72
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
68
73
  }
69
74
  /**
70
75
  * <p>The Amazon Chime SDK attendee fields to create, used with the BatchCreateAttendee action.</p>
@@ -139,48 +144,60 @@ export declare namespace BatchCreateAttendeeResponse {
139
144
  /**
140
145
  * <p>The client is permanently forbidden from making the request.</p>
141
146
  */
142
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
143
- name: "ForbiddenException";
144
- $fault: "client";
147
+ export declare class ForbiddenException extends __BaseException {
148
+ readonly name: "ForbiddenException";
149
+ readonly $fault: "client";
145
150
  Code?: string;
146
151
  Message?: string;
147
152
  /**
148
153
  * <p>The request id associated with the call responsible for the exception.</p>
149
154
  */
150
155
  RequestId?: string;
156
+ /**
157
+ * @internal
158
+ */
159
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
151
160
  }
152
161
  /**
153
162
  * <p>The request exceeds the resource limit.</p>
154
163
  */
155
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
156
- name: "LimitExceededException";
157
- $fault: "client";
164
+ export declare class LimitExceededException extends __BaseException {
165
+ readonly name: "LimitExceededException";
166
+ readonly $fault: "client";
158
167
  Code?: string;
159
168
  Message?: string;
160
169
  /**
161
170
  * <p>The request id associated with the call responsible for the exception.</p>
162
171
  */
163
172
  RequestId?: string;
173
+ /**
174
+ * @internal
175
+ */
176
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
164
177
  }
165
178
  /**
166
179
  * <p>One or more of the resources in the request does not exist in the system.</p>
167
180
  */
168
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
169
- name: "NotFoundException";
170
- $fault: "client";
181
+ export declare class NotFoundException extends __BaseException {
182
+ readonly name: "NotFoundException";
183
+ readonly $fault: "client";
171
184
  Code?: string;
172
185
  Message?: string;
173
186
  /**
174
187
  * <p>The request id associated with the call responsible for the exception.</p>
175
188
  */
176
189
  RequestId?: string;
190
+ /**
191
+ * @internal
192
+ */
193
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
177
194
  }
178
195
  /**
179
196
  * <p>The service is currently unavailable.</p>
180
197
  */
181
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
182
- name: "ServiceUnavailableException";
183
- $fault: "server";
198
+ export declare class ServiceUnavailableException extends __BaseException {
199
+ readonly name: "ServiceUnavailableException";
200
+ readonly $fault: "server";
184
201
  Code?: string;
185
202
  Message?: string;
186
203
  /**
@@ -191,19 +208,27 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
191
208
  * <p>The number of seconds the caller should wait before retrying.</p>
192
209
  */
193
210
  RetryAfterSeconds?: string;
211
+ /**
212
+ * @internal
213
+ */
214
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
194
215
  }
195
216
  /**
196
217
  * <p>The user isn't authorized to request a resource.</p>
197
218
  */
198
- export interface UnauthorizedException extends __SmithyException, $MetadataBearer {
199
- name: "UnauthorizedException";
200
- $fault: "client";
219
+ export declare class UnauthorizedException extends __BaseException {
220
+ readonly name: "UnauthorizedException";
221
+ readonly $fault: "client";
201
222
  Code?: string;
202
223
  Message?: string;
203
224
  /**
204
225
  * <p>The request id associated with the call responsible for the exception.</p>
205
226
  */
206
227
  RequestId?: string;
228
+ /**
229
+ * @internal
230
+ */
231
+ constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
207
232
  }
208
233
  export interface CreateAttendeeRequest {
209
234
  /**
@@ -236,18 +261,22 @@ export declare namespace CreateAttendeeResponse {
236
261
  /**
237
262
  * <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
238
263
  */
239
- export interface UnprocessableEntityException extends __SmithyException, $MetadataBearer {
240
- name: "UnprocessableEntityException";
241
- $fault: "client";
264
+ export declare class UnprocessableEntityException extends __BaseException {
265
+ readonly name: "UnprocessableEntityException";
266
+ readonly $fault: "client";
242
267
  Code?: string;
243
268
  Message?: string;
244
269
  /**
245
270
  * <p>The request id associated with the call responsible for the exception.</p>
246
271
  */
247
272
  RequestId?: string;
273
+ /**
274
+ * @internal
275
+ */
276
+ constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
248
277
  }
249
278
  /**
250
- * <p>The configuration settings of the features available to a meeting.</p>
279
+ * <p>The configuration settings of the features available to a meeting.></p>
251
280
  */
252
281
  export interface MeetingFeaturesConfiguration {
253
282
  /**
@@ -294,43 +323,26 @@ export interface CreateMeetingRequest {
294
323
  *
295
324
  * <p>
296
325
  * Available values:
297
- * <code>af-south-1</code>
298
- * ,
299
- * <code>ap-northeast-1</code>
300
- * ,
301
- * <code>ap-northeast-2</code>
302
- * ,
303
- * <code>ap-south-1</code>
304
- * ,
305
- * <code>ap-southeast-1</code>
306
- * ,
307
- * <code>ap-southeast-2</code>
308
- * ,
309
- * <code>ca-central-1</code>
310
- * ,
311
- * <code>eu-central-1</code>
312
- * ,
313
- * <code>eu-north-1</code>
314
- * ,
315
- * <code>eu-south-1</code>
316
- * ,
317
- * <code>eu-west-1</code>
318
- * ,
319
- * <code>eu-west-2</code>
320
- * ,
321
- * <code>eu-west-3</code>
322
- * ,
323
- * <code>sa-east-1</code>
324
- * ,
325
- * <code>us-east-1</code>
326
- * ,
327
- * <code>us-east-2</code>
328
- * ,
329
- * <code>us-west-1</code>
330
- * ,
331
- * <code>us-west-2</code>
332
- * .
326
+ * <code>af-south-1</code>,
327
+ * <code>ap-northeast-1</code>,
328
+ * <code>ap-northeast-2</code>,
329
+ * <code>ap-south-1</code>,
330
+ * <code>ap-southeast-1</code>,
331
+ * <code>ap-southeast-2</code>,
332
+ * <code>ca-central-1</code>,
333
+ * <code>eu-central-1</code>,
334
+ * <code>eu-north-1</code>,
335
+ * <code>eu-south-1</code>,
336
+ * <code>eu-west-1</code>,
337
+ * <code>eu-west-2</code>,
338
+ * <code>eu-west-3</code>,
339
+ * <code>sa-east-1</code>,
340
+ * <code>us-east-1</code>,
341
+ * <code>us-east-2</code>,
342
+ * <code>us-west-1</code>,
343
+ * <code>us-west-2</code>.
333
344
  * </p>
345
+ * <p>Available values in AWS GovCloud (US) Regions: <code>us-gov-east-1</code>, <code>us-gov-west-1</code>.</p>
334
346
  */
335
347
  MediaRegion: string | undefined;
336
348
  /**
@@ -422,6 +434,7 @@ export interface Meeting {
422
434
  * <code>eu-west-1</code>, <code>eu-west-2</code>, <code>eu-west-3</code>,
423
435
  * <code>sa-east-1</code>, <code>us-east-1</code>, <code>us-east-2</code>,
424
436
  * <code>us-west-1</code>, <code>us-west-2</code>.</p>
437
+ * <p>Available values in AWS GovCloud (US) Regions: <code>us-gov-east-1</code>, <code>us-gov-west-1</code>.</p>
425
438
  */
426
439
  MediaRegion?: string;
427
440
  /**
@@ -459,6 +472,29 @@ export interface CreateMeetingWithAttendeesRequest {
459
472
  ClientRequestToken?: string;
460
473
  /**
461
474
  * <p>The Region in which to create the meeting.</p>
475
+ *
476
+ * <p>
477
+ * Available values:
478
+ * <code>af-south-1</code>,
479
+ * <code>ap-northeast-1</code>,
480
+ * <code>ap-northeast-2</code>,
481
+ * <code>ap-south-1</code>,
482
+ * <code>ap-southeast-1</code>,
483
+ * <code>ap-southeast-2</code>,
484
+ * <code>ca-central-1</code>,
485
+ * <code>eu-central-1</code>,
486
+ * <code>eu-north-1</code>,
487
+ * <code>eu-south-1</code>,
488
+ * <code>eu-west-1</code>,
489
+ * <code>eu-west-2</code>,
490
+ * <code>eu-west-3</code>,
491
+ * <code>sa-east-1</code>,
492
+ * <code>us-east-1</code>,
493
+ * <code>us-east-2</code>,
494
+ * <code>us-west-1</code>,
495
+ * <code>us-west-2</code>.
496
+ * </p>
497
+ * <p>Available values in AWS GovCloud (US) Regions: <code>us-gov-east-1</code>, <code>us-gov-west-1</code>.</p>
462
498
  */
463
499
  MediaRegion: string | undefined;
464
500
  /**
@@ -738,7 +774,7 @@ export interface EngineTranscribeSettings {
738
774
  /**
739
775
  * <p>The language code specified for the Amazon Transcribe engine.</p>
740
776
  */
741
- LanguageCode: TranscribeLanguageCode | string | undefined;
777
+ LanguageCode?: TranscribeLanguageCode | string;
742
778
  /**
743
779
  * <p>The filtering method passed to Amazon Transcribe.</p>
744
780
  */
@@ -776,11 +812,12 @@ export interface EngineTranscribeSettings {
776
812
  /**
777
813
  * <p>Lists the PII entity types you want to identify or redact. To specify entity types, you must enable <code>ContentIdentificationType</code> or <code>ContentRedactionType</code>.</p>
778
814
  *
779
- * <p>PIIEntityTypes must be comma-separated. The available values are:
780
- * <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING, CREDIT_DEBIT_NUMBER</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code>, <code>PIN</code>, <code>EMAIL</code>,
781
- * <code>ADDRESS</code>, <code>NAME</code>, <code>PHONE</code>, <code>SSN</code>, and <code>ALL</code>.</p>
815
+ * <p>
816
+ * <code>PIIEntityTypes</code> must be comma-separated. The available values are:
817
+ * <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING, CREDIT_DEBIT_NUMBER</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code>, <code>PIN</code>, <code>EMAIL</code>,
818
+ * <code>ADDRESS</code>, <code>NAME</code>, <code>PHONE</code>, <code>SSN</code>, and <code>ALL</code>.</p>
782
819
  *
783
- * <p>
820
+ * <p>
784
821
  * <code>PiiEntityTypes</code> is an optional parameter with a default value of <code>ALL</code>.</p>
785
822
  */
786
823
  PiiEntityTypes?: string;
@@ -788,6 +825,18 @@ export interface EngineTranscribeSettings {
788
825
  * <p>The name of the language model used during transcription.</p>
789
826
  */
790
827
  LanguageModelName?: string;
828
+ /**
829
+ * <p>Automatically identifies the language spoken in media files.</p>
830
+ */
831
+ IdentifyLanguage?: boolean;
832
+ /**
833
+ * <p>Language codes for the languages that you want to identify. You must provide at least 2 codes.</p>
834
+ */
835
+ LanguageOptions?: string;
836
+ /**
837
+ * <p>Language code for the preferred language.</p>
838
+ */
839
+ PreferredLanguage?: TranscribeLanguageCode | string;
791
840
  }
792
841
  export declare namespace EngineTranscribeSettings {
793
842
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
8
8
  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;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
10
10
  import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "./commands/CreateAttendeeCommand";
11
11
  import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "./commands/CreateMeetingCommand";
@@ -27,7 +27,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
27
27
 
28
28
  urlParser?: __UrlParser;
29
29
 
30
- bodyLengthChecker?: (body: any) => number | undefined;
30
+ bodyLengthChecker?: __BodyLengthCalculator;
31
31
 
32
32
  streamCollector?: __StreamCollector;
33
33
 
@@ -3,3 +3,4 @@ export * from "./ChimeSDKMeetingsClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ChimeSDKMeetingsServiceException } from "./models/ChimeSDKMeetingsServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ChimeSDKMeetingsServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
2
3
 
3
4
  export interface Attendee {
4
5
 
@@ -26,13 +27,15 @@ export declare namespace AudioFeatures {
26
27
  const filterSensitiveLog: (obj: AudioFeatures) => any;
27
28
  }
28
29
 
29
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
30
- name: "BadRequestException";
31
- $fault: "client";
30
+ export declare class BadRequestException extends __BaseException {
31
+ readonly name: "BadRequestException";
32
+ readonly $fault: "client";
32
33
  Code?: string;
33
34
  Message?: string;
34
35
 
35
36
  RequestId?: string;
37
+
38
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
36
39
  }
37
40
 
38
41
  export interface CreateAttendeeRequestItem {
@@ -77,51 +80,61 @@ export declare namespace BatchCreateAttendeeResponse {
77
80
  const filterSensitiveLog: (obj: BatchCreateAttendeeResponse) => any;
78
81
  }
79
82
 
80
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
81
- name: "ForbiddenException";
82
- $fault: "client";
83
+ export declare class ForbiddenException extends __BaseException {
84
+ readonly name: "ForbiddenException";
85
+ readonly $fault: "client";
83
86
  Code?: string;
84
87
  Message?: string;
85
88
 
86
89
  RequestId?: string;
90
+
91
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
87
92
  }
88
93
 
89
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
90
- name: "LimitExceededException";
91
- $fault: "client";
94
+ export declare class LimitExceededException extends __BaseException {
95
+ readonly name: "LimitExceededException";
96
+ readonly $fault: "client";
92
97
  Code?: string;
93
98
  Message?: string;
94
99
 
95
100
  RequestId?: string;
101
+
102
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
96
103
  }
97
104
 
98
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
99
- name: "NotFoundException";
100
- $fault: "client";
105
+ export declare class NotFoundException extends __BaseException {
106
+ readonly name: "NotFoundException";
107
+ readonly $fault: "client";
101
108
  Code?: string;
102
109
  Message?: string;
103
110
 
104
111
  RequestId?: string;
112
+
113
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
105
114
  }
106
115
 
107
- export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
108
- name: "ServiceUnavailableException";
109
- $fault: "server";
116
+ export declare class ServiceUnavailableException extends __BaseException {
117
+ readonly name: "ServiceUnavailableException";
118
+ readonly $fault: "server";
110
119
  Code?: string;
111
120
  Message?: string;
112
121
 
113
122
  RequestId?: string;
114
123
 
115
124
  RetryAfterSeconds?: string;
125
+
126
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
116
127
  }
117
128
 
118
- export interface UnauthorizedException extends __SmithyException, $MetadataBearer {
119
- name: "UnauthorizedException";
120
- $fault: "client";
129
+ export declare class UnauthorizedException extends __BaseException {
130
+ readonly name: "UnauthorizedException";
131
+ readonly $fault: "client";
121
132
  Code?: string;
122
133
  Message?: string;
123
134
 
124
135
  RequestId?: string;
136
+
137
+ constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
125
138
  }
126
139
  export interface CreateAttendeeRequest {
127
140
 
@@ -142,13 +155,15 @@ export declare namespace CreateAttendeeResponse {
142
155
  const filterSensitiveLog: (obj: CreateAttendeeResponse) => any;
143
156
  }
144
157
 
145
- export interface UnprocessableEntityException extends __SmithyException, $MetadataBearer {
146
- name: "UnprocessableEntityException";
147
- $fault: "client";
158
+ export declare class UnprocessableEntityException extends __BaseException {
159
+ readonly name: "UnprocessableEntityException";
160
+ readonly $fault: "client";
148
161
  Code?: string;
149
162
  Message?: string;
150
163
 
151
164
  RequestId?: string;
165
+
166
+ constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
152
167
  }
153
168
 
154
169
  export interface MeetingFeaturesConfiguration {
@@ -439,7 +454,7 @@ export declare enum TranscribeVocabularyFilterMethod {
439
454
 
440
455
  export interface EngineTranscribeSettings {
441
456
 
442
- LanguageCode: TranscribeLanguageCode | string | undefined;
457
+ LanguageCode?: TranscribeLanguageCode | string;
443
458
 
444
459
  VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | string;
445
460
 
@@ -460,6 +475,12 @@ export interface EngineTranscribeSettings {
460
475
  PiiEntityTypes?: string;
461
476
 
462
477
  LanguageModelName?: string;
478
+
479
+ IdentifyLanguage?: boolean;
480
+
481
+ LanguageOptions?: string;
482
+
483
+ PreferredLanguage?: TranscribeLanguageCode | string;
463
484
  }
464
485
  export declare namespace EngineTranscribeSettings {
465
486
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ChimeSDKMeetingsClientConfig) =>
6
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
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;