@aws-sdk/client-chime-sdk-media-pipelines 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.
- package/dist-cjs/index.js +229 -228
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +228 -0
- package/dist-es/models/errors.js +163 -0
- package/dist-es/models/models_0.js +1 -391
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +604 -0
- package/dist-types/models/errors.d.ts +175 -0
- package/dist-types/models/models_0.d.ts +1 -778
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +313 -0
- package/dist-types/ts3.4/models/errors.d.ts +87 -0
- package/dist-types/ts3.4/models/models_0.d.ts +48 -399
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException";
|
|
3
|
+
import { ErrorCode } from "./enums";
|
|
4
|
+
/**
|
|
5
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class BadRequestException extends __BaseException {
|
|
9
|
+
readonly name: "BadRequestException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
Code?: ErrorCode | undefined;
|
|
12
|
+
Message?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
RequestId?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export declare class ForbiddenException extends __BaseException {
|
|
28
|
+
readonly name: "ForbiddenException";
|
|
29
|
+
readonly $fault: "client";
|
|
30
|
+
Code?: ErrorCode | undefined;
|
|
31
|
+
Message?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The request id associated with the call responsible for the exception.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
RequestId?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The request exceeds the resource limit.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
47
|
+
readonly name: "ResourceLimitExceededException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Code?: ErrorCode | undefined;
|
|
50
|
+
Message?: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
RequestId?: string | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
59
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* <p>The service encountered an unexpected error.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export declare class ServiceFailureException extends __BaseException {
|
|
66
|
+
readonly name: "ServiceFailureException";
|
|
67
|
+
readonly $fault: "server";
|
|
68
|
+
Code?: ErrorCode | undefined;
|
|
69
|
+
Message?: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
RequestId?: string | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* <p>The service is currently unavailable.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
85
|
+
readonly name: "ServiceUnavailableException";
|
|
86
|
+
readonly $fault: "server";
|
|
87
|
+
Code?: ErrorCode | undefined;
|
|
88
|
+
Message?: string | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
RequestId?: string | undefined;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* <p>The client exceeded its request rate limit.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class ThrottledClientException extends __BaseException {
|
|
104
|
+
readonly name: "ThrottledClientException";
|
|
105
|
+
readonly $fault: "client";
|
|
106
|
+
Code?: ErrorCode | undefined;
|
|
107
|
+
Message?: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
RequestId?: string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
116
|
+
constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* <p>The client is not currently authorized to make the request.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
|
123
|
+
readonly name: "UnauthorizedClientException";
|
|
124
|
+
readonly $fault: "client";
|
|
125
|
+
Code?: ErrorCode | undefined;
|
|
126
|
+
Message?: string | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
RequestId?: string | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* @internal
|
|
134
|
+
*/
|
|
135
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
export declare class NotFoundException extends __BaseException {
|
|
142
|
+
readonly name: "NotFoundException";
|
|
143
|
+
readonly $fault: "client";
|
|
144
|
+
Code?: ErrorCode | undefined;
|
|
145
|
+
Message?: string | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
RequestId?: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* <p>The request could not be processed because of conflict in the current state of the
|
|
158
|
+
* resource.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export declare class ConflictException extends __BaseException {
|
|
162
|
+
readonly name: "ConflictException";
|
|
163
|
+
readonly $fault: "client";
|
|
164
|
+
Code?: ErrorCode | undefined;
|
|
165
|
+
Message?: string | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* <p>The request ID associated with the call responsible for the exception.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
RequestId?: string | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* @internal
|
|
173
|
+
*/
|
|
174
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
175
|
+
}
|