@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.
Files changed (40) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ChimeSDKMeetingsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +115 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +139 -458
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ChimeSDKMeetingsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +108 -1
  9. package/dist-es/protocols/Aws_restJson1.js +261 -510
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ChimeSDKMeetingsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +51 -22
  13. package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +60 -0
  14. package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +84 -0
  15. package/dist-types/ts3.4/commands/BatchCreateAttendeeCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateAttendeeCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateMeetingCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateMeetingWithAttendeesCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteAttendeeCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteMeetingCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetAttendeeCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetMeetingCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListAttendeesCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/StartMeetingTranscriptionCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/StopMeetingTranscriptionCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  28. package/dist-types/ts3.4/index.d.ts +6 -0
  29. package/dist-types/ts3.4/models/ChimeSDKMeetingsServiceException.d.ts +6 -0
  30. package/dist-types/ts3.4/models/index.d.ts +1 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +511 -0
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  33. package/dist-types/ts3.4/pagination/ListAttendeesPaginator.d.ts +4 -0
  34. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +35 -0
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  40. package/package.json +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,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
@@ -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,15 +261,19 @@ 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
279
  * <p>The configuration settings of the features available to a meeting.</p>
@@ -0,0 +1,60 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { ChimeSDKMeetingsClient } from "./ChimeSDKMeetingsClient";
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
+
15
+ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
16
+
17
+ batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<BatchCreateAttendeeCommandOutput>;
18
+ batchCreateAttendee(args: BatchCreateAttendeeCommandInput, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
19
+ batchCreateAttendee(args: BatchCreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchCreateAttendeeCommandOutput) => void): void;
20
+
21
+ createAttendee(args: CreateAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttendeeCommandOutput>;
22
+ createAttendee(args: CreateAttendeeCommandInput, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
23
+ createAttendee(args: CreateAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttendeeCommandOutput) => void): void;
24
+
25
+ createMeeting(args: CreateMeetingCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingCommandOutput>;
26
+ createMeeting(args: CreateMeetingCommandInput, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
27
+ createMeeting(args: CreateMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingCommandOutput) => void): void;
28
+
29
+ createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<CreateMeetingWithAttendeesCommandOutput>;
30
+ createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
31
+ createMeetingWithAttendees(args: CreateMeetingWithAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMeetingWithAttendeesCommandOutput) => void): void;
32
+
33
+ deleteAttendee(args: DeleteAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttendeeCommandOutput>;
34
+ deleteAttendee(args: DeleteAttendeeCommandInput, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
35
+ deleteAttendee(args: DeleteAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttendeeCommandOutput) => void): void;
36
+
37
+ deleteMeeting(args: DeleteMeetingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMeetingCommandOutput>;
38
+ deleteMeeting(args: DeleteMeetingCommandInput, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
39
+ deleteMeeting(args: DeleteMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMeetingCommandOutput) => void): void;
40
+
41
+ getAttendee(args: GetAttendeeCommandInput, options?: __HttpHandlerOptions): Promise<GetAttendeeCommandOutput>;
42
+ getAttendee(args: GetAttendeeCommandInput, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
43
+ getAttendee(args: GetAttendeeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttendeeCommandOutput) => void): void;
44
+
45
+ getMeeting(args: GetMeetingCommandInput, options?: __HttpHandlerOptions): Promise<GetMeetingCommandOutput>;
46
+ getMeeting(args: GetMeetingCommandInput, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
47
+ getMeeting(args: GetMeetingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMeetingCommandOutput) => void): void;
48
+
49
+ listAttendees(args: ListAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<ListAttendeesCommandOutput>;
50
+ listAttendees(args: ListAttendeesCommandInput, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
51
+ listAttendees(args: ListAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
52
+
53
+ startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartMeetingTranscriptionCommandOutput>;
54
+ startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
55
+ startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
56
+
57
+ stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopMeetingTranscriptionCommandOutput>;
58
+ stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
59
+ stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
60
+ }
@@ -0,0 +1,84 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
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";
9
+ import { BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput } from "./commands/BatchCreateAttendeeCommand";
10
+ import { CreateAttendeeCommandInput, CreateAttendeeCommandOutput } from "./commands/CreateAttendeeCommand";
11
+ import { CreateMeetingCommandInput, CreateMeetingCommandOutput } from "./commands/CreateMeetingCommand";
12
+ import { CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput } from "./commands/CreateMeetingWithAttendeesCommand";
13
+ import { DeleteAttendeeCommandInput, DeleteAttendeeCommandOutput } from "./commands/DeleteAttendeeCommand";
14
+ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./commands/DeleteMeetingCommand";
15
+ import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
16
+ import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
17
+ import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
18
+ import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
19
+ import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
20
+ export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput;
21
+ export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput;
22
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
23
+
24
+ requestHandler?: __HttpHandler;
25
+
26
+ sha256?: __HashConstructor;
27
+
28
+ urlParser?: __UrlParser;
29
+
30
+ bodyLengthChecker?: (body: any) => number | undefined;
31
+
32
+ streamCollector?: __StreamCollector;
33
+
34
+ base64Decoder?: __Decoder;
35
+
36
+ base64Encoder?: __Encoder;
37
+
38
+ utf8Decoder?: __Decoder;
39
+
40
+ utf8Encoder?: __Encoder;
41
+
42
+ runtime?: string;
43
+
44
+ disableHostPrefix?: boolean;
45
+
46
+ maxAttempts?: number | __Provider<number>;
47
+
48
+ retryMode?: string | __Provider<string>;
49
+
50
+ logger?: __Logger;
51
+
52
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
53
+
54
+ useFipsEndpoint?: boolean | __Provider<boolean>;
55
+
56
+ serviceId?: string;
57
+
58
+ region?: string | __Provider<string>;
59
+
60
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
61
+
62
+ regionInfoProvider?: RegionInfoProvider;
63
+
64
+ defaultUserAgentProvider?: Provider<__UserAgent>;
65
+
66
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
67
+ }
68
+ declare type ChimeSDKMeetingsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
69
+
70
+ export interface ChimeSDKMeetingsClientConfig extends ChimeSDKMeetingsClientConfigType {
71
+ }
72
+ declare type ChimeSDKMeetingsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
73
+
74
+ export interface ChimeSDKMeetingsClientResolvedConfig extends ChimeSDKMeetingsClientResolvedConfigType {
75
+ }
76
+
77
+ export declare class ChimeSDKMeetingsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ChimeSDKMeetingsClientResolvedConfig> {
78
+
79
+ readonly config: ChimeSDKMeetingsClientResolvedConfig;
80
+ constructor(configuration: ChimeSDKMeetingsClientConfig);
81
+
82
+ destroy(): void;
83
+ }
84
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { BatchCreateAttendeeRequest, BatchCreateAttendeeResponse } from "../models/models_0";
5
+ export interface BatchCreateAttendeeCommandInput extends BatchCreateAttendeeRequest {
6
+ }
7
+ export interface BatchCreateAttendeeCommandOutput extends BatchCreateAttendeeResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class BatchCreateAttendeeCommand extends $Command<BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: BatchCreateAttendeeCommandInput;
12
+ constructor(input: BatchCreateAttendeeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { CreateAttendeeRequest, CreateAttendeeResponse } from "../models/models_0";
5
+ export interface CreateAttendeeCommandInput extends CreateAttendeeRequest {
6
+ }
7
+ export interface CreateAttendeeCommandOutput extends CreateAttendeeResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateAttendeeCommand extends $Command<CreateAttendeeCommandInput, CreateAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: CreateAttendeeCommandInput;
12
+ constructor(input: CreateAttendeeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAttendeeCommandInput, CreateAttendeeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { CreateMeetingRequest, CreateMeetingResponse } from "../models/models_0";
5
+ export interface CreateMeetingCommandInput extends CreateMeetingRequest {
6
+ }
7
+ export interface CreateMeetingCommandOutput extends CreateMeetingResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateMeetingCommand extends $Command<CreateMeetingCommandInput, CreateMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: CreateMeetingCommandInput;
12
+ constructor(input: CreateMeetingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMeetingCommandInput, CreateMeetingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { CreateMeetingWithAttendeesRequest, CreateMeetingWithAttendeesResponse } from "../models/models_0";
5
+ export interface CreateMeetingWithAttendeesCommandInput extends CreateMeetingWithAttendeesRequest {
6
+ }
7
+ export interface CreateMeetingWithAttendeesCommandOutput extends CreateMeetingWithAttendeesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateMeetingWithAttendeesCommand extends $Command<CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: CreateMeetingWithAttendeesCommandInput;
12
+ constructor(input: CreateMeetingWithAttendeesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { DeleteAttendeeRequest } from "../models/models_0";
5
+ export interface DeleteAttendeeCommandInput extends DeleteAttendeeRequest {
6
+ }
7
+ export interface DeleteAttendeeCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteAttendeeCommand extends $Command<DeleteAttendeeCommandInput, DeleteAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: DeleteAttendeeCommandInput;
12
+ constructor(input: DeleteAttendeeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAttendeeCommandInput, DeleteAttendeeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { DeleteMeetingRequest } from "../models/models_0";
5
+ export interface DeleteMeetingCommandInput extends DeleteMeetingRequest {
6
+ }
7
+ export interface DeleteMeetingCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteMeetingCommand extends $Command<DeleteMeetingCommandInput, DeleteMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: DeleteMeetingCommandInput;
12
+ constructor(input: DeleteMeetingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMeetingCommandInput, DeleteMeetingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { GetAttendeeRequest, GetAttendeeResponse } from "../models/models_0";
5
+ export interface GetAttendeeCommandInput extends GetAttendeeRequest {
6
+ }
7
+ export interface GetAttendeeCommandOutput extends GetAttendeeResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetAttendeeCommand extends $Command<GetAttendeeCommandInput, GetAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: GetAttendeeCommandInput;
12
+ constructor(input: GetAttendeeCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttendeeCommandInput, GetAttendeeCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { GetMeetingRequest, GetMeetingResponse } from "../models/models_0";
5
+ export interface GetMeetingCommandInput extends GetMeetingRequest {
6
+ }
7
+ export interface GetMeetingCommandOutput extends GetMeetingResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetMeetingCommand extends $Command<GetMeetingCommandInput, GetMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: GetMeetingCommandInput;
12
+ constructor(input: GetMeetingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMeetingCommandInput, GetMeetingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { ListAttendeesRequest, ListAttendeesResponse } from "../models/models_0";
5
+ export interface ListAttendeesCommandInput extends ListAttendeesRequest {
6
+ }
7
+ export interface ListAttendeesCommandOutput extends ListAttendeesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListAttendeesCommand extends $Command<ListAttendeesCommandInput, ListAttendeesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: ListAttendeesCommandInput;
12
+ constructor(input: ListAttendeesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAttendeesCommandInput, ListAttendeesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { StartMeetingTranscriptionRequest } from "../models/models_0";
5
+ export interface StartMeetingTranscriptionCommandInput extends StartMeetingTranscriptionRequest {
6
+ }
7
+ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class StartMeetingTranscriptionCommand extends $Command<StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: StartMeetingTranscriptionCommandInput;
12
+ constructor(input: StartMeetingTranscriptionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
4
+ import { StopMeetingTranscriptionRequest } from "../models/models_0";
5
+ export interface StopMeetingTranscriptionCommandInput extends StopMeetingTranscriptionRequest {
6
+ }
7
+ export interface StopMeetingTranscriptionCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class StopMeetingTranscriptionCommand extends $Command<StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
11
+ readonly input: StopMeetingTranscriptionCommandInput;
12
+ constructor(input: StopMeetingTranscriptionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,11 @@
1
+ export * from "./BatchCreateAttendeeCommand";
2
+ export * from "./CreateAttendeeCommand";
3
+ export * from "./CreateMeetingCommand";
4
+ export * from "./CreateMeetingWithAttendeesCommand";
5
+ export * from "./DeleteAttendeeCommand";
6
+ export * from "./DeleteMeetingCommand";
7
+ export * from "./GetAttendeeCommand";
8
+ export * from "./GetMeetingCommand";
9
+ export * from "./ListAttendeesCommand";
10
+ export * from "./StartMeetingTranscriptionCommand";
11
+ export * from "./StopMeetingTranscriptionCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./ChimeSDKMeetings";
2
+ export * from "./ChimeSDKMeetingsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
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
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";