@aws-sdk/client-codedeploy 3.933.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 +222 -221
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +221 -0
- package/dist-es/models/errors.js +1321 -0
- package/dist-es/models/models_0.js +1 -1542
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +493 -0
- package/dist-types/models/errors.d.ts +1395 -0
- package/dist-types/models/models_0.d.ts +112 -1999
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +281 -0
- package/dist-types/ts3.4/models/errors.d.ts +964 -0
- package/dist-types/ts3.4/models/models_0.d.ts +36 -1245
- 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,1395 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CodeDeployServiceException as __BaseException } from "./CodeDeployServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The maximum number of allowed on-premises instances in a single call was
|
|
5
|
+
* exceeded.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class InstanceLimitExceededException extends __BaseException {
|
|
9
|
+
readonly name: "InstanceLimitExceededException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<InstanceLimitExceededException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>An on-premises instance name was not specified.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class InstanceNameRequiredException extends __BaseException {
|
|
21
|
+
readonly name: "InstanceNameRequiredException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<InstanceNameRequiredException, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>The specified on-premises instance is not registered.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class InstanceNotRegisteredException extends __BaseException {
|
|
33
|
+
readonly name: "InstanceNotRegisteredException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<InstanceNotRegisteredException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>The on-premises instance name was specified in an invalid format.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class InvalidInstanceNameException extends __BaseException {
|
|
45
|
+
readonly name: "InvalidInstanceNameException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
/**
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
constructor(opts: __ExceptionOptionType<InvalidInstanceNameException, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>The tag was specified in an invalid format.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class InvalidTagException extends __BaseException {
|
|
57
|
+
readonly name: "InvalidTagException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>The maximum allowed number of tags was exceeded.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
69
|
+
readonly name: "TagLimitExceededException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>A tag was not specified.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class TagRequiredException extends __BaseException {
|
|
81
|
+
readonly name: "TagRequiredException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
constructor(opts: __ExceptionOptionType<TagRequiredException, __BaseException>);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* <p>The maximum number of alarms for a deployment group (10) was exceeded.</p>
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class AlarmsLimitExceededException extends __BaseException {
|
|
93
|
+
readonly name: "AlarmsLimitExceededException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
constructor(opts: __ExceptionOptionType<AlarmsLimitExceededException, __BaseException>);
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* <p>An application with the specified name with the user or Amazon Web Services account
|
|
102
|
+
* already exists.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export declare class ApplicationAlreadyExistsException extends __BaseException {
|
|
106
|
+
readonly name: "ApplicationAlreadyExistsException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
constructor(opts: __ExceptionOptionType<ApplicationAlreadyExistsException, __BaseException>);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* <p>The application does not exist with the user or Amazon Web Services account.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
export declare class ApplicationDoesNotExistException extends __BaseException {
|
|
118
|
+
readonly name: "ApplicationDoesNotExistException";
|
|
119
|
+
readonly $fault: "client";
|
|
120
|
+
/**
|
|
121
|
+
* @internal
|
|
122
|
+
*/
|
|
123
|
+
constructor(opts: __ExceptionOptionType<ApplicationDoesNotExistException, __BaseException>);
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* <p>More applications were attempted to be created than are allowed.</p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export declare class ApplicationLimitExceededException extends __BaseException {
|
|
130
|
+
readonly name: "ApplicationLimitExceededException";
|
|
131
|
+
readonly $fault: "client";
|
|
132
|
+
/**
|
|
133
|
+
* @internal
|
|
134
|
+
*/
|
|
135
|
+
constructor(opts: __ExceptionOptionType<ApplicationLimitExceededException, __BaseException>);
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* <p>The minimum number of required application names was not specified.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
export declare class ApplicationNameRequiredException extends __BaseException {
|
|
142
|
+
readonly name: "ApplicationNameRequiredException";
|
|
143
|
+
readonly $fault: "client";
|
|
144
|
+
/**
|
|
145
|
+
* @internal
|
|
146
|
+
*/
|
|
147
|
+
constructor(opts: __ExceptionOptionType<ApplicationNameRequiredException, __BaseException>);
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* <p> The specified ARN is not supported. For example, it might be an ARN for a resource
|
|
151
|
+
* that is not expected. </p>
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
154
|
+
export declare class ArnNotSupportedException extends __BaseException {
|
|
155
|
+
readonly name: "ArnNotSupportedException";
|
|
156
|
+
readonly $fault: "client";
|
|
157
|
+
/**
|
|
158
|
+
* @internal
|
|
159
|
+
*/
|
|
160
|
+
constructor(opts: __ExceptionOptionType<ArnNotSupportedException, __BaseException>);
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* <p>The maximum number of names or IDs allowed for this request (100) was exceeded.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
export declare class BatchLimitExceededException extends __BaseException {
|
|
167
|
+
readonly name: "BatchLimitExceededException";
|
|
168
|
+
readonly $fault: "client";
|
|
169
|
+
/**
|
|
170
|
+
* @internal
|
|
171
|
+
*/
|
|
172
|
+
constructor(opts: __ExceptionOptionType<BatchLimitExceededException, __BaseException>);
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* <p>The application name was specified in an invalid format.</p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export declare class InvalidApplicationNameException extends __BaseException {
|
|
179
|
+
readonly name: "InvalidApplicationNameException";
|
|
180
|
+
readonly $fault: "client";
|
|
181
|
+
/**
|
|
182
|
+
* @internal
|
|
183
|
+
*/
|
|
184
|
+
constructor(opts: __ExceptionOptionType<InvalidApplicationNameException, __BaseException>);
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* <p>The revision was specified in an invalid format.</p>
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export declare class InvalidRevisionException extends __BaseException {
|
|
191
|
+
readonly name: "InvalidRevisionException";
|
|
192
|
+
readonly $fault: "client";
|
|
193
|
+
/**
|
|
194
|
+
* @internal
|
|
195
|
+
*/
|
|
196
|
+
constructor(opts: __ExceptionOptionType<InvalidRevisionException, __BaseException>);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* <p>The revision ID was not specified.</p>
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export declare class RevisionRequiredException extends __BaseException {
|
|
203
|
+
readonly name: "RevisionRequiredException";
|
|
204
|
+
readonly $fault: "client";
|
|
205
|
+
/**
|
|
206
|
+
* @internal
|
|
207
|
+
*/
|
|
208
|
+
constructor(opts: __ExceptionOptionType<RevisionRequiredException, __BaseException>);
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* <p>The deployment configuration does not exist with the user or Amazon Web Services account.</p>
|
|
212
|
+
* @public
|
|
213
|
+
*/
|
|
214
|
+
export declare class DeploymentConfigDoesNotExistException extends __BaseException {
|
|
215
|
+
readonly name: "DeploymentConfigDoesNotExistException";
|
|
216
|
+
readonly $fault: "client";
|
|
217
|
+
/**
|
|
218
|
+
* @internal
|
|
219
|
+
*/
|
|
220
|
+
constructor(opts: __ExceptionOptionType<DeploymentConfigDoesNotExistException, __BaseException>);
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* <p>The deployment group name was not specified.</p>
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
export declare class DeploymentGroupNameRequiredException extends __BaseException {
|
|
227
|
+
readonly name: "DeploymentGroupNameRequiredException";
|
|
228
|
+
readonly $fault: "client";
|
|
229
|
+
/**
|
|
230
|
+
* @internal
|
|
231
|
+
*/
|
|
232
|
+
constructor(opts: __ExceptionOptionType<DeploymentGroupNameRequiredException, __BaseException>);
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* <p>The deployment group name was specified in an invalid format.</p>
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
238
|
+
export declare class InvalidDeploymentGroupNameException extends __BaseException {
|
|
239
|
+
readonly name: "InvalidDeploymentGroupNameException";
|
|
240
|
+
readonly $fault: "client";
|
|
241
|
+
/**
|
|
242
|
+
* @internal
|
|
243
|
+
*/
|
|
244
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentGroupNameException, __BaseException>);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* <p>The deployment with the user or Amazon Web Services account does not exist.</p>
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export declare class DeploymentDoesNotExistException extends __BaseException {
|
|
251
|
+
readonly name: "DeploymentDoesNotExistException";
|
|
252
|
+
readonly $fault: "client";
|
|
253
|
+
/**
|
|
254
|
+
* @internal
|
|
255
|
+
*/
|
|
256
|
+
constructor(opts: __ExceptionOptionType<DeploymentDoesNotExistException, __BaseException>);
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* <p>At least one deployment ID must be specified.</p>
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
export declare class DeploymentIdRequiredException extends __BaseException {
|
|
263
|
+
readonly name: "DeploymentIdRequiredException";
|
|
264
|
+
readonly $fault: "client";
|
|
265
|
+
/**
|
|
266
|
+
* @internal
|
|
267
|
+
*/
|
|
268
|
+
constructor(opts: __ExceptionOptionType<DeploymentIdRequiredException, __BaseException>);
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* <p>The instance ID was not specified.</p>
|
|
272
|
+
*
|
|
273
|
+
* @deprecated This exception is deprecated, use DeploymentTargetIdRequiredException instead.
|
|
274
|
+
* @public
|
|
275
|
+
*/
|
|
276
|
+
export declare class InstanceIdRequiredException extends __BaseException {
|
|
277
|
+
readonly name: "InstanceIdRequiredException";
|
|
278
|
+
readonly $fault: "client";
|
|
279
|
+
/**
|
|
280
|
+
* @internal
|
|
281
|
+
*/
|
|
282
|
+
constructor(opts: __ExceptionOptionType<InstanceIdRequiredException, __BaseException>);
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
* <p>The computePlatform is invalid. The computePlatform should be <code>Lambda</code>, <code>Server</code>, or <code>ECS</code>.</p>
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
export declare class InvalidComputePlatformException extends __BaseException {
|
|
289
|
+
readonly name: "InvalidComputePlatformException";
|
|
290
|
+
readonly $fault: "client";
|
|
291
|
+
/**
|
|
292
|
+
* @internal
|
|
293
|
+
*/
|
|
294
|
+
constructor(opts: __ExceptionOptionType<InvalidComputePlatformException, __BaseException>);
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* <p>At least one of the deployment IDs was specified in an invalid format.</p>
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
export declare class InvalidDeploymentIdException extends __BaseException {
|
|
301
|
+
readonly name: "InvalidDeploymentIdException";
|
|
302
|
+
readonly $fault: "client";
|
|
303
|
+
/**
|
|
304
|
+
* @internal
|
|
305
|
+
*/
|
|
306
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentIdException, __BaseException>);
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* <p>The specified deployment has not started.</p>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export declare class DeploymentNotStartedException extends __BaseException {
|
|
313
|
+
readonly name: "DeploymentNotStartedException";
|
|
314
|
+
readonly $fault: "client";
|
|
315
|
+
/**
|
|
316
|
+
* @internal
|
|
317
|
+
*/
|
|
318
|
+
constructor(opts: __ExceptionOptionType<DeploymentNotStartedException, __BaseException>);
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* <p> The provided target ID does not belong to the attempted deployment. </p>
|
|
322
|
+
* @public
|
|
323
|
+
*/
|
|
324
|
+
export declare class DeploymentTargetDoesNotExistException extends __BaseException {
|
|
325
|
+
readonly name: "DeploymentTargetDoesNotExistException";
|
|
326
|
+
readonly $fault: "client";
|
|
327
|
+
/**
|
|
328
|
+
* @internal
|
|
329
|
+
*/
|
|
330
|
+
constructor(opts: __ExceptionOptionType<DeploymentTargetDoesNotExistException, __BaseException>);
|
|
331
|
+
}
|
|
332
|
+
/**
|
|
333
|
+
* <p> A deployment target ID was not provided. </p>
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
export declare class DeploymentTargetIdRequiredException extends __BaseException {
|
|
337
|
+
readonly name: "DeploymentTargetIdRequiredException";
|
|
338
|
+
readonly $fault: "client";
|
|
339
|
+
/**
|
|
340
|
+
* @internal
|
|
341
|
+
*/
|
|
342
|
+
constructor(opts: __ExceptionOptionType<DeploymentTargetIdRequiredException, __BaseException>);
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* <p> The maximum number of targets that can be associated with an Amazon ECS or
|
|
346
|
+
* Lambda deployment was exceeded. The target list of both types of
|
|
347
|
+
* deployments must have exactly one item. This exception does not apply to EC2/On-premises
|
|
348
|
+
* deployments. </p>
|
|
349
|
+
* @public
|
|
350
|
+
*/
|
|
351
|
+
export declare class DeploymentTargetListSizeExceededException extends __BaseException {
|
|
352
|
+
readonly name: "DeploymentTargetListSizeExceededException";
|
|
353
|
+
readonly $fault: "client";
|
|
354
|
+
/**
|
|
355
|
+
* @internal
|
|
356
|
+
*/
|
|
357
|
+
constructor(opts: __ExceptionOptionType<DeploymentTargetListSizeExceededException, __BaseException>);
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* <p>The specified instance does not exist in the deployment group.</p>
|
|
361
|
+
*
|
|
362
|
+
* @deprecated This exception is deprecated, use DeploymentTargetDoesNotExistException instead.
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
365
|
+
export declare class InstanceDoesNotExistException extends __BaseException {
|
|
366
|
+
readonly name: "InstanceDoesNotExistException";
|
|
367
|
+
readonly $fault: "client";
|
|
368
|
+
/**
|
|
369
|
+
* @internal
|
|
370
|
+
*/
|
|
371
|
+
constructor(opts: __ExceptionOptionType<InstanceDoesNotExistException, __BaseException>);
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* <p> The target ID provided was not valid. </p>
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
export declare class InvalidDeploymentTargetIdException extends __BaseException {
|
|
378
|
+
readonly name: "InvalidDeploymentTargetIdException";
|
|
379
|
+
readonly $fault: "client";
|
|
380
|
+
/**
|
|
381
|
+
* @internal
|
|
382
|
+
*/
|
|
383
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentTargetIdException, __BaseException>);
|
|
384
|
+
}
|
|
385
|
+
/**
|
|
386
|
+
* <p>A bucket name is required, but was not provided.</p>
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
export declare class BucketNameFilterRequiredException extends __BaseException {
|
|
390
|
+
readonly name: "BucketNameFilterRequiredException";
|
|
391
|
+
readonly $fault: "client";
|
|
392
|
+
/**
|
|
393
|
+
* @internal
|
|
394
|
+
*/
|
|
395
|
+
constructor(opts: __ExceptionOptionType<BucketNameFilterRequiredException, __BaseException>);
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* <p>The deployment is already complete.</p>
|
|
399
|
+
* @public
|
|
400
|
+
*/
|
|
401
|
+
export declare class DeploymentAlreadyCompletedException extends __BaseException {
|
|
402
|
+
readonly name: "DeploymentAlreadyCompletedException";
|
|
403
|
+
readonly $fault: "client";
|
|
404
|
+
/**
|
|
405
|
+
* @internal
|
|
406
|
+
*/
|
|
407
|
+
constructor(opts: __ExceptionOptionType<DeploymentAlreadyCompletedException, __BaseException>);
|
|
408
|
+
}
|
|
409
|
+
/**
|
|
410
|
+
* <p>The deployment does not have a status of Ready and can't continue yet.</p>
|
|
411
|
+
* @public
|
|
412
|
+
*/
|
|
413
|
+
export declare class DeploymentIsNotInReadyStateException extends __BaseException {
|
|
414
|
+
readonly name: "DeploymentIsNotInReadyStateException";
|
|
415
|
+
readonly $fault: "client";
|
|
416
|
+
/**
|
|
417
|
+
* @internal
|
|
418
|
+
*/
|
|
419
|
+
constructor(opts: __ExceptionOptionType<DeploymentIsNotInReadyStateException, __BaseException>);
|
|
420
|
+
}
|
|
421
|
+
/**
|
|
422
|
+
* <p>The specified deployment status doesn't exist or cannot be determined.</p>
|
|
423
|
+
* @public
|
|
424
|
+
*/
|
|
425
|
+
export declare class InvalidDeploymentStatusException extends __BaseException {
|
|
426
|
+
readonly name: "InvalidDeploymentStatusException";
|
|
427
|
+
readonly $fault: "client";
|
|
428
|
+
/**
|
|
429
|
+
* @internal
|
|
430
|
+
*/
|
|
431
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentStatusException, __BaseException>);
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
* <p> The wait type is invalid. </p>
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
export declare class InvalidDeploymentWaitTypeException extends __BaseException {
|
|
438
|
+
readonly name: "InvalidDeploymentWaitTypeException";
|
|
439
|
+
readonly $fault: "client";
|
|
440
|
+
/**
|
|
441
|
+
* @internal
|
|
442
|
+
*/
|
|
443
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentWaitTypeException, __BaseException>);
|
|
444
|
+
}
|
|
445
|
+
/**
|
|
446
|
+
* <p>A call was submitted that is not supported for the specified deployment type.</p>
|
|
447
|
+
* @public
|
|
448
|
+
*/
|
|
449
|
+
export declare class UnsupportedActionForDeploymentTypeException extends __BaseException {
|
|
450
|
+
readonly name: "UnsupportedActionForDeploymentTypeException";
|
|
451
|
+
readonly $fault: "client";
|
|
452
|
+
/**
|
|
453
|
+
* @internal
|
|
454
|
+
*/
|
|
455
|
+
constructor(opts: __ExceptionOptionType<UnsupportedActionForDeploymentTypeException, __BaseException>);
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* <p> The specified tags are not valid. </p>
|
|
459
|
+
* @public
|
|
460
|
+
*/
|
|
461
|
+
export declare class InvalidTagsToAddException extends __BaseException {
|
|
462
|
+
readonly name: "InvalidTagsToAddException";
|
|
463
|
+
readonly $fault: "client";
|
|
464
|
+
/**
|
|
465
|
+
* @internal
|
|
466
|
+
*/
|
|
467
|
+
constructor(opts: __ExceptionOptionType<InvalidTagsToAddException, __BaseException>);
|
|
468
|
+
}
|
|
469
|
+
/**
|
|
470
|
+
* <p>The named deployment group with the user or Amazon Web Services account does not
|
|
471
|
+
* exist.</p>
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
474
|
+
export declare class DeploymentGroupDoesNotExistException extends __BaseException {
|
|
475
|
+
readonly name: "DeploymentGroupDoesNotExistException";
|
|
476
|
+
readonly $fault: "client";
|
|
477
|
+
/**
|
|
478
|
+
* @internal
|
|
479
|
+
*/
|
|
480
|
+
constructor(opts: __ExceptionOptionType<DeploymentGroupDoesNotExistException, __BaseException>);
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* <p>The number of allowed deployments was exceeded.</p>
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
486
|
+
export declare class DeploymentLimitExceededException extends __BaseException {
|
|
487
|
+
readonly name: "DeploymentLimitExceededException";
|
|
488
|
+
readonly $fault: "client";
|
|
489
|
+
/**
|
|
490
|
+
* @internal
|
|
491
|
+
*/
|
|
492
|
+
constructor(opts: __ExceptionOptionType<DeploymentLimitExceededException, __BaseException>);
|
|
493
|
+
}
|
|
494
|
+
/**
|
|
495
|
+
* <p>The description is too long.</p>
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
498
|
+
export declare class DescriptionTooLongException extends __BaseException {
|
|
499
|
+
readonly name: "DescriptionTooLongException";
|
|
500
|
+
readonly $fault: "client";
|
|
501
|
+
/**
|
|
502
|
+
* @internal
|
|
503
|
+
*/
|
|
504
|
+
constructor(opts: __ExceptionOptionType<DescriptionTooLongException, __BaseException>);
|
|
505
|
+
}
|
|
506
|
+
/**
|
|
507
|
+
* <p>The format of the alarm configuration is invalid. Possible causes include:</p>
|
|
508
|
+
* <ul>
|
|
509
|
+
* <li>
|
|
510
|
+
* <p>The alarm list is null.</p>
|
|
511
|
+
* </li>
|
|
512
|
+
* <li>
|
|
513
|
+
* <p>The alarm object is null.</p>
|
|
514
|
+
* </li>
|
|
515
|
+
* <li>
|
|
516
|
+
* <p>The alarm name is empty or null or exceeds the limit of 255 characters.</p>
|
|
517
|
+
* </li>
|
|
518
|
+
* <li>
|
|
519
|
+
* <p>Two alarms with the same name have been specified.</p>
|
|
520
|
+
* </li>
|
|
521
|
+
* <li>
|
|
522
|
+
* <p>The alarm configuration is enabled, but the alarm list is empty.</p>
|
|
523
|
+
* </li>
|
|
524
|
+
* </ul>
|
|
525
|
+
* @public
|
|
526
|
+
*/
|
|
527
|
+
export declare class InvalidAlarmConfigException extends __BaseException {
|
|
528
|
+
readonly name: "InvalidAlarmConfigException";
|
|
529
|
+
readonly $fault: "client";
|
|
530
|
+
/**
|
|
531
|
+
* @internal
|
|
532
|
+
*/
|
|
533
|
+
constructor(opts: __ExceptionOptionType<InvalidAlarmConfigException, __BaseException>);
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* <p>The automatic rollback configuration was specified in an invalid format. For example,
|
|
537
|
+
* automatic rollback is enabled, but an invalid triggering event type or no event types
|
|
538
|
+
* were listed.</p>
|
|
539
|
+
* @public
|
|
540
|
+
*/
|
|
541
|
+
export declare class InvalidAutoRollbackConfigException extends __BaseException {
|
|
542
|
+
readonly name: "InvalidAutoRollbackConfigException";
|
|
543
|
+
readonly $fault: "client";
|
|
544
|
+
/**
|
|
545
|
+
* @internal
|
|
546
|
+
*/
|
|
547
|
+
constructor(opts: __ExceptionOptionType<InvalidAutoRollbackConfigException, __BaseException>);
|
|
548
|
+
}
|
|
549
|
+
/**
|
|
550
|
+
* <p>The Auto Scaling group was specified in an invalid format or does not
|
|
551
|
+
* exist.</p>
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
export declare class InvalidAutoScalingGroupException extends __BaseException {
|
|
555
|
+
readonly name: "InvalidAutoScalingGroupException";
|
|
556
|
+
readonly $fault: "client";
|
|
557
|
+
/**
|
|
558
|
+
* @internal
|
|
559
|
+
*/
|
|
560
|
+
constructor(opts: __ExceptionOptionType<InvalidAutoScalingGroupException, __BaseException>);
|
|
561
|
+
}
|
|
562
|
+
/**
|
|
563
|
+
* <p>The deployment configuration name was specified in an invalid format.</p>
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
export declare class InvalidDeploymentConfigNameException extends __BaseException {
|
|
567
|
+
readonly name: "InvalidDeploymentConfigNameException";
|
|
568
|
+
readonly $fault: "client";
|
|
569
|
+
/**
|
|
570
|
+
* @internal
|
|
571
|
+
*/
|
|
572
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentConfigNameException, __BaseException>);
|
|
573
|
+
}
|
|
574
|
+
/**
|
|
575
|
+
* <p>An invalid fileExistsBehavior option was specified to determine how CodeDeploy handles files or directories that already exist in a deployment
|
|
576
|
+
* target location, but weren't part of the previous successful deployment. Valid values
|
|
577
|
+
* include "DISALLOW," "OVERWRITE," and "RETAIN."</p>
|
|
578
|
+
* @public
|
|
579
|
+
*/
|
|
580
|
+
export declare class InvalidFileExistsBehaviorException extends __BaseException {
|
|
581
|
+
readonly name: "InvalidFileExistsBehaviorException";
|
|
582
|
+
readonly $fault: "client";
|
|
583
|
+
/**
|
|
584
|
+
* @internal
|
|
585
|
+
*/
|
|
586
|
+
constructor(opts: __ExceptionOptionType<InvalidFileExistsBehaviorException, __BaseException>);
|
|
587
|
+
}
|
|
588
|
+
/**
|
|
589
|
+
* <p>The GitHub token is not valid.</p>
|
|
590
|
+
* @public
|
|
591
|
+
*/
|
|
592
|
+
export declare class InvalidGitHubAccountTokenException extends __BaseException {
|
|
593
|
+
readonly name: "InvalidGitHubAccountTokenException";
|
|
594
|
+
readonly $fault: "client";
|
|
595
|
+
/**
|
|
596
|
+
* @internal
|
|
597
|
+
*/
|
|
598
|
+
constructor(opts: __ExceptionOptionType<InvalidGitHubAccountTokenException, __BaseException>);
|
|
599
|
+
}
|
|
600
|
+
/**
|
|
601
|
+
* <p>The IgnoreApplicationStopFailures value is invalid. For Lambda
|
|
602
|
+
* deployments, <code>false</code> is expected. For EC2/On-premises deployments,
|
|
603
|
+
* <code>true</code> or <code>false</code> is expected.</p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
export declare class InvalidIgnoreApplicationStopFailuresValueException extends __BaseException {
|
|
607
|
+
readonly name: "InvalidIgnoreApplicationStopFailuresValueException";
|
|
608
|
+
readonly $fault: "client";
|
|
609
|
+
/**
|
|
610
|
+
* @internal
|
|
611
|
+
*/
|
|
612
|
+
constructor(opts: __ExceptionOptionType<InvalidIgnoreApplicationStopFailuresValueException, __BaseException>);
|
|
613
|
+
}
|
|
614
|
+
/**
|
|
615
|
+
* <p>An invalid load balancer name, or no load balancer name, was specified.</p>
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
618
|
+
export declare class InvalidLoadBalancerInfoException extends __BaseException {
|
|
619
|
+
readonly name: "InvalidLoadBalancerInfoException";
|
|
620
|
+
readonly $fault: "client";
|
|
621
|
+
/**
|
|
622
|
+
* @internal
|
|
623
|
+
*/
|
|
624
|
+
constructor(opts: __ExceptionOptionType<InvalidLoadBalancerInfoException, __BaseException>);
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* <p>The service role ARN was specified in an invalid format. Or, if an Auto Scaling
|
|
628
|
+
* group was specified, the specified service role does not grant the appropriate
|
|
629
|
+
* permissions to Amazon EC2 Auto Scaling.</p>
|
|
630
|
+
* @public
|
|
631
|
+
*/
|
|
632
|
+
export declare class InvalidRoleException extends __BaseException {
|
|
633
|
+
readonly name: "InvalidRoleException";
|
|
634
|
+
readonly $fault: "client";
|
|
635
|
+
/**
|
|
636
|
+
* @internal
|
|
637
|
+
*/
|
|
638
|
+
constructor(opts: __ExceptionOptionType<InvalidRoleException, __BaseException>);
|
|
639
|
+
}
|
|
640
|
+
/**
|
|
641
|
+
* <p>The target instance configuration is invalid. Possible causes include:</p>
|
|
642
|
+
* <ul>
|
|
643
|
+
* <li>
|
|
644
|
+
* <p>Configuration data for target instances was entered for an in-place
|
|
645
|
+
* deployment.</p>
|
|
646
|
+
* </li>
|
|
647
|
+
* <li>
|
|
648
|
+
* <p>The limit of 10 tags for a tag type was exceeded.</p>
|
|
649
|
+
* </li>
|
|
650
|
+
* <li>
|
|
651
|
+
* <p>The combined length of the tag names exceeded the limit. </p>
|
|
652
|
+
* </li>
|
|
653
|
+
* <li>
|
|
654
|
+
* <p>A specified tag is not currently applied to any instances.</p>
|
|
655
|
+
* </li>
|
|
656
|
+
* </ul>
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
659
|
+
export declare class InvalidTargetInstancesException extends __BaseException {
|
|
660
|
+
readonly name: "InvalidTargetInstancesException";
|
|
661
|
+
readonly $fault: "client";
|
|
662
|
+
/**
|
|
663
|
+
* @internal
|
|
664
|
+
*/
|
|
665
|
+
constructor(opts: __ExceptionOptionType<InvalidTargetInstancesException, __BaseException>);
|
|
666
|
+
}
|
|
667
|
+
/**
|
|
668
|
+
* <p> The configuration that specifies how traffic is routed during a deployment is
|
|
669
|
+
* invalid.</p>
|
|
670
|
+
* @public
|
|
671
|
+
*/
|
|
672
|
+
export declare class InvalidTrafficRoutingConfigurationException extends __BaseException {
|
|
673
|
+
readonly name: "InvalidTrafficRoutingConfigurationException";
|
|
674
|
+
readonly $fault: "client";
|
|
675
|
+
/**
|
|
676
|
+
* @internal
|
|
677
|
+
*/
|
|
678
|
+
constructor(opts: __ExceptionOptionType<InvalidTrafficRoutingConfigurationException, __BaseException>);
|
|
679
|
+
}
|
|
680
|
+
/**
|
|
681
|
+
* <p>The UpdateOutdatedInstancesOnly value is invalid. For Lambda
|
|
682
|
+
* deployments, <code>false</code> is expected. For EC2/On-premises deployments,
|
|
683
|
+
* <code>true</code> or <code>false</code> is expected.</p>
|
|
684
|
+
* @public
|
|
685
|
+
*/
|
|
686
|
+
export declare class InvalidUpdateOutdatedInstancesOnlyValueException extends __BaseException {
|
|
687
|
+
readonly name: "InvalidUpdateOutdatedInstancesOnlyValueException";
|
|
688
|
+
readonly $fault: "client";
|
|
689
|
+
/**
|
|
690
|
+
* @internal
|
|
691
|
+
*/
|
|
692
|
+
constructor(opts: __ExceptionOptionType<InvalidUpdateOutdatedInstancesOnlyValueException, __BaseException>);
|
|
693
|
+
}
|
|
694
|
+
/**
|
|
695
|
+
* <p>The named revision does not exist with the user or Amazon Web Services account.</p>
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
698
|
+
export declare class RevisionDoesNotExistException extends __BaseException {
|
|
699
|
+
readonly name: "RevisionDoesNotExistException";
|
|
700
|
+
readonly $fault: "client";
|
|
701
|
+
/**
|
|
702
|
+
* @internal
|
|
703
|
+
*/
|
|
704
|
+
constructor(opts: __ExceptionOptionType<RevisionDoesNotExistException, __BaseException>);
|
|
705
|
+
}
|
|
706
|
+
/**
|
|
707
|
+
* <p>An API function was called too frequently.</p>
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
710
|
+
export declare class ThrottlingException extends __BaseException {
|
|
711
|
+
readonly name: "ThrottlingException";
|
|
712
|
+
readonly $fault: "client";
|
|
713
|
+
/**
|
|
714
|
+
* @internal
|
|
715
|
+
*/
|
|
716
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
717
|
+
}
|
|
718
|
+
/**
|
|
719
|
+
* <p>A deployment configuration with the specified name with the user or Amazon Web Services account already exists.</p>
|
|
720
|
+
* @public
|
|
721
|
+
*/
|
|
722
|
+
export declare class DeploymentConfigAlreadyExistsException extends __BaseException {
|
|
723
|
+
readonly name: "DeploymentConfigAlreadyExistsException";
|
|
724
|
+
readonly $fault: "client";
|
|
725
|
+
/**
|
|
726
|
+
* @internal
|
|
727
|
+
*/
|
|
728
|
+
constructor(opts: __ExceptionOptionType<DeploymentConfigAlreadyExistsException, __BaseException>);
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* <p>The deployment configurations limit was exceeded.</p>
|
|
732
|
+
* @public
|
|
733
|
+
*/
|
|
734
|
+
export declare class DeploymentConfigLimitExceededException extends __BaseException {
|
|
735
|
+
readonly name: "DeploymentConfigLimitExceededException";
|
|
736
|
+
readonly $fault: "client";
|
|
737
|
+
/**
|
|
738
|
+
* @internal
|
|
739
|
+
*/
|
|
740
|
+
constructor(opts: __ExceptionOptionType<DeploymentConfigLimitExceededException, __BaseException>);
|
|
741
|
+
}
|
|
742
|
+
/**
|
|
743
|
+
* <p>The deployment configuration name was not specified.</p>
|
|
744
|
+
* @public
|
|
745
|
+
*/
|
|
746
|
+
export declare class DeploymentConfigNameRequiredException extends __BaseException {
|
|
747
|
+
readonly name: "DeploymentConfigNameRequiredException";
|
|
748
|
+
readonly $fault: "client";
|
|
749
|
+
/**
|
|
750
|
+
* @internal
|
|
751
|
+
*/
|
|
752
|
+
constructor(opts: __ExceptionOptionType<DeploymentConfigNameRequiredException, __BaseException>);
|
|
753
|
+
}
|
|
754
|
+
/**
|
|
755
|
+
* <p>The minimum healthy instance value was specified in an invalid format.</p>
|
|
756
|
+
* @public
|
|
757
|
+
*/
|
|
758
|
+
export declare class InvalidMinimumHealthyHostValueException extends __BaseException {
|
|
759
|
+
readonly name: "InvalidMinimumHealthyHostValueException";
|
|
760
|
+
readonly $fault: "client";
|
|
761
|
+
/**
|
|
762
|
+
* @internal
|
|
763
|
+
*/
|
|
764
|
+
constructor(opts: __ExceptionOptionType<InvalidMinimumHealthyHostValueException, __BaseException>);
|
|
765
|
+
}
|
|
766
|
+
/**
|
|
767
|
+
* <p>The <code>ZonalConfig</code> object is not valid.</p>
|
|
768
|
+
* @public
|
|
769
|
+
*/
|
|
770
|
+
export declare class InvalidZonalDeploymentConfigurationException extends __BaseException {
|
|
771
|
+
readonly name: "InvalidZonalDeploymentConfigurationException";
|
|
772
|
+
readonly $fault: "client";
|
|
773
|
+
/**
|
|
774
|
+
* @internal
|
|
775
|
+
*/
|
|
776
|
+
constructor(opts: __ExceptionOptionType<InvalidZonalDeploymentConfigurationException, __BaseException>);
|
|
777
|
+
}
|
|
778
|
+
/**
|
|
779
|
+
* <p>A deployment group with the specified name with the user or Amazon Web Services account
|
|
780
|
+
* already exists.</p>
|
|
781
|
+
* @public
|
|
782
|
+
*/
|
|
783
|
+
export declare class DeploymentGroupAlreadyExistsException extends __BaseException {
|
|
784
|
+
readonly name: "DeploymentGroupAlreadyExistsException";
|
|
785
|
+
readonly $fault: "client";
|
|
786
|
+
/**
|
|
787
|
+
* @internal
|
|
788
|
+
*/
|
|
789
|
+
constructor(opts: __ExceptionOptionType<DeploymentGroupAlreadyExistsException, __BaseException>);
|
|
790
|
+
}
|
|
791
|
+
/**
|
|
792
|
+
* <p> The deployment groups limit was exceeded.</p>
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
795
|
+
export declare class DeploymentGroupLimitExceededException extends __BaseException {
|
|
796
|
+
readonly name: "DeploymentGroupLimitExceededException";
|
|
797
|
+
readonly $fault: "client";
|
|
798
|
+
/**
|
|
799
|
+
* @internal
|
|
800
|
+
*/
|
|
801
|
+
constructor(opts: __ExceptionOptionType<DeploymentGroupLimitExceededException, __BaseException>);
|
|
802
|
+
}
|
|
803
|
+
/**
|
|
804
|
+
* <p> The Amazon ECS service is associated with more than one deployment groups. An
|
|
805
|
+
* Amazon ECS service can be associated with only one deployment group. </p>
|
|
806
|
+
* @public
|
|
807
|
+
*/
|
|
808
|
+
export declare class ECSServiceMappingLimitExceededException extends __BaseException {
|
|
809
|
+
readonly name: "ECSServiceMappingLimitExceededException";
|
|
810
|
+
readonly $fault: "client";
|
|
811
|
+
/**
|
|
812
|
+
* @internal
|
|
813
|
+
*/
|
|
814
|
+
constructor(opts: __ExceptionOptionType<ECSServiceMappingLimitExceededException, __BaseException>);
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* <p>The configuration for the blue/green deployment group was provided in an invalid
|
|
818
|
+
* format. For information about deployment configuration format, see <a>CreateDeploymentConfig</a>.</p>
|
|
819
|
+
* @public
|
|
820
|
+
*/
|
|
821
|
+
export declare class InvalidBlueGreenDeploymentConfigurationException extends __BaseException {
|
|
822
|
+
readonly name: "InvalidBlueGreenDeploymentConfigurationException";
|
|
823
|
+
readonly $fault: "client";
|
|
824
|
+
/**
|
|
825
|
+
* @internal
|
|
826
|
+
*/
|
|
827
|
+
constructor(opts: __ExceptionOptionType<InvalidBlueGreenDeploymentConfigurationException, __BaseException>);
|
|
828
|
+
}
|
|
829
|
+
/**
|
|
830
|
+
* <p>An invalid deployment style was specified. Valid deployment types include "IN_PLACE"
|
|
831
|
+
* and "BLUE_GREEN." Valid deployment options include "WITH_TRAFFIC_CONTROL" and
|
|
832
|
+
* "WITHOUT_TRAFFIC_CONTROL."</p>
|
|
833
|
+
* @public
|
|
834
|
+
*/
|
|
835
|
+
export declare class InvalidDeploymentStyleException extends __BaseException {
|
|
836
|
+
readonly name: "InvalidDeploymentStyleException";
|
|
837
|
+
readonly $fault: "client";
|
|
838
|
+
/**
|
|
839
|
+
* @internal
|
|
840
|
+
*/
|
|
841
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentStyleException, __BaseException>);
|
|
842
|
+
}
|
|
843
|
+
/**
|
|
844
|
+
* <p>A call was submitted that specified both Ec2TagFilters and Ec2TagSet, but only one of
|
|
845
|
+
* these data types can be used in a single call.</p>
|
|
846
|
+
* @public
|
|
847
|
+
*/
|
|
848
|
+
export declare class InvalidEC2TagCombinationException extends __BaseException {
|
|
849
|
+
readonly name: "InvalidEC2TagCombinationException";
|
|
850
|
+
readonly $fault: "client";
|
|
851
|
+
/**
|
|
852
|
+
* @internal
|
|
853
|
+
*/
|
|
854
|
+
constructor(opts: __ExceptionOptionType<InvalidEC2TagCombinationException, __BaseException>);
|
|
855
|
+
}
|
|
856
|
+
/**
|
|
857
|
+
* <p>The tag was specified in an invalid format.</p>
|
|
858
|
+
* @public
|
|
859
|
+
*/
|
|
860
|
+
export declare class InvalidEC2TagException extends __BaseException {
|
|
861
|
+
readonly name: "InvalidEC2TagException";
|
|
862
|
+
readonly $fault: "client";
|
|
863
|
+
/**
|
|
864
|
+
* @internal
|
|
865
|
+
*/
|
|
866
|
+
constructor(opts: __ExceptionOptionType<InvalidEC2TagException, __BaseException>);
|
|
867
|
+
}
|
|
868
|
+
/**
|
|
869
|
+
* <p> The Amazon ECS service identifier is not valid. </p>
|
|
870
|
+
* @public
|
|
871
|
+
*/
|
|
872
|
+
export declare class InvalidECSServiceException extends __BaseException {
|
|
873
|
+
readonly name: "InvalidECSServiceException";
|
|
874
|
+
readonly $fault: "client";
|
|
875
|
+
/**
|
|
876
|
+
* @internal
|
|
877
|
+
*/
|
|
878
|
+
constructor(opts: __ExceptionOptionType<InvalidECSServiceException, __BaseException>);
|
|
879
|
+
}
|
|
880
|
+
/**
|
|
881
|
+
* <p>The input was specified in an invalid format.</p>
|
|
882
|
+
* @public
|
|
883
|
+
*/
|
|
884
|
+
export declare class InvalidInputException extends __BaseException {
|
|
885
|
+
readonly name: "InvalidInputException";
|
|
886
|
+
readonly $fault: "client";
|
|
887
|
+
/**
|
|
888
|
+
* @internal
|
|
889
|
+
*/
|
|
890
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
891
|
+
}
|
|
892
|
+
/**
|
|
893
|
+
* <p>A call was submitted that specified both OnPremisesTagFilters and OnPremisesTagSet,
|
|
894
|
+
* but only one of these data types can be used in a single call.</p>
|
|
895
|
+
* @public
|
|
896
|
+
*/
|
|
897
|
+
export declare class InvalidOnPremisesTagCombinationException extends __BaseException {
|
|
898
|
+
readonly name: "InvalidOnPremisesTagCombinationException";
|
|
899
|
+
readonly $fault: "client";
|
|
900
|
+
/**
|
|
901
|
+
* @internal
|
|
902
|
+
*/
|
|
903
|
+
constructor(opts: __ExceptionOptionType<InvalidOnPremisesTagCombinationException, __BaseException>);
|
|
904
|
+
}
|
|
905
|
+
/**
|
|
906
|
+
* <p> A target group pair associated with this deployment is not valid. </p>
|
|
907
|
+
* @public
|
|
908
|
+
*/
|
|
909
|
+
export declare class InvalidTargetGroupPairException extends __BaseException {
|
|
910
|
+
readonly name: "InvalidTargetGroupPairException";
|
|
911
|
+
readonly $fault: "client";
|
|
912
|
+
/**
|
|
913
|
+
* @internal
|
|
914
|
+
*/
|
|
915
|
+
constructor(opts: __ExceptionOptionType<InvalidTargetGroupPairException, __BaseException>);
|
|
916
|
+
}
|
|
917
|
+
/**
|
|
918
|
+
* <p>The trigger was specified in an invalid format.</p>
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
export declare class InvalidTriggerConfigException extends __BaseException {
|
|
922
|
+
readonly name: "InvalidTriggerConfigException";
|
|
923
|
+
readonly $fault: "client";
|
|
924
|
+
/**
|
|
925
|
+
* @internal
|
|
926
|
+
*/
|
|
927
|
+
constructor(opts: __ExceptionOptionType<InvalidTriggerConfigException, __BaseException>);
|
|
928
|
+
}
|
|
929
|
+
/**
|
|
930
|
+
* <p>The limit for lifecycle hooks was exceeded.</p>
|
|
931
|
+
* @public
|
|
932
|
+
*/
|
|
933
|
+
export declare class LifecycleHookLimitExceededException extends __BaseException {
|
|
934
|
+
readonly name: "LifecycleHookLimitExceededException";
|
|
935
|
+
readonly $fault: "client";
|
|
936
|
+
/**
|
|
937
|
+
* @internal
|
|
938
|
+
*/
|
|
939
|
+
constructor(opts: __ExceptionOptionType<LifecycleHookLimitExceededException, __BaseException>);
|
|
940
|
+
}
|
|
941
|
+
/**
|
|
942
|
+
* <p>The role ID was not specified.</p>
|
|
943
|
+
* @public
|
|
944
|
+
*/
|
|
945
|
+
export declare class RoleRequiredException extends __BaseException {
|
|
946
|
+
readonly name: "RoleRequiredException";
|
|
947
|
+
readonly $fault: "client";
|
|
948
|
+
/**
|
|
949
|
+
* @internal
|
|
950
|
+
*/
|
|
951
|
+
constructor(opts: __ExceptionOptionType<RoleRequiredException, __BaseException>);
|
|
952
|
+
}
|
|
953
|
+
/**
|
|
954
|
+
* <p>The number of tag groups included in the tag set list exceeded the maximum allowed
|
|
955
|
+
* limit of 3.</p>
|
|
956
|
+
* @public
|
|
957
|
+
*/
|
|
958
|
+
export declare class TagSetListLimitExceededException extends __BaseException {
|
|
959
|
+
readonly name: "TagSetListLimitExceededException";
|
|
960
|
+
readonly $fault: "client";
|
|
961
|
+
/**
|
|
962
|
+
* @internal
|
|
963
|
+
*/
|
|
964
|
+
constructor(opts: __ExceptionOptionType<TagSetListLimitExceededException, __BaseException>);
|
|
965
|
+
}
|
|
966
|
+
/**
|
|
967
|
+
* <p>The maximum allowed number of triggers was exceeded.</p>
|
|
968
|
+
* @public
|
|
969
|
+
*/
|
|
970
|
+
export declare class TriggerTargetsLimitExceededException extends __BaseException {
|
|
971
|
+
readonly name: "TriggerTargetsLimitExceededException";
|
|
972
|
+
readonly $fault: "client";
|
|
973
|
+
/**
|
|
974
|
+
* @internal
|
|
975
|
+
*/
|
|
976
|
+
constructor(opts: __ExceptionOptionType<TriggerTargetsLimitExceededException, __BaseException>);
|
|
977
|
+
}
|
|
978
|
+
/**
|
|
979
|
+
* <p>The deployment configuration is still in use.</p>
|
|
980
|
+
* @public
|
|
981
|
+
*/
|
|
982
|
+
export declare class DeploymentConfigInUseException extends __BaseException {
|
|
983
|
+
readonly name: "DeploymentConfigInUseException";
|
|
984
|
+
readonly $fault: "client";
|
|
985
|
+
/**
|
|
986
|
+
* @internal
|
|
987
|
+
*/
|
|
988
|
+
constructor(opts: __ExceptionOptionType<DeploymentConfigInUseException, __BaseException>);
|
|
989
|
+
}
|
|
990
|
+
/**
|
|
991
|
+
* <p>An invalid operation was detected.</p>
|
|
992
|
+
* @public
|
|
993
|
+
*/
|
|
994
|
+
export declare class InvalidOperationException extends __BaseException {
|
|
995
|
+
readonly name: "InvalidOperationException";
|
|
996
|
+
readonly $fault: "client";
|
|
997
|
+
/**
|
|
998
|
+
* @internal
|
|
999
|
+
*/
|
|
1000
|
+
constructor(opts: __ExceptionOptionType<InvalidOperationException, __BaseException>);
|
|
1001
|
+
}
|
|
1002
|
+
/**
|
|
1003
|
+
* <p>No GitHub account connection exists with the named specified in the call.</p>
|
|
1004
|
+
* @public
|
|
1005
|
+
*/
|
|
1006
|
+
export declare class GitHubAccountTokenDoesNotExistException extends __BaseException {
|
|
1007
|
+
readonly name: "GitHubAccountTokenDoesNotExistException";
|
|
1008
|
+
readonly $fault: "client";
|
|
1009
|
+
/**
|
|
1010
|
+
* @internal
|
|
1011
|
+
*/
|
|
1012
|
+
constructor(opts: __ExceptionOptionType<GitHubAccountTokenDoesNotExistException, __BaseException>);
|
|
1013
|
+
}
|
|
1014
|
+
/**
|
|
1015
|
+
* <p>The call is missing a required GitHub account connection name.</p>
|
|
1016
|
+
* @public
|
|
1017
|
+
*/
|
|
1018
|
+
export declare class GitHubAccountTokenNameRequiredException extends __BaseException {
|
|
1019
|
+
readonly name: "GitHubAccountTokenNameRequiredException";
|
|
1020
|
+
readonly $fault: "client";
|
|
1021
|
+
/**
|
|
1022
|
+
* @internal
|
|
1023
|
+
*/
|
|
1024
|
+
constructor(opts: __ExceptionOptionType<GitHubAccountTokenNameRequiredException, __BaseException>);
|
|
1025
|
+
}
|
|
1026
|
+
/**
|
|
1027
|
+
* <p>The format of the specified GitHub account connection name is invalid.</p>
|
|
1028
|
+
* @public
|
|
1029
|
+
*/
|
|
1030
|
+
export declare class InvalidGitHubAccountTokenNameException extends __BaseException {
|
|
1031
|
+
readonly name: "InvalidGitHubAccountTokenNameException";
|
|
1032
|
+
readonly $fault: "client";
|
|
1033
|
+
/**
|
|
1034
|
+
* @internal
|
|
1035
|
+
*/
|
|
1036
|
+
constructor(opts: __ExceptionOptionType<InvalidGitHubAccountTokenNameException, __BaseException>);
|
|
1037
|
+
}
|
|
1038
|
+
/**
|
|
1039
|
+
* <p>The API used does not support the deployment.</p>
|
|
1040
|
+
* @public
|
|
1041
|
+
*/
|
|
1042
|
+
export declare class OperationNotSupportedException extends __BaseException {
|
|
1043
|
+
readonly name: "OperationNotSupportedException";
|
|
1044
|
+
readonly $fault: "client";
|
|
1045
|
+
/**
|
|
1046
|
+
* @internal
|
|
1047
|
+
*/
|
|
1048
|
+
constructor(opts: __ExceptionOptionType<OperationNotSupportedException, __BaseException>);
|
|
1049
|
+
}
|
|
1050
|
+
/**
|
|
1051
|
+
* <p>The specified resource could not be validated.</p>
|
|
1052
|
+
* @public
|
|
1053
|
+
*/
|
|
1054
|
+
export declare class ResourceValidationException extends __BaseException {
|
|
1055
|
+
readonly name: "ResourceValidationException";
|
|
1056
|
+
readonly $fault: "client";
|
|
1057
|
+
/**
|
|
1058
|
+
* @internal
|
|
1059
|
+
*/
|
|
1060
|
+
constructor(opts: __ExceptionOptionType<ResourceValidationException, __BaseException>);
|
|
1061
|
+
}
|
|
1062
|
+
/**
|
|
1063
|
+
* <p>The bucket name either doesn't exist or was specified in an invalid format.</p>
|
|
1064
|
+
* @public
|
|
1065
|
+
*/
|
|
1066
|
+
export declare class InvalidBucketNameFilterException extends __BaseException {
|
|
1067
|
+
readonly name: "InvalidBucketNameFilterException";
|
|
1068
|
+
readonly $fault: "client";
|
|
1069
|
+
/**
|
|
1070
|
+
* @internal
|
|
1071
|
+
*/
|
|
1072
|
+
constructor(opts: __ExceptionOptionType<InvalidBucketNameFilterException, __BaseException>);
|
|
1073
|
+
}
|
|
1074
|
+
/**
|
|
1075
|
+
* <p>The deployed state filter was specified in an invalid format.</p>
|
|
1076
|
+
* @public
|
|
1077
|
+
*/
|
|
1078
|
+
export declare class InvalidDeployedStateFilterException extends __BaseException {
|
|
1079
|
+
readonly name: "InvalidDeployedStateFilterException";
|
|
1080
|
+
readonly $fault: "client";
|
|
1081
|
+
/**
|
|
1082
|
+
* @internal
|
|
1083
|
+
*/
|
|
1084
|
+
constructor(opts: __ExceptionOptionType<InvalidDeployedStateFilterException, __BaseException>);
|
|
1085
|
+
}
|
|
1086
|
+
/**
|
|
1087
|
+
* <p>The specified key prefix filter was specified in an invalid format.</p>
|
|
1088
|
+
* @public
|
|
1089
|
+
*/
|
|
1090
|
+
export declare class InvalidKeyPrefixFilterException extends __BaseException {
|
|
1091
|
+
readonly name: "InvalidKeyPrefixFilterException";
|
|
1092
|
+
readonly $fault: "client";
|
|
1093
|
+
/**
|
|
1094
|
+
* @internal
|
|
1095
|
+
*/
|
|
1096
|
+
constructor(opts: __ExceptionOptionType<InvalidKeyPrefixFilterException, __BaseException>);
|
|
1097
|
+
}
|
|
1098
|
+
/**
|
|
1099
|
+
* <p>The next token was specified in an invalid format.</p>
|
|
1100
|
+
* @public
|
|
1101
|
+
*/
|
|
1102
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
1103
|
+
readonly name: "InvalidNextTokenException";
|
|
1104
|
+
readonly $fault: "client";
|
|
1105
|
+
/**
|
|
1106
|
+
* @internal
|
|
1107
|
+
*/
|
|
1108
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
1109
|
+
}
|
|
1110
|
+
/**
|
|
1111
|
+
* <p>The column name to sort by is either not present or was specified in an invalid
|
|
1112
|
+
* format.</p>
|
|
1113
|
+
* @public
|
|
1114
|
+
*/
|
|
1115
|
+
export declare class InvalidSortByException extends __BaseException {
|
|
1116
|
+
readonly name: "InvalidSortByException";
|
|
1117
|
+
readonly $fault: "client";
|
|
1118
|
+
/**
|
|
1119
|
+
* @internal
|
|
1120
|
+
*/
|
|
1121
|
+
constructor(opts: __ExceptionOptionType<InvalidSortByException, __BaseException>);
|
|
1122
|
+
}
|
|
1123
|
+
/**
|
|
1124
|
+
* <p>The sort order was specified in an invalid format.</p>
|
|
1125
|
+
* @public
|
|
1126
|
+
*/
|
|
1127
|
+
export declare class InvalidSortOrderException extends __BaseException {
|
|
1128
|
+
readonly name: "InvalidSortOrderException";
|
|
1129
|
+
readonly $fault: "client";
|
|
1130
|
+
/**
|
|
1131
|
+
* @internal
|
|
1132
|
+
*/
|
|
1133
|
+
constructor(opts: __ExceptionOptionType<InvalidSortOrderException, __BaseException>);
|
|
1134
|
+
}
|
|
1135
|
+
/**
|
|
1136
|
+
* <p>An instance type was specified for an in-place deployment. Instance types are
|
|
1137
|
+
* supported for blue/green deployments only.</p>
|
|
1138
|
+
* @public
|
|
1139
|
+
*/
|
|
1140
|
+
export declare class InvalidDeploymentInstanceTypeException extends __BaseException {
|
|
1141
|
+
readonly name: "InvalidDeploymentInstanceTypeException";
|
|
1142
|
+
readonly $fault: "client";
|
|
1143
|
+
/**
|
|
1144
|
+
* @internal
|
|
1145
|
+
*/
|
|
1146
|
+
constructor(opts: __ExceptionOptionType<InvalidDeploymentInstanceTypeException, __BaseException>);
|
|
1147
|
+
}
|
|
1148
|
+
/**
|
|
1149
|
+
* <p>The specified instance status does not exist.</p>
|
|
1150
|
+
* @public
|
|
1151
|
+
*/
|
|
1152
|
+
export declare class InvalidInstanceStatusException extends __BaseException {
|
|
1153
|
+
readonly name: "InvalidInstanceStatusException";
|
|
1154
|
+
readonly $fault: "client";
|
|
1155
|
+
/**
|
|
1156
|
+
* @internal
|
|
1157
|
+
*/
|
|
1158
|
+
constructor(opts: __ExceptionOptionType<InvalidInstanceStatusException, __BaseException>);
|
|
1159
|
+
}
|
|
1160
|
+
/**
|
|
1161
|
+
* <p>An invalid instance type was specified for instances in a blue/green deployment. Valid
|
|
1162
|
+
* values include "Blue" for an original environment and "Green" for a replacement
|
|
1163
|
+
* environment.</p>
|
|
1164
|
+
* @public
|
|
1165
|
+
*/
|
|
1166
|
+
export declare class InvalidInstanceTypeException extends __BaseException {
|
|
1167
|
+
readonly name: "InvalidInstanceTypeException";
|
|
1168
|
+
readonly $fault: "client";
|
|
1169
|
+
/**
|
|
1170
|
+
* @internal
|
|
1171
|
+
*/
|
|
1172
|
+
constructor(opts: __ExceptionOptionType<InvalidInstanceTypeException, __BaseException>);
|
|
1173
|
+
}
|
|
1174
|
+
/**
|
|
1175
|
+
* <p> The target filter name is invalid. </p>
|
|
1176
|
+
* @public
|
|
1177
|
+
*/
|
|
1178
|
+
export declare class InvalidTargetFilterNameException extends __BaseException {
|
|
1179
|
+
readonly name: "InvalidTargetFilterNameException";
|
|
1180
|
+
readonly $fault: "client";
|
|
1181
|
+
/**
|
|
1182
|
+
* @internal
|
|
1183
|
+
*/
|
|
1184
|
+
constructor(opts: __ExceptionOptionType<InvalidTargetFilterNameException, __BaseException>);
|
|
1185
|
+
}
|
|
1186
|
+
/**
|
|
1187
|
+
* <p>The external ID was specified in an invalid format.</p>
|
|
1188
|
+
* @public
|
|
1189
|
+
*/
|
|
1190
|
+
export declare class InvalidExternalIdException extends __BaseException {
|
|
1191
|
+
readonly name: "InvalidExternalIdException";
|
|
1192
|
+
readonly $fault: "client";
|
|
1193
|
+
/**
|
|
1194
|
+
* @internal
|
|
1195
|
+
*/
|
|
1196
|
+
constructor(opts: __ExceptionOptionType<InvalidExternalIdException, __BaseException>);
|
|
1197
|
+
}
|
|
1198
|
+
/**
|
|
1199
|
+
* <p>The specified time range was specified in an invalid format.</p>
|
|
1200
|
+
* @public
|
|
1201
|
+
*/
|
|
1202
|
+
export declare class InvalidTimeRangeException extends __BaseException {
|
|
1203
|
+
readonly name: "InvalidTimeRangeException";
|
|
1204
|
+
readonly $fault: "client";
|
|
1205
|
+
/**
|
|
1206
|
+
* @internal
|
|
1207
|
+
*/
|
|
1208
|
+
constructor(opts: __ExceptionOptionType<InvalidTimeRangeException, __BaseException>);
|
|
1209
|
+
}
|
|
1210
|
+
/**
|
|
1211
|
+
* <p>The registration status was specified in an invalid format.</p>
|
|
1212
|
+
* @public
|
|
1213
|
+
*/
|
|
1214
|
+
export declare class InvalidRegistrationStatusException extends __BaseException {
|
|
1215
|
+
readonly name: "InvalidRegistrationStatusException";
|
|
1216
|
+
readonly $fault: "client";
|
|
1217
|
+
/**
|
|
1218
|
+
* @internal
|
|
1219
|
+
*/
|
|
1220
|
+
constructor(opts: __ExceptionOptionType<InvalidRegistrationStatusException, __BaseException>);
|
|
1221
|
+
}
|
|
1222
|
+
/**
|
|
1223
|
+
* <p>The tag filter was specified in an invalid format.</p>
|
|
1224
|
+
* @public
|
|
1225
|
+
*/
|
|
1226
|
+
export declare class InvalidTagFilterException extends __BaseException {
|
|
1227
|
+
readonly name: "InvalidTagFilterException";
|
|
1228
|
+
readonly $fault: "client";
|
|
1229
|
+
/**
|
|
1230
|
+
* @internal
|
|
1231
|
+
*/
|
|
1232
|
+
constructor(opts: __ExceptionOptionType<InvalidTagFilterException, __BaseException>);
|
|
1233
|
+
}
|
|
1234
|
+
/**
|
|
1235
|
+
* <p> The specified ARN is not in a valid format. </p>
|
|
1236
|
+
* @public
|
|
1237
|
+
*/
|
|
1238
|
+
export declare class InvalidArnException extends __BaseException {
|
|
1239
|
+
readonly name: "InvalidArnException";
|
|
1240
|
+
readonly $fault: "client";
|
|
1241
|
+
/**
|
|
1242
|
+
* @internal
|
|
1243
|
+
*/
|
|
1244
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
1245
|
+
}
|
|
1246
|
+
/**
|
|
1247
|
+
* <p> The ARN of a resource is required, but was not found. </p>
|
|
1248
|
+
* @public
|
|
1249
|
+
*/
|
|
1250
|
+
export declare class ResourceArnRequiredException extends __BaseException {
|
|
1251
|
+
readonly name: "ResourceArnRequiredException";
|
|
1252
|
+
readonly $fault: "client";
|
|
1253
|
+
/**
|
|
1254
|
+
* @internal
|
|
1255
|
+
*/
|
|
1256
|
+
constructor(opts: __ExceptionOptionType<ResourceArnRequiredException, __BaseException>);
|
|
1257
|
+
}
|
|
1258
|
+
/**
|
|
1259
|
+
* <p>A lifecycle event hook is invalid. Review the <code>hooks</code> section in your
|
|
1260
|
+
* AppSpec file to ensure the lifecycle events and <code>hooks</code> functions are
|
|
1261
|
+
* valid.</p>
|
|
1262
|
+
* @public
|
|
1263
|
+
*/
|
|
1264
|
+
export declare class InvalidLifecycleEventHookExecutionIdException extends __BaseException {
|
|
1265
|
+
readonly name: "InvalidLifecycleEventHookExecutionIdException";
|
|
1266
|
+
readonly $fault: "client";
|
|
1267
|
+
/**
|
|
1268
|
+
* @internal
|
|
1269
|
+
*/
|
|
1270
|
+
constructor(opts: __ExceptionOptionType<InvalidLifecycleEventHookExecutionIdException, __BaseException>);
|
|
1271
|
+
}
|
|
1272
|
+
/**
|
|
1273
|
+
* <p>The result of a Lambda validation function that verifies a lifecycle event
|
|
1274
|
+
* is invalid. It should return <code>Succeeded</code> or <code>Failed</code>.</p>
|
|
1275
|
+
* @public
|
|
1276
|
+
*/
|
|
1277
|
+
export declare class InvalidLifecycleEventHookExecutionStatusException extends __BaseException {
|
|
1278
|
+
readonly name: "InvalidLifecycleEventHookExecutionStatusException";
|
|
1279
|
+
readonly $fault: "client";
|
|
1280
|
+
/**
|
|
1281
|
+
* @internal
|
|
1282
|
+
*/
|
|
1283
|
+
constructor(opts: __ExceptionOptionType<InvalidLifecycleEventHookExecutionStatusException, __BaseException>);
|
|
1284
|
+
}
|
|
1285
|
+
/**
|
|
1286
|
+
* <p>An attempt to return the status of an already completed lifecycle event
|
|
1287
|
+
* occurred.</p>
|
|
1288
|
+
* @public
|
|
1289
|
+
*/
|
|
1290
|
+
export declare class LifecycleEventAlreadyCompletedException extends __BaseException {
|
|
1291
|
+
readonly name: "LifecycleEventAlreadyCompletedException";
|
|
1292
|
+
readonly $fault: "client";
|
|
1293
|
+
/**
|
|
1294
|
+
* @internal
|
|
1295
|
+
*/
|
|
1296
|
+
constructor(opts: __ExceptionOptionType<LifecycleEventAlreadyCompletedException, __BaseException>);
|
|
1297
|
+
}
|
|
1298
|
+
/**
|
|
1299
|
+
* <p>No IAM ARN was included in the request. You must use an IAM session ARN or user ARN in the request.</p>
|
|
1300
|
+
* @public
|
|
1301
|
+
*/
|
|
1302
|
+
export declare class IamArnRequiredException extends __BaseException {
|
|
1303
|
+
readonly name: "IamArnRequiredException";
|
|
1304
|
+
readonly $fault: "client";
|
|
1305
|
+
/**
|
|
1306
|
+
* @internal
|
|
1307
|
+
*/
|
|
1308
|
+
constructor(opts: __ExceptionOptionType<IamArnRequiredException, __BaseException>);
|
|
1309
|
+
}
|
|
1310
|
+
/**
|
|
1311
|
+
* <p>The request included an IAM session ARN that has already been used to
|
|
1312
|
+
* register a different instance.</p>
|
|
1313
|
+
* @public
|
|
1314
|
+
*/
|
|
1315
|
+
export declare class IamSessionArnAlreadyRegisteredException extends __BaseException {
|
|
1316
|
+
readonly name: "IamSessionArnAlreadyRegisteredException";
|
|
1317
|
+
readonly $fault: "client";
|
|
1318
|
+
/**
|
|
1319
|
+
* @internal
|
|
1320
|
+
*/
|
|
1321
|
+
constructor(opts: __ExceptionOptionType<IamSessionArnAlreadyRegisteredException, __BaseException>);
|
|
1322
|
+
}
|
|
1323
|
+
/**
|
|
1324
|
+
* <p>The specified user ARN is already registered with an on-premises instance.</p>
|
|
1325
|
+
* @public
|
|
1326
|
+
*/
|
|
1327
|
+
export declare class IamUserArnAlreadyRegisteredException extends __BaseException {
|
|
1328
|
+
readonly name: "IamUserArnAlreadyRegisteredException";
|
|
1329
|
+
readonly $fault: "client";
|
|
1330
|
+
/**
|
|
1331
|
+
* @internal
|
|
1332
|
+
*/
|
|
1333
|
+
constructor(opts: __ExceptionOptionType<IamUserArnAlreadyRegisteredException, __BaseException>);
|
|
1334
|
+
}
|
|
1335
|
+
/**
|
|
1336
|
+
* <p>An user ARN was not specified.</p>
|
|
1337
|
+
* @public
|
|
1338
|
+
*/
|
|
1339
|
+
export declare class IamUserArnRequiredException extends __BaseException {
|
|
1340
|
+
readonly name: "IamUserArnRequiredException";
|
|
1341
|
+
readonly $fault: "client";
|
|
1342
|
+
/**
|
|
1343
|
+
* @internal
|
|
1344
|
+
*/
|
|
1345
|
+
constructor(opts: __ExceptionOptionType<IamUserArnRequiredException, __BaseException>);
|
|
1346
|
+
}
|
|
1347
|
+
/**
|
|
1348
|
+
* <p>The specified on-premises instance name is already registered.</p>
|
|
1349
|
+
* @public
|
|
1350
|
+
*/
|
|
1351
|
+
export declare class InstanceNameAlreadyRegisteredException extends __BaseException {
|
|
1352
|
+
readonly name: "InstanceNameAlreadyRegisteredException";
|
|
1353
|
+
readonly $fault: "client";
|
|
1354
|
+
/**
|
|
1355
|
+
* @internal
|
|
1356
|
+
*/
|
|
1357
|
+
constructor(opts: __ExceptionOptionType<InstanceNameAlreadyRegisteredException, __BaseException>);
|
|
1358
|
+
}
|
|
1359
|
+
/**
|
|
1360
|
+
* <p>The IAM session ARN was specified in an invalid format.</p>
|
|
1361
|
+
* @public
|
|
1362
|
+
*/
|
|
1363
|
+
export declare class InvalidIamSessionArnException extends __BaseException {
|
|
1364
|
+
readonly name: "InvalidIamSessionArnException";
|
|
1365
|
+
readonly $fault: "client";
|
|
1366
|
+
/**
|
|
1367
|
+
* @internal
|
|
1368
|
+
*/
|
|
1369
|
+
constructor(opts: __ExceptionOptionType<InvalidIamSessionArnException, __BaseException>);
|
|
1370
|
+
}
|
|
1371
|
+
/**
|
|
1372
|
+
* <p>The user ARN was specified in an invalid format.</p>
|
|
1373
|
+
* @public
|
|
1374
|
+
*/
|
|
1375
|
+
export declare class InvalidIamUserArnException extends __BaseException {
|
|
1376
|
+
readonly name: "InvalidIamUserArnException";
|
|
1377
|
+
readonly $fault: "client";
|
|
1378
|
+
/**
|
|
1379
|
+
* @internal
|
|
1380
|
+
*/
|
|
1381
|
+
constructor(opts: __ExceptionOptionType<InvalidIamUserArnException, __BaseException>);
|
|
1382
|
+
}
|
|
1383
|
+
/**
|
|
1384
|
+
* <p>Both an user ARN and an IAM session ARN were included in the request.
|
|
1385
|
+
* Use only one ARN type.</p>
|
|
1386
|
+
* @public
|
|
1387
|
+
*/
|
|
1388
|
+
export declare class MultipleIamArnsProvidedException extends __BaseException {
|
|
1389
|
+
readonly name: "MultipleIamArnsProvidedException";
|
|
1390
|
+
readonly $fault: "client";
|
|
1391
|
+
/**
|
|
1392
|
+
* @internal
|
|
1393
|
+
*/
|
|
1394
|
+
constructor(opts: __ExceptionOptionType<MultipleIamArnsProvidedException, __BaseException>);
|
|
1395
|
+
}
|