@aws-sdk/client-appstream 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.
- package/dist-cjs/index.js +272 -271
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +271 -0
- package/dist-es/models/errors.js +211 -0
- package/dist-es/models/models_0.js +1 -482
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +623 -0
- package/dist-types/models/errors.d.ts +257 -0
- package/dist-types/models/models_0.d.ts +1 -880
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +344 -0
- package/dist-types/ts3.4/models/errors.d.ts +131 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -475
- package/package.json +19 -19
- 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,257 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>An API error occurred. Wait a few minutes and try again.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
8
|
+
readonly name: "ConcurrentModificationException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* <p>The error message in the exception.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* <p>Indicates an incorrect combination of parameters, or a missing parameter.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
25
|
+
readonly name: "InvalidParameterCombinationException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
/**
|
|
28
|
+
* <p>The error message in the exception.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Message?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* <p>The requested limit exceeds the permitted limit for an account.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
export declare class LimitExceededException extends __BaseException {
|
|
42
|
+
readonly name: "LimitExceededException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
/**
|
|
45
|
+
* <p>The error message in the exception.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
Message?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>The attempted operation is not permitted.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
59
|
+
readonly name: "OperationNotPermittedException";
|
|
60
|
+
readonly $fault: "client";
|
|
61
|
+
/**
|
|
62
|
+
* <p>The error message in the exception.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
Message?: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
69
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* <p>The specified resource was not found.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
76
|
+
readonly name: "ResourceNotFoundException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
/**
|
|
79
|
+
* <p>The error message in the exception.</p>
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
Message?: string | undefined;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* <p>The entitlement can't be found.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class EntitlementNotFoundException extends __BaseException {
|
|
93
|
+
readonly name: "EntitlementNotFoundException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
/**
|
|
96
|
+
* <p>The error message in the exception.</p>
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
Message?: string | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
103
|
+
constructor(opts: __ExceptionOptionType<EntitlementNotFoundException, __BaseException>);
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* <p>The image can't be updated because it's not compatible for updates.</p>
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
export declare class IncompatibleImageException extends __BaseException {
|
|
110
|
+
readonly name: "IncompatibleImageException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
/**
|
|
113
|
+
* <p>The error message in the exception.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
Message?: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
*/
|
|
120
|
+
constructor(opts: __ExceptionOptionType<IncompatibleImageException, __BaseException>);
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* <p>The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support. </p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
export declare class InvalidAccountStatusException extends __BaseException {
|
|
127
|
+
readonly name: "InvalidAccountStatusException";
|
|
128
|
+
readonly $fault: "client";
|
|
129
|
+
/**
|
|
130
|
+
* <p>The error message in the exception.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
Message?: string | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* @internal
|
|
136
|
+
*/
|
|
137
|
+
constructor(opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>);
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* <p>The specified resource already exists.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
144
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
145
|
+
readonly $fault: "client";
|
|
146
|
+
/**
|
|
147
|
+
* <p>The error message in the exception.</p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
Message?: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* <p>The specified resource exists and is not in use, but isn't available.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
export declare class ResourceNotAvailableException extends __BaseException {
|
|
161
|
+
readonly name: "ResourceNotAvailableException";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
/**
|
|
164
|
+
* <p>The error message in the exception.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
Message?: string | undefined;
|
|
168
|
+
/**
|
|
169
|
+
* @internal
|
|
170
|
+
*/
|
|
171
|
+
constructor(opts: __ExceptionOptionType<ResourceNotAvailableException, __BaseException>);
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* <p>The specified role is invalid.</p>
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
export declare class InvalidRoleException extends __BaseException {
|
|
178
|
+
readonly name: "InvalidRoleException";
|
|
179
|
+
readonly $fault: "client";
|
|
180
|
+
/**
|
|
181
|
+
* <p>The error message in the exception.</p>
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
Message?: string | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* @internal
|
|
187
|
+
*/
|
|
188
|
+
constructor(opts: __ExceptionOptionType<InvalidRoleException, __BaseException>);
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* <p>WorkSpaces Applications can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export declare class RequestLimitExceededException extends __BaseException {
|
|
195
|
+
readonly name: "RequestLimitExceededException";
|
|
196
|
+
readonly $fault: "client";
|
|
197
|
+
/**
|
|
198
|
+
* <p>The error message in the exception.</p>
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
Message?: string | undefined;
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
constructor(opts: __ExceptionOptionType<RequestLimitExceededException, __BaseException>);
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* <p>The entitlement already exists.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
212
|
+
readonly name: "EntitlementAlreadyExistsException";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
/**
|
|
215
|
+
* <p>The error message in the exception.</p>
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
Message?: string | undefined;
|
|
219
|
+
/**
|
|
220
|
+
* @internal
|
|
221
|
+
*/
|
|
222
|
+
constructor(opts: __ExceptionOptionType<EntitlementAlreadyExistsException, __BaseException>);
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* <p>The exception that is thrown when a dry run operation is requested. This indicates that the validation checks have been performed successfully, but no actual resources were created or modified.</p>
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
export declare class DryRunOperationException extends __BaseException {
|
|
229
|
+
readonly name: "DryRunOperationException";
|
|
230
|
+
readonly $fault: "client";
|
|
231
|
+
/**
|
|
232
|
+
* <p>The error message in the exception.</p>
|
|
233
|
+
* @public
|
|
234
|
+
*/
|
|
235
|
+
Message?: string | undefined;
|
|
236
|
+
/**
|
|
237
|
+
* @internal
|
|
238
|
+
*/
|
|
239
|
+
constructor(opts: __ExceptionOptionType<DryRunOperationException, __BaseException>);
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* <p>The specified resource is in use.</p>
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
246
|
+
readonly name: "ResourceInUseException";
|
|
247
|
+
readonly $fault: "client";
|
|
248
|
+
/**
|
|
249
|
+
* <p>The error message in the exception.</p>
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
Message?: string | undefined;
|
|
253
|
+
/**
|
|
254
|
+
* @internal
|
|
255
|
+
*/
|
|
256
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
257
|
+
}
|