@aws-sdk/client-chime-sdk-meetings 3.934.0 → 3.936.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.
@@ -0,0 +1,245 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
3
+ /**
4
+ * <p>The input parameters don't match the service's restrictions.</p>
5
+ * @public
6
+ */
7
+ export declare class BadRequestException extends __BaseException {
8
+ readonly name: "BadRequestException";
9
+ readonly $fault: "client";
10
+ Code?: string | undefined;
11
+ Message?: string | undefined;
12
+ /**
13
+ * <p>The request id associated with the call responsible for the exception.</p>
14
+ * @public
15
+ */
16
+ RequestId?: string | undefined;
17
+ /**
18
+ * @internal
19
+ */
20
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
21
+ }
22
+ /**
23
+ * <p>The client is permanently forbidden from making the request.</p>
24
+ * @public
25
+ */
26
+ export declare class ForbiddenException extends __BaseException {
27
+ readonly name: "ForbiddenException";
28
+ readonly $fault: "client";
29
+ Code?: string | undefined;
30
+ Message?: string | undefined;
31
+ /**
32
+ * <p>The request id associated with the call responsible for the exception.</p>
33
+ * @public
34
+ */
35
+ RequestId?: string | undefined;
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>The request exceeds the resource limit.</p>
43
+ * @public
44
+ */
45
+ export declare class LimitExceededException extends __BaseException {
46
+ readonly name: "LimitExceededException";
47
+ readonly $fault: "client";
48
+ Code?: string | undefined;
49
+ Message?: string | undefined;
50
+ /**
51
+ * <p>The request id associated with the call responsible for the exception.</p>
52
+ * @public
53
+ */
54
+ RequestId?: string | undefined;
55
+ /**
56
+ * @internal
57
+ */
58
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
59
+ }
60
+ /**
61
+ * <p>One or more of the resources in the request does not exist in the system.</p>
62
+ * @public
63
+ */
64
+ export declare class NotFoundException extends __BaseException {
65
+ readonly name: "NotFoundException";
66
+ readonly $fault: "client";
67
+ Code?: string | undefined;
68
+ Message?: string | undefined;
69
+ /**
70
+ * <p>The request ID associated with the call responsible for the exception.</p>
71
+ * @public
72
+ */
73
+ RequestId?: string | undefined;
74
+ /**
75
+ * @internal
76
+ */
77
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
78
+ }
79
+ /**
80
+ * <p>The service encountered an unexpected error.</p>
81
+ * @public
82
+ */
83
+ export declare class ServiceFailureException extends __BaseException {
84
+ readonly name: "ServiceFailureException";
85
+ readonly $fault: "server";
86
+ Code?: string | undefined;
87
+ Message?: string | undefined;
88
+ /**
89
+ * <p>The ID of the failed request.</p>
90
+ * @public
91
+ */
92
+ RequestId?: string | undefined;
93
+ /**
94
+ * @internal
95
+ */
96
+ constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
97
+ }
98
+ /**
99
+ * <p>The service is currently unavailable.</p>
100
+ * @public
101
+ */
102
+ export declare class ServiceUnavailableException extends __BaseException {
103
+ readonly name: "ServiceUnavailableException";
104
+ readonly $fault: "server";
105
+ Code?: string | undefined;
106
+ Message?: string | undefined;
107
+ /**
108
+ * <p>The request id associated with the call responsible for the exception.</p>
109
+ * @public
110
+ */
111
+ RequestId?: string | undefined;
112
+ /**
113
+ * <p>The number of seconds the caller should wait before retrying.</p>
114
+ * @public
115
+ */
116
+ RetryAfterSeconds?: string | undefined;
117
+ /**
118
+ * @internal
119
+ */
120
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
121
+ }
122
+ /**
123
+ * <p>The number of customer requests exceeds the request rate limit.</p>
124
+ * @public
125
+ */
126
+ export declare class ThrottlingException extends __BaseException {
127
+ readonly name: "ThrottlingException";
128
+ readonly $fault: "client";
129
+ Code?: string | undefined;
130
+ Message?: string | undefined;
131
+ /**
132
+ * <p>The ID of the request that exceeded the throttling limit.</p>
133
+ * @public
134
+ */
135
+ RequestId?: string | undefined;
136
+ /**
137
+ * @internal
138
+ */
139
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
140
+ }
141
+ /**
142
+ * <p>The user isn't authorized to request a resource.</p>
143
+ * @public
144
+ */
145
+ export declare class UnauthorizedException extends __BaseException {
146
+ readonly name: "UnauthorizedException";
147
+ readonly $fault: "client";
148
+ Code?: string | undefined;
149
+ Message?: string | undefined;
150
+ /**
151
+ * <p>The request id associated with the call responsible for the exception.</p>
152
+ * @public
153
+ */
154
+ RequestId?: string | undefined;
155
+ /**
156
+ * @internal
157
+ */
158
+ constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
159
+ }
160
+ /**
161
+ * <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
162
+ * @public
163
+ */
164
+ export declare class UnprocessableEntityException extends __BaseException {
165
+ readonly name: "UnprocessableEntityException";
166
+ readonly $fault: "client";
167
+ Code?: string | undefined;
168
+ Message?: string | undefined;
169
+ /**
170
+ * <p>The request id associated with the call responsible for the exception.</p>
171
+ * @public
172
+ */
173
+ RequestId?: string | undefined;
174
+ /**
175
+ * @internal
176
+ */
177
+ constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
178
+ }
179
+ /**
180
+ * <p>Multiple instances of the same request have been made simultaneously.</p>
181
+ * @public
182
+ */
183
+ export declare class ConflictException extends __BaseException {
184
+ readonly name: "ConflictException";
185
+ readonly $fault: "client";
186
+ Code?: string | undefined;
187
+ Message?: string | undefined;
188
+ /**
189
+ * <p>The ID of the request involved in the conflict.</p>
190
+ * @public
191
+ */
192
+ RequestId?: string | undefined;
193
+ /**
194
+ * @internal
195
+ */
196
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
197
+ }
198
+ /**
199
+ * <p>The resource that you want to tag couldn't be found.</p>
200
+ * @public
201
+ */
202
+ export declare class ResourceNotFoundException extends __BaseException {
203
+ readonly name: "ResourceNotFoundException";
204
+ readonly $fault: "client";
205
+ Code?: string | undefined;
206
+ Message?: string | undefined;
207
+ /**
208
+ * <p>The ID of the resource that couldn't be found.</p>
209
+ * @public
210
+ */
211
+ RequestId?: string | undefined;
212
+ /**
213
+ * <p>The name of the resource that couldn't be found.</p>
214
+ * @public
215
+ */
216
+ ResourceName?: string | undefined;
217
+ /**
218
+ * @internal
219
+ */
220
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
221
+ }
222
+ /**
223
+ * <p>Too many tags were added to the specified resource.</p>
224
+ * @public
225
+ */
226
+ export declare class TooManyTagsException extends __BaseException {
227
+ readonly name: "TooManyTagsException";
228
+ readonly $fault: "client";
229
+ Code?: string | undefined;
230
+ Message?: string | undefined;
231
+ /**
232
+ * <p>The ID of the request that contains too many tags.</p>
233
+ * @public
234
+ */
235
+ RequestId?: string | undefined;
236
+ /**
237
+ * <p>The name of the resource that received too many tags.</p>
238
+ * @public
239
+ */
240
+ ResourceName?: string | undefined;
241
+ /**
242
+ * @internal
243
+ */
244
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
245
+ }