@aws-sdk/client-chime-sdk-voice 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.
@@ -0,0 +1,171 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ChimeSDKVoiceServiceException as __BaseException } from "./ChimeSDKVoiceServiceException";
3
+ import { ErrorCode } from "./enums";
4
+ /**
5
+ * <p>You don't have the permissions needed to run this action.</p>
6
+ * @public
7
+ */
8
+ export declare class AccessDeniedException extends __BaseException {
9
+ readonly name: "AccessDeniedException";
10
+ readonly $fault: "client";
11
+ Code?: ErrorCode | undefined;
12
+ Message?: string | undefined;
13
+ /**
14
+ * @internal
15
+ */
16
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
17
+ }
18
+ /**
19
+ * <p>The input parameters don't match the service's restrictions.</p>
20
+ * @public
21
+ */
22
+ export declare class BadRequestException extends __BaseException {
23
+ readonly name: "BadRequestException";
24
+ readonly $fault: "client";
25
+ Code?: ErrorCode | undefined;
26
+ Message?: string | undefined;
27
+ /**
28
+ * @internal
29
+ */
30
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
31
+ }
32
+ /**
33
+ * <p>The client is permanently forbidden from making the request.</p>
34
+ * @public
35
+ */
36
+ export declare class ForbiddenException extends __BaseException {
37
+ readonly name: "ForbiddenException";
38
+ readonly $fault: "client";
39
+ Code?: ErrorCode | undefined;
40
+ Message?: string | undefined;
41
+ /**
42
+ * @internal
43
+ */
44
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
45
+ }
46
+ /**
47
+ * <p>The requested resource couldn't be found.</p>
48
+ * @public
49
+ */
50
+ export declare class NotFoundException extends __BaseException {
51
+ readonly name: "NotFoundException";
52
+ readonly $fault: "client";
53
+ Code?: ErrorCode | undefined;
54
+ Message?: string | undefined;
55
+ /**
56
+ * @internal
57
+ */
58
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
59
+ }
60
+ /**
61
+ * <p>The service encountered an unexpected error.</p>
62
+ * @public
63
+ */
64
+ export declare class ServiceFailureException extends __BaseException {
65
+ readonly name: "ServiceFailureException";
66
+ readonly $fault: "server";
67
+ Code?: ErrorCode | undefined;
68
+ Message?: string | undefined;
69
+ /**
70
+ * @internal
71
+ */
72
+ constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
73
+ }
74
+ /**
75
+ * <p>The service is currently unavailable.</p>
76
+ * @public
77
+ */
78
+ export declare class ServiceUnavailableException extends __BaseException {
79
+ readonly name: "ServiceUnavailableException";
80
+ readonly $fault: "server";
81
+ Code?: ErrorCode | undefined;
82
+ Message?: string | undefined;
83
+ /**
84
+ * @internal
85
+ */
86
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
87
+ }
88
+ /**
89
+ * <p>The number of customer requests exceeds the request rate limit.</p>
90
+ * @public
91
+ */
92
+ export declare class ThrottledClientException extends __BaseException {
93
+ readonly name: "ThrottledClientException";
94
+ readonly $fault: "client";
95
+ Code?: ErrorCode | undefined;
96
+ Message?: string | undefined;
97
+ /**
98
+ * @internal
99
+ */
100
+ constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
101
+ }
102
+ /**
103
+ * <p>The client isn't authorized to request a resource.</p>
104
+ * @public
105
+ */
106
+ export declare class UnauthorizedClientException extends __BaseException {
107
+ readonly name: "UnauthorizedClientException";
108
+ readonly $fault: "client";
109
+ Code?: ErrorCode | undefined;
110
+ Message?: string | undefined;
111
+ /**
112
+ * @internal
113
+ */
114
+ constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
115
+ }
116
+ /**
117
+ * <p>The request exceeds the resource limit.</p>
118
+ * @public
119
+ */
120
+ export declare class ResourceLimitExceededException extends __BaseException {
121
+ readonly name: "ResourceLimitExceededException";
122
+ readonly $fault: "client";
123
+ Code?: ErrorCode | undefined;
124
+ Message?: string | undefined;
125
+ /**
126
+ * @internal
127
+ */
128
+ constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
129
+ }
130
+ /**
131
+ * <p>Multiple instances of the same request were made simultaneously.</p>
132
+ * @public
133
+ */
134
+ export declare class ConflictException extends __BaseException {
135
+ readonly name: "ConflictException";
136
+ readonly $fault: "client";
137
+ Code?: ErrorCode | undefined;
138
+ Message?: string | undefined;
139
+ /**
140
+ * @internal
141
+ */
142
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
143
+ }
144
+ /**
145
+ * <p>Access to the target resource is no longer available at the origin server. This condition is likely to be permanent.</p>
146
+ * @public
147
+ */
148
+ export declare class GoneException extends __BaseException {
149
+ readonly name: "GoneException";
150
+ readonly $fault: "client";
151
+ Code?: ErrorCode | undefined;
152
+ Message?: string | undefined;
153
+ /**
154
+ * @internal
155
+ */
156
+ constructor(opts: __ExceptionOptionType<GoneException, __BaseException>);
157
+ }
158
+ /**
159
+ * <p>A well-formed request couldn't be followed due to semantic errors.</p>
160
+ * @public
161
+ */
162
+ export declare class UnprocessableEntityException extends __BaseException {
163
+ readonly name: "UnprocessableEntityException";
164
+ readonly $fault: "client";
165
+ Code?: ErrorCode | undefined;
166
+ Message?: string | undefined;
167
+ /**
168
+ * @internal
169
+ */
170
+ constructor(opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>);
171
+ }