@aws-sdk/client-chime-sdk-meetings 3.52.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.
@@ -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>
@@ -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 {
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.52.0",
4
+ "version": "3.53.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,34 +18,34 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.53.0",
22
+ "@aws-sdk/config-resolver": "3.53.0",
23
+ "@aws-sdk/credential-provider-node": "3.53.0",
24
+ "@aws-sdk/fetch-http-handler": "3.53.0",
25
+ "@aws-sdk/hash-node": "3.53.0",
26
+ "@aws-sdk/invalid-dependency": "3.53.0",
27
+ "@aws-sdk/middleware-content-length": "3.53.0",
28
+ "@aws-sdk/middleware-host-header": "3.53.0",
29
+ "@aws-sdk/middleware-logger": "3.53.0",
30
+ "@aws-sdk/middleware-retry": "3.53.0",
31
+ "@aws-sdk/middleware-serde": "3.53.0",
32
+ "@aws-sdk/middleware-signing": "3.53.0",
33
+ "@aws-sdk/middleware-stack": "3.53.0",
34
+ "@aws-sdk/middleware-user-agent": "3.53.0",
35
+ "@aws-sdk/node-config-provider": "3.53.0",
36
+ "@aws-sdk/node-http-handler": "3.53.0",
37
+ "@aws-sdk/protocol-http": "3.53.0",
38
+ "@aws-sdk/smithy-client": "3.53.0",
39
+ "@aws-sdk/types": "3.53.0",
40
+ "@aws-sdk/url-parser": "3.53.0",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.52.0",
44
44
  "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.53.0",
48
+ "@aws-sdk/util-user-agent-node": "3.53.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0",