@aws-sdk/client-cloudformation 3.986.0 → 3.988.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 +109 -3610
- package/dist-cjs/models/CloudFormationServiceException.js +12 -0
- package/dist-cjs/models/errors.js +439 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2741 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +182 -176
- package/dist-types/schemas/schemas_0.d.ts +37 -30
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +32 -30
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var CloudFormationServiceException = require('./models/CloudFormationServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,3115 +114,6 @@ class CloudFormationClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class CloudFormationServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, CloudFormationServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class InvalidOperationException extends CloudFormationServiceException {
|
|
122
|
-
name = "InvalidOperationException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
Message;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "InvalidOperationException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
132
|
-
this.Message = opts.Message;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
class OperationNotFoundException extends CloudFormationServiceException {
|
|
136
|
-
name = "OperationNotFoundException";
|
|
137
|
-
$fault = "client";
|
|
138
|
-
Message;
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "OperationNotFoundException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, OperationNotFoundException.prototype);
|
|
146
|
-
this.Message = opts.Message;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
class CFNRegistryException extends CloudFormationServiceException {
|
|
150
|
-
name = "CFNRegistryException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
Message;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "CFNRegistryException",
|
|
156
|
-
$fault: "client",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, CFNRegistryException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class TypeNotFoundException extends CloudFormationServiceException {
|
|
164
|
-
name = "TypeNotFoundException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
Message;
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "TypeNotFoundException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, TypeNotFoundException.prototype);
|
|
174
|
-
this.Message = opts.Message;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class AlreadyExistsException extends CloudFormationServiceException {
|
|
178
|
-
name = "AlreadyExistsException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
Message;
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "AlreadyExistsException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
188
|
-
this.Message = opts.Message;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
class TypeConfigurationNotFoundException extends CloudFormationServiceException {
|
|
192
|
-
name = "TypeConfigurationNotFoundException";
|
|
193
|
-
$fault = "client";
|
|
194
|
-
Message;
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "TypeConfigurationNotFoundException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, TypeConfigurationNotFoundException.prototype);
|
|
202
|
-
this.Message = opts.Message;
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
class TokenAlreadyExistsException extends CloudFormationServiceException {
|
|
206
|
-
name = "TokenAlreadyExistsException";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
Message;
|
|
209
|
-
constructor(opts) {
|
|
210
|
-
super({
|
|
211
|
-
name: "TokenAlreadyExistsException",
|
|
212
|
-
$fault: "client",
|
|
213
|
-
...opts,
|
|
214
|
-
});
|
|
215
|
-
Object.setPrototypeOf(this, TokenAlreadyExistsException.prototype);
|
|
216
|
-
this.Message = opts.Message;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
class ChangeSetNotFoundException extends CloudFormationServiceException {
|
|
220
|
-
name = "ChangeSetNotFoundException";
|
|
221
|
-
$fault = "client";
|
|
222
|
-
Message;
|
|
223
|
-
constructor(opts) {
|
|
224
|
-
super({
|
|
225
|
-
name: "ChangeSetNotFoundException",
|
|
226
|
-
$fault: "client",
|
|
227
|
-
...opts,
|
|
228
|
-
});
|
|
229
|
-
Object.setPrototypeOf(this, ChangeSetNotFoundException.prototype);
|
|
230
|
-
this.Message = opts.Message;
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
class InsufficientCapabilitiesException extends CloudFormationServiceException {
|
|
234
|
-
name = "InsufficientCapabilitiesException";
|
|
235
|
-
$fault = "client";
|
|
236
|
-
Message;
|
|
237
|
-
constructor(opts) {
|
|
238
|
-
super({
|
|
239
|
-
name: "InsufficientCapabilitiesException",
|
|
240
|
-
$fault: "client",
|
|
241
|
-
...opts,
|
|
242
|
-
});
|
|
243
|
-
Object.setPrototypeOf(this, InsufficientCapabilitiesException.prototype);
|
|
244
|
-
this.Message = opts.Message;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
class LimitExceededException extends CloudFormationServiceException {
|
|
248
|
-
name = "LimitExceededException";
|
|
249
|
-
$fault = "client";
|
|
250
|
-
Message;
|
|
251
|
-
constructor(opts) {
|
|
252
|
-
super({
|
|
253
|
-
name: "LimitExceededException",
|
|
254
|
-
$fault: "client",
|
|
255
|
-
...opts,
|
|
256
|
-
});
|
|
257
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
258
|
-
this.Message = opts.Message;
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
class ConcurrentResourcesLimitExceededException extends CloudFormationServiceException {
|
|
262
|
-
name = "ConcurrentResourcesLimitExceededException";
|
|
263
|
-
$fault = "client";
|
|
264
|
-
Message;
|
|
265
|
-
constructor(opts) {
|
|
266
|
-
super({
|
|
267
|
-
name: "ConcurrentResourcesLimitExceededException",
|
|
268
|
-
$fault: "client",
|
|
269
|
-
...opts,
|
|
270
|
-
});
|
|
271
|
-
Object.setPrototypeOf(this, ConcurrentResourcesLimitExceededException.prototype);
|
|
272
|
-
this.Message = opts.Message;
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
class OperationIdAlreadyExistsException extends CloudFormationServiceException {
|
|
276
|
-
name = "OperationIdAlreadyExistsException";
|
|
277
|
-
$fault = "client";
|
|
278
|
-
Message;
|
|
279
|
-
constructor(opts) {
|
|
280
|
-
super({
|
|
281
|
-
name: "OperationIdAlreadyExistsException",
|
|
282
|
-
$fault: "client",
|
|
283
|
-
...opts,
|
|
284
|
-
});
|
|
285
|
-
Object.setPrototypeOf(this, OperationIdAlreadyExistsException.prototype);
|
|
286
|
-
this.Message = opts.Message;
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
class OperationInProgressException extends CloudFormationServiceException {
|
|
290
|
-
name = "OperationInProgressException";
|
|
291
|
-
$fault = "client";
|
|
292
|
-
Message;
|
|
293
|
-
constructor(opts) {
|
|
294
|
-
super({
|
|
295
|
-
name: "OperationInProgressException",
|
|
296
|
-
$fault: "client",
|
|
297
|
-
...opts,
|
|
298
|
-
});
|
|
299
|
-
Object.setPrototypeOf(this, OperationInProgressException.prototype);
|
|
300
|
-
this.Message = opts.Message;
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
class StackSetNotFoundException extends CloudFormationServiceException {
|
|
304
|
-
name = "StackSetNotFoundException";
|
|
305
|
-
$fault = "client";
|
|
306
|
-
Message;
|
|
307
|
-
constructor(opts) {
|
|
308
|
-
super({
|
|
309
|
-
name: "StackSetNotFoundException",
|
|
310
|
-
$fault: "client",
|
|
311
|
-
...opts,
|
|
312
|
-
});
|
|
313
|
-
Object.setPrototypeOf(this, StackSetNotFoundException.prototype);
|
|
314
|
-
this.Message = opts.Message;
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
class StaleRequestException extends CloudFormationServiceException {
|
|
318
|
-
name = "StaleRequestException";
|
|
319
|
-
$fault = "client";
|
|
320
|
-
Message;
|
|
321
|
-
constructor(opts) {
|
|
322
|
-
super({
|
|
323
|
-
name: "StaleRequestException",
|
|
324
|
-
$fault: "client",
|
|
325
|
-
...opts,
|
|
326
|
-
});
|
|
327
|
-
Object.setPrototypeOf(this, StaleRequestException.prototype);
|
|
328
|
-
this.Message = opts.Message;
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
class CreatedButModifiedException extends CloudFormationServiceException {
|
|
332
|
-
name = "CreatedButModifiedException";
|
|
333
|
-
$fault = "client";
|
|
334
|
-
Message;
|
|
335
|
-
constructor(opts) {
|
|
336
|
-
super({
|
|
337
|
-
name: "CreatedButModifiedException",
|
|
338
|
-
$fault: "client",
|
|
339
|
-
...opts,
|
|
340
|
-
});
|
|
341
|
-
Object.setPrototypeOf(this, CreatedButModifiedException.prototype);
|
|
342
|
-
this.Message = opts.Message;
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
class NameAlreadyExistsException extends CloudFormationServiceException {
|
|
346
|
-
name = "NameAlreadyExistsException";
|
|
347
|
-
$fault = "client";
|
|
348
|
-
Message;
|
|
349
|
-
constructor(opts) {
|
|
350
|
-
super({
|
|
351
|
-
name: "NameAlreadyExistsException",
|
|
352
|
-
$fault: "client",
|
|
353
|
-
...opts,
|
|
354
|
-
});
|
|
355
|
-
Object.setPrototypeOf(this, NameAlreadyExistsException.prototype);
|
|
356
|
-
this.Message = opts.Message;
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
class InvalidChangeSetStatusException extends CloudFormationServiceException {
|
|
360
|
-
name = "InvalidChangeSetStatusException";
|
|
361
|
-
$fault = "client";
|
|
362
|
-
Message;
|
|
363
|
-
constructor(opts) {
|
|
364
|
-
super({
|
|
365
|
-
name: "InvalidChangeSetStatusException",
|
|
366
|
-
$fault: "client",
|
|
367
|
-
...opts,
|
|
368
|
-
});
|
|
369
|
-
Object.setPrototypeOf(this, InvalidChangeSetStatusException.prototype);
|
|
370
|
-
this.Message = opts.Message;
|
|
371
|
-
}
|
|
372
|
-
}
|
|
373
|
-
class GeneratedTemplateNotFoundException extends CloudFormationServiceException {
|
|
374
|
-
name = "GeneratedTemplateNotFoundException";
|
|
375
|
-
$fault = "client";
|
|
376
|
-
Message;
|
|
377
|
-
constructor(opts) {
|
|
378
|
-
super({
|
|
379
|
-
name: "GeneratedTemplateNotFoundException",
|
|
380
|
-
$fault: "client",
|
|
381
|
-
...opts,
|
|
382
|
-
});
|
|
383
|
-
Object.setPrototypeOf(this, GeneratedTemplateNotFoundException.prototype);
|
|
384
|
-
this.Message = opts.Message;
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
class StackSetNotEmptyException extends CloudFormationServiceException {
|
|
388
|
-
name = "StackSetNotEmptyException";
|
|
389
|
-
$fault = "client";
|
|
390
|
-
Message;
|
|
391
|
-
constructor(opts) {
|
|
392
|
-
super({
|
|
393
|
-
name: "StackSetNotEmptyException",
|
|
394
|
-
$fault: "client",
|
|
395
|
-
...opts,
|
|
396
|
-
});
|
|
397
|
-
Object.setPrototypeOf(this, StackSetNotEmptyException.prototype);
|
|
398
|
-
this.Message = opts.Message;
|
|
399
|
-
}
|
|
400
|
-
}
|
|
401
|
-
class ResourceScanNotFoundException extends CloudFormationServiceException {
|
|
402
|
-
name = "ResourceScanNotFoundException";
|
|
403
|
-
$fault = "client";
|
|
404
|
-
Message;
|
|
405
|
-
constructor(opts) {
|
|
406
|
-
super({
|
|
407
|
-
name: "ResourceScanNotFoundException",
|
|
408
|
-
$fault: "client",
|
|
409
|
-
...opts,
|
|
410
|
-
});
|
|
411
|
-
Object.setPrototypeOf(this, ResourceScanNotFoundException.prototype);
|
|
412
|
-
this.Message = opts.Message;
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
class StackInstanceNotFoundException extends CloudFormationServiceException {
|
|
416
|
-
name = "StackInstanceNotFoundException";
|
|
417
|
-
$fault = "client";
|
|
418
|
-
Message;
|
|
419
|
-
constructor(opts) {
|
|
420
|
-
super({
|
|
421
|
-
name: "StackInstanceNotFoundException",
|
|
422
|
-
$fault: "client",
|
|
423
|
-
...opts,
|
|
424
|
-
});
|
|
425
|
-
Object.setPrototypeOf(this, StackInstanceNotFoundException.prototype);
|
|
426
|
-
this.Message = opts.Message;
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
class StackRefactorNotFoundException extends CloudFormationServiceException {
|
|
430
|
-
name = "StackRefactorNotFoundException";
|
|
431
|
-
$fault = "client";
|
|
432
|
-
Message;
|
|
433
|
-
constructor(opts) {
|
|
434
|
-
super({
|
|
435
|
-
name: "StackRefactorNotFoundException",
|
|
436
|
-
$fault: "client",
|
|
437
|
-
...opts,
|
|
438
|
-
});
|
|
439
|
-
Object.setPrototypeOf(this, StackRefactorNotFoundException.prototype);
|
|
440
|
-
this.Message = opts.Message;
|
|
441
|
-
}
|
|
442
|
-
}
|
|
443
|
-
class HookResultNotFoundException extends CloudFormationServiceException {
|
|
444
|
-
name = "HookResultNotFoundException";
|
|
445
|
-
$fault = "client";
|
|
446
|
-
Message;
|
|
447
|
-
constructor(opts) {
|
|
448
|
-
super({
|
|
449
|
-
name: "HookResultNotFoundException",
|
|
450
|
-
$fault: "client",
|
|
451
|
-
...opts,
|
|
452
|
-
});
|
|
453
|
-
Object.setPrototypeOf(this, HookResultNotFoundException.prototype);
|
|
454
|
-
this.Message = opts.Message;
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
class StackNotFoundException extends CloudFormationServiceException {
|
|
458
|
-
name = "StackNotFoundException";
|
|
459
|
-
$fault = "client";
|
|
460
|
-
Message;
|
|
461
|
-
constructor(opts) {
|
|
462
|
-
super({
|
|
463
|
-
name: "StackNotFoundException",
|
|
464
|
-
$fault: "client",
|
|
465
|
-
...opts,
|
|
466
|
-
});
|
|
467
|
-
Object.setPrototypeOf(this, StackNotFoundException.prototype);
|
|
468
|
-
this.Message = opts.Message;
|
|
469
|
-
}
|
|
470
|
-
}
|
|
471
|
-
class ResourceScanInProgressException extends CloudFormationServiceException {
|
|
472
|
-
name = "ResourceScanInProgressException";
|
|
473
|
-
$fault = "client";
|
|
474
|
-
Message;
|
|
475
|
-
constructor(opts) {
|
|
476
|
-
super({
|
|
477
|
-
name: "ResourceScanInProgressException",
|
|
478
|
-
$fault: "client",
|
|
479
|
-
...opts,
|
|
480
|
-
});
|
|
481
|
-
Object.setPrototypeOf(this, ResourceScanInProgressException.prototype);
|
|
482
|
-
this.Message = opts.Message;
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
class InvalidStateTransitionException extends CloudFormationServiceException {
|
|
486
|
-
name = "InvalidStateTransitionException";
|
|
487
|
-
$fault = "client";
|
|
488
|
-
Message;
|
|
489
|
-
constructor(opts) {
|
|
490
|
-
super({
|
|
491
|
-
name: "InvalidStateTransitionException",
|
|
492
|
-
$fault: "client",
|
|
493
|
-
...opts,
|
|
494
|
-
});
|
|
495
|
-
Object.setPrototypeOf(this, InvalidStateTransitionException.prototype);
|
|
496
|
-
this.Message = opts.Message;
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
class OperationStatusCheckFailedException extends CloudFormationServiceException {
|
|
500
|
-
name = "OperationStatusCheckFailedException";
|
|
501
|
-
$fault = "client";
|
|
502
|
-
Message;
|
|
503
|
-
constructor(opts) {
|
|
504
|
-
super({
|
|
505
|
-
name: "OperationStatusCheckFailedException",
|
|
506
|
-
$fault: "client",
|
|
507
|
-
...opts,
|
|
508
|
-
});
|
|
509
|
-
Object.setPrototypeOf(this, OperationStatusCheckFailedException.prototype);
|
|
510
|
-
this.Message = opts.Message;
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
class ResourceScanLimitExceededException extends CloudFormationServiceException {
|
|
514
|
-
name = "ResourceScanLimitExceededException";
|
|
515
|
-
$fault = "client";
|
|
516
|
-
Message;
|
|
517
|
-
constructor(opts) {
|
|
518
|
-
super({
|
|
519
|
-
name: "ResourceScanLimitExceededException",
|
|
520
|
-
$fault: "client",
|
|
521
|
-
...opts,
|
|
522
|
-
});
|
|
523
|
-
Object.setPrototypeOf(this, ResourceScanLimitExceededException.prototype);
|
|
524
|
-
this.Message = opts.Message;
|
|
525
|
-
}
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
const _A = "Arn";
|
|
529
|
-
const _AC = "AfterContext";
|
|
530
|
-
const _ACT = "AttributeChangeType";
|
|
531
|
-
const _AD = "AutoDeployment";
|
|
532
|
-
const _AEE = "AlreadyExistsException";
|
|
533
|
-
const _AFT = "AccountFilterType";
|
|
534
|
-
const _AGR = "AccountGateResult";
|
|
535
|
-
const _AL = "AccountLimit";
|
|
536
|
-
const _ALL = "AccountLimitList";
|
|
537
|
-
const _ALc = "AccountLimits";
|
|
538
|
-
const _ALn = "AnnotationList";
|
|
539
|
-
const _AN = "AnnotationName";
|
|
540
|
-
const _AOA = "ActivateOrganizationsAccess";
|
|
541
|
-
const _AOAI = "ActivateOrganizationsAccessInput";
|
|
542
|
-
const _AOAO = "ActivateOrganizationsAccessOutput";
|
|
543
|
-
const _AP = "ActualProperties";
|
|
544
|
-
const _AR = "AddResources";
|
|
545
|
-
const _ARARN = "AdministrationRoleARN";
|
|
546
|
-
const _AT = "ActivateType";
|
|
547
|
-
const _ATAC = "AcceptTermsAndConditions";
|
|
548
|
-
const _ATI = "ActivateTypeInput";
|
|
549
|
-
const _ATO = "ActivateTypeOutput";
|
|
550
|
-
const _AU = "AutoUpdate";
|
|
551
|
-
const _AUc = "AccountsUrl";
|
|
552
|
-
const _AV = "ActualValue";
|
|
553
|
-
const _AVF = "AfterValueFrom";
|
|
554
|
-
const _AVf = "AfterValue";
|
|
555
|
-
const _AVl = "AllowedValues";
|
|
556
|
-
const _Ac = "Accounts";
|
|
557
|
-
const _Acc = "Account";
|
|
558
|
-
const _Act = "Action";
|
|
559
|
-
const _Acti = "Active";
|
|
560
|
-
const _Al = "Alias";
|
|
561
|
-
const _An = "Annotation";
|
|
562
|
-
const _Ann = "Annotations";
|
|
563
|
-
const _At = "Attribute";
|
|
564
|
-
const _BC = "BeforeContext";
|
|
565
|
-
const _BDTC = "BatchDescribeTypeConfigurations";
|
|
566
|
-
const _BDTCE = "BatchDescribeTypeConfigurationsError";
|
|
567
|
-
const _BDTCEa = "BatchDescribeTypeConfigurationsErrors";
|
|
568
|
-
const _BDTCI = "BatchDescribeTypeConfigurationsInput";
|
|
569
|
-
const _BDTCO = "BatchDescribeTypeConfigurationsOutput";
|
|
570
|
-
const _BT = "BearerToken";
|
|
571
|
-
const _BV = "BeforeValue";
|
|
572
|
-
const _BVF = "BeforeValueFrom";
|
|
573
|
-
const _C = "Change";
|
|
574
|
-
const _CA = "CallAs";
|
|
575
|
-
const _CAo = "ConnectionArn";
|
|
576
|
-
const _CAon = "ConfigurationAlias";
|
|
577
|
-
const _CAonf = "ConfigurationArn";
|
|
578
|
-
const _CBME = "CreatedButModifiedException";
|
|
579
|
-
const _CCS = "CreateChangeSet";
|
|
580
|
-
const _CCSI = "CreateChangeSetInput";
|
|
581
|
-
const _CCSO = "CreateChangeSetOutput";
|
|
582
|
-
const _CE = "CausingEntity";
|
|
583
|
-
const _CFNRE = "CFNRegistryException";
|
|
584
|
-
const _CGT = "CreateGeneratedTemplate";
|
|
585
|
-
const _CGTI = "CreateGeneratedTemplateInput";
|
|
586
|
-
const _CGTO = "CreateGeneratedTemplateOutput";
|
|
587
|
-
const _CM = "ConcurrencyMode";
|
|
588
|
-
const _COS = "CurrentOperationStatus";
|
|
589
|
-
const _CR = "CapabilitiesReason";
|
|
590
|
-
const _CRLEE = "ConcurrentResourcesLimitExceededException";
|
|
591
|
-
const _CRT = "ClientRequestToken";
|
|
592
|
-
const _CS = "ConfigurationSchema";
|
|
593
|
-
const _CSH = "ChangeSetHook";
|
|
594
|
-
const _CSHRTD = "ChangeSetHookResourceTargetDetails";
|
|
595
|
-
const _CSHTD = "ChangeSetHookTargetDetails";
|
|
596
|
-
const _CSHh = "ChangeSetHooks";
|
|
597
|
-
const _CSI = "ChangeSetId";
|
|
598
|
-
const _CSII = "CreateStackInstancesInput";
|
|
599
|
-
const _CSIO = "CreateStackInstancesOutput";
|
|
600
|
-
const _CSIr = "CreateStackInput";
|
|
601
|
-
const _CSIre = "CreateStackInstances";
|
|
602
|
-
const _CSN = "ChangeSetName";
|
|
603
|
-
const _CSNFE = "ChangeSetNotFoundException";
|
|
604
|
-
const _CSO = "CreateStackOutput";
|
|
605
|
-
const _CSR = "CreateStackRefactor";
|
|
606
|
-
const _CSRI = "CreateStackRefactorInput";
|
|
607
|
-
const _CSRO = "CreateStackRefactorOutput";
|
|
608
|
-
const _CSS = "ChangeSetSummary";
|
|
609
|
-
const _CSSI = "CreateStackSetInput";
|
|
610
|
-
const _CSSO = "CreateStackSetOutput";
|
|
611
|
-
const _CSSh = "ChangeSetSummaries";
|
|
612
|
-
const _CSSr = "CreateStackSet";
|
|
613
|
-
const _CST = "ChangeSetType";
|
|
614
|
-
const _CSh = "ChangeSource";
|
|
615
|
-
const _CSr = "CreateStack";
|
|
616
|
-
const _CT = "CreationTime";
|
|
617
|
-
const _CTl = "ClientToken";
|
|
618
|
-
const _CTr = "CreationTimestamp";
|
|
619
|
-
const _CUR = "ContinueUpdateRollback";
|
|
620
|
-
const _CURI = "ContinueUpdateRollbackInput";
|
|
621
|
-
const _CURO = "ContinueUpdateRollbackOutput";
|
|
622
|
-
const _CUS = "CancelUpdateStack";
|
|
623
|
-
const _CUSI = "CancelUpdateStackInput";
|
|
624
|
-
const _Ca = "Capabilities";
|
|
625
|
-
const _Cat = "Category";
|
|
626
|
-
const _Ch = "Changes";
|
|
627
|
-
const _Co = "Configuration";
|
|
628
|
-
const _D = "Description";
|
|
629
|
-
const _DAL = "DescribeAccountLimits";
|
|
630
|
-
const _DALI = "DescribeAccountLimitsInput";
|
|
631
|
-
const _DALO = "DescribeAccountLimitsOutput";
|
|
632
|
-
const _DCS = "DeleteChangeSet";
|
|
633
|
-
const _DCSH = "DescribeChangeSetHooks";
|
|
634
|
-
const _DCSHI = "DescribeChangeSetHooksInput";
|
|
635
|
-
const _DCSHO = "DescribeChangeSetHooksOutput";
|
|
636
|
-
const _DCSI = "DeleteChangeSetInput";
|
|
637
|
-
const _DCSIe = "DescribeChangeSetInput";
|
|
638
|
-
const _DCSO = "DeleteChangeSetOutput";
|
|
639
|
-
const _DCSOe = "DescribeChangeSetOutput";
|
|
640
|
-
const _DCSe = "DescribeChangeSet";
|
|
641
|
-
const _DDS = "DriftDetectionStatus";
|
|
642
|
-
const _DDT = "DriftDetectionTimestamp";
|
|
643
|
-
const _DE = "DescribeEvents";
|
|
644
|
-
const _DEI = "DescribeEventsInput";
|
|
645
|
-
const _DEO = "DescribeEventsOutput";
|
|
646
|
-
const _DGT = "DeleteGeneratedTemplate";
|
|
647
|
-
const _DGTI = "DeleteGeneratedTemplateInput";
|
|
648
|
-
const _DGTIe = "DescribeGeneratedTemplateInput";
|
|
649
|
-
const _DGTO = "DescribeGeneratedTemplateOutput";
|
|
650
|
-
const _DGTe = "DescribeGeneratedTemplate";
|
|
651
|
-
const _DI = "DriftInformation";
|
|
652
|
-
const _DM = "DeploymentMode";
|
|
653
|
-
const _DMe = "DeletionMode";
|
|
654
|
-
const _DO = "DependsOn";
|
|
655
|
-
const _DOA = "DeactivateOrganizationsAccess";
|
|
656
|
-
const _DOAI = "DeactivateOrganizationsAccessInput";
|
|
657
|
-
const _DOAIe = "DescribeOrganizationsAccessInput";
|
|
658
|
-
const _DOAO = "DeactivateOrganizationsAccessOutput";
|
|
659
|
-
const _DOAOe = "DescribeOrganizationsAccessOutput";
|
|
660
|
-
const _DOAe = "DescribeOrganizationsAccess";
|
|
661
|
-
const _DP = "DeletionPolicy";
|
|
662
|
-
const _DPI = "DescribePublisherInput";
|
|
663
|
-
const _DPO = "DescribePublisherOutput";
|
|
664
|
-
const _DPe = "DescribePublisher";
|
|
665
|
-
const _DR = "DisableRollback";
|
|
666
|
-
const _DRS = "DescribeResourceScan";
|
|
667
|
-
const _DRSI = "DescribeResourceScanInput";
|
|
668
|
-
const _DRSO = "DescribeResourceScanOutput";
|
|
669
|
-
const _DRe = "DetectionReason";
|
|
670
|
-
const _DS = "DetectionStatus";
|
|
671
|
-
const _DSD = "DetectStackDrift";
|
|
672
|
-
const _DSDDS = "DescribeStackDriftDetectionStatus";
|
|
673
|
-
const _DSDDSI = "DescribeStackDriftDetectionStatusInput";
|
|
674
|
-
const _DSDDSO = "DescribeStackDriftDetectionStatusOutput";
|
|
675
|
-
const _DSDI = "DetectStackDriftInput";
|
|
676
|
-
const _DSDO = "DetectStackDriftOutput";
|
|
677
|
-
const _DSE = "DescribeStackEvents";
|
|
678
|
-
const _DSEI = "DescribeStackEventsInput";
|
|
679
|
-
const _DSEO = "DescribeStackEventsOutput";
|
|
680
|
-
const _DSI = "DeleteStackInput";
|
|
681
|
-
const _DSIC = "DriftedStackInstancesCount";
|
|
682
|
-
const _DSII = "DeleteStackInstancesInput";
|
|
683
|
-
const _DSIIe = "DescribeStackInstanceInput";
|
|
684
|
-
const _DSIO = "DeleteStackInstancesOutput";
|
|
685
|
-
const _DSIOe = "DescribeStackInstanceOutput";
|
|
686
|
-
const _DSIe = "DescribeStacksInput";
|
|
687
|
-
const _DSIel = "DeleteStackInstances";
|
|
688
|
-
const _DSIes = "DescribeStackInstance";
|
|
689
|
-
const _DSO = "DescribeStacksOutput";
|
|
690
|
-
const _DSR = "DetectionStatusReason";
|
|
691
|
-
const _DSRC = "DriftedStackResourceCount";
|
|
692
|
-
const _DSRD = "DescribeStackResourceDrifts";
|
|
693
|
-
const _DSRDI = "DescribeStackResourceDriftsInput";
|
|
694
|
-
const _DSRDIe = "DetectStackResourceDriftInput";
|
|
695
|
-
const _DSRDO = "DescribeStackResourceDriftsOutput";
|
|
696
|
-
const _DSRDOe = "DetectStackResourceDriftOutput";
|
|
697
|
-
const _DSRDe = "DetectStackResourceDrift";
|
|
698
|
-
const _DSRI = "DescribeStackRefactorInput";
|
|
699
|
-
const _DSRIe = "DescribeStackResourceInput";
|
|
700
|
-
const _DSRIes = "DescribeStackResourcesInput";
|
|
701
|
-
const _DSRO = "DescribeStackRefactorOutput";
|
|
702
|
-
const _DSROe = "DescribeStackResourceOutput";
|
|
703
|
-
const _DSROes = "DescribeStackResourcesOutput";
|
|
704
|
-
const _DSRe = "DescribeStackRefactor";
|
|
705
|
-
const _DSRes = "DescribeStackResource";
|
|
706
|
-
const _DSResc = "DescribeStackResources";
|
|
707
|
-
const _DSRr = "DriftStatusReason";
|
|
708
|
-
const _DSS = "DeleteStackSet";
|
|
709
|
-
const _DSSD = "DetectStackSetDrift";
|
|
710
|
-
const _DSSDI = "DetectStackSetDriftInput";
|
|
711
|
-
const _DSSDO = "DetectStackSetDriftOutput";
|
|
712
|
-
const _DSSI = "DeleteStackSetInput";
|
|
713
|
-
const _DSSIe = "DescribeStackSetInput";
|
|
714
|
-
const _DSSO = "DeleteStackSetOutput";
|
|
715
|
-
const _DSSOI = "DescribeStackSetOperationInput";
|
|
716
|
-
const _DSSOO = "DescribeStackSetOperationOutput";
|
|
717
|
-
const _DSSOe = "DescribeStackSetOutput";
|
|
718
|
-
const _DSSOes = "DescribeStackSetOperation";
|
|
719
|
-
const _DSSe = "DescribeStackSet";
|
|
720
|
-
const _DSe = "DeprecatedStatus";
|
|
721
|
-
const _DSel = "DeleteStack";
|
|
722
|
-
const _DSes = "DescribeStacks";
|
|
723
|
-
const _DSet = "DetailedStatus";
|
|
724
|
-
const _DSr = "DriftStatus";
|
|
725
|
-
const _DT = "DeploymentTargets";
|
|
726
|
-
const _DTI = "DeactivateTypeInput";
|
|
727
|
-
const _DTIe = "DeregisterTypeInput";
|
|
728
|
-
const _DTIes = "DescribeTypeInput";
|
|
729
|
-
const _DTO = "DeactivateTypeOutput";
|
|
730
|
-
const _DTOe = "DeregisterTypeOutput";
|
|
731
|
-
const _DTOes = "DescribeTypeOutput";
|
|
732
|
-
const _DTR = "DescribeTypeRegistration";
|
|
733
|
-
const _DTRI = "DescribeTypeRegistrationInput";
|
|
734
|
-
const _DTRO = "DescribeTypeRegistrationOutput";
|
|
735
|
-
const _DTe = "DeclaredTransforms";
|
|
736
|
-
const _DTea = "DeactivateType";
|
|
737
|
-
const _DTel = "DeletionTime";
|
|
738
|
-
const _DTer = "DeregisterType";
|
|
739
|
-
const _DTes = "DescribeType";
|
|
740
|
-
const _DTi = "DifferenceType";
|
|
741
|
-
const _DU = "DocumentationUrl";
|
|
742
|
-
const _DV = "DefaultValue";
|
|
743
|
-
const _DVI = "DefaultVersionId";
|
|
744
|
-
const _De = "Details";
|
|
745
|
-
const _Des = "Destination";
|
|
746
|
-
const _Det = "Detection";
|
|
747
|
-
const _Dr = "Drift";
|
|
748
|
-
const _E = "Enabled";
|
|
749
|
-
const _EC = "ErrorCode";
|
|
750
|
-
const _ECS = "ExecuteChangeSet";
|
|
751
|
-
const _ECSI = "ExecuteChangeSetInput";
|
|
752
|
-
const _ECSO = "ExecuteChangeSetOutput";
|
|
753
|
-
const _EF = "EventFilter";
|
|
754
|
-
const _EI = "EventId";
|
|
755
|
-
const _EM = "ErrorMessage";
|
|
756
|
-
const _EN = "ExportName";
|
|
757
|
-
const _EP = "ExpectedProperties";
|
|
758
|
-
const _ERA = "ExecutionRoleArn";
|
|
759
|
-
const _ERN = "ExecutionRoleName";
|
|
760
|
-
const _ES = "ExecutionStatus";
|
|
761
|
-
const _ESC = "EnableStackCreation";
|
|
762
|
-
const _ESF = "ExecutionStatusFilter";
|
|
763
|
-
const _ESI = "ExportingStackId";
|
|
764
|
-
const _ESR = "ExecutionStatusReason";
|
|
765
|
-
const _ESRI = "ExecuteStackRefactorInput";
|
|
766
|
-
const _ESRx = "ExecuteStackRefactor";
|
|
767
|
-
const _ET = "EndTime";
|
|
768
|
-
const _ETC = "EstimateTemplateCost";
|
|
769
|
-
const _ETCI = "EstimateTemplateCostInput";
|
|
770
|
-
const _ETCO = "EstimateTemplateCostOutput";
|
|
771
|
-
const _ETP = "EnableTerminationProtection";
|
|
772
|
-
const _ETn = "EndTimestamp";
|
|
773
|
-
const _ETv = "EventType";
|
|
774
|
-
const _EV = "ExpectedValue";
|
|
775
|
-
const _En = "Entity";
|
|
776
|
-
const _Er = "Errors";
|
|
777
|
-
const _Ev = "Evaluation";
|
|
778
|
-
const _Ex = "Export";
|
|
779
|
-
const _Exp = "Exports";
|
|
780
|
-
const _F = "Filters";
|
|
781
|
-
const _FE = "FailedEvents";
|
|
782
|
-
const _FM = "FailureMode";
|
|
783
|
-
const _FSIC = "FailedStackInstancesCount";
|
|
784
|
-
const _FTC = "FailureToleranceCount";
|
|
785
|
-
const _FTP = "FailureTolerancePercentage";
|
|
786
|
-
const _Fo = "Format";
|
|
787
|
-
const _GGT = "GetGeneratedTemplate";
|
|
788
|
-
const _GGTI = "GetGeneratedTemplateInput";
|
|
789
|
-
const _GGTO = "GetGeneratedTemplateOutput";
|
|
790
|
-
const _GHR = "GetHookResult";
|
|
791
|
-
const _GHRI = "GetHookResultInput";
|
|
792
|
-
const _GHRO = "GetHookResultOutput";
|
|
793
|
-
const _GSP = "GetStackPolicy";
|
|
794
|
-
const _GSPI = "GetStackPolicyInput";
|
|
795
|
-
const _GSPO = "GetStackPolicyOutput";
|
|
796
|
-
const _GT = "GetTemplate";
|
|
797
|
-
const _GTI = "GeneratedTemplateId";
|
|
798
|
-
const _GTIe = "GetTemplateInput";
|
|
799
|
-
const _GTN = "GeneratedTemplateName";
|
|
800
|
-
const _GTNFE = "GeneratedTemplateNotFoundException";
|
|
801
|
-
const _GTO = "GetTemplateOutput";
|
|
802
|
-
const _GTS = "GetTemplateSummary";
|
|
803
|
-
const _GTSI = "GetTemplateSummaryInput";
|
|
804
|
-
const _GTSO = "GetTemplateSummaryOutput";
|
|
805
|
-
const _H = "Hooks";
|
|
806
|
-
const _HET = "HookExecutionTarget";
|
|
807
|
-
const _HFM = "HookFailureMode";
|
|
808
|
-
const _HIC = "HookInvocationCount";
|
|
809
|
-
const _HII = "HookInvocationId";
|
|
810
|
-
const _HIP = "HookInvocationPoint";
|
|
811
|
-
const _HR = "HookResults";
|
|
812
|
-
const _HRI = "HookResultId";
|
|
813
|
-
const _HRNFE = "HookResultNotFoundException";
|
|
814
|
-
const _HRS = "HookResultSummary";
|
|
815
|
-
const _HRSo = "HookResultSummaries";
|
|
816
|
-
const _HS = "HookStatus";
|
|
817
|
-
const _HSR = "HookStatusReason";
|
|
818
|
-
const _HT = "HookTarget";
|
|
819
|
-
const _HTo = "HookType";
|
|
820
|
-
const _I = "Id";
|
|
821
|
-
const _IA = "IsActivated";
|
|
822
|
-
const _IAn = "InvokedAt";
|
|
823
|
-
const _ICE = "InsufficientCapabilitiesException";
|
|
824
|
-
const _ICSSE = "InvalidChangeSetStatusException";
|
|
825
|
-
const _IDC = "IsDefaultConfiguration";
|
|
826
|
-
const _IDV = "IsDefaultVersion";
|
|
827
|
-
const _IER = "ImportExistingResources";
|
|
828
|
-
const _INS = "IncludeNestedStacks";
|
|
829
|
-
const _IOE = "InvalidOperationException";
|
|
830
|
-
const _IP = "InvocationPoint";
|
|
831
|
-
const _IPSIC = "InProgressStackInstancesCount";
|
|
832
|
-
const _IPV = "IncludePropertyValues";
|
|
833
|
-
const _IPd = "IdentityProvider";
|
|
834
|
-
const _ISSIC = "InSyncStackInstancesCount";
|
|
835
|
-
const _ISTE = "InvalidStateTransitionException";
|
|
836
|
-
const _ISTSS = "ImportStacksToStackSet";
|
|
837
|
-
const _ISTSSI = "ImportStacksToStackSetInput";
|
|
838
|
-
const _ISTSSO = "ImportStacksToStackSetOutput";
|
|
839
|
-
const _Im = "Imports";
|
|
840
|
-
const _K = "Key";
|
|
841
|
-
const _LC = "LoggingConfig";
|
|
842
|
-
const _LCS = "ListChangeSets";
|
|
843
|
-
const _LCSI = "ListChangeSetsInput";
|
|
844
|
-
const _LCSO = "ListChangeSetsOutput";
|
|
845
|
-
const _LCT = "LastCheckTimestamp";
|
|
846
|
-
const _LDB = "LogDeliveryBucket";
|
|
847
|
-
const _LDCT = "LastDriftCheckTimestamp";
|
|
848
|
-
const _LE = "ListExports";
|
|
849
|
-
const _LEE = "LimitExceededException";
|
|
850
|
-
const _LEI = "ListExportsInput";
|
|
851
|
-
const _LEO = "ListExportsOutput";
|
|
852
|
-
const _LGN = "LogGroupName";
|
|
853
|
-
const _LGT = "ListGeneratedTemplates";
|
|
854
|
-
const _LGTI = "ListGeneratedTemplatesInput";
|
|
855
|
-
const _LGTO = "ListGeneratedTemplatesOutput";
|
|
856
|
-
const _LHR = "ListHookResults";
|
|
857
|
-
const _LHRI = "ListHookResultsInput";
|
|
858
|
-
const _LHRO = "ListHookResultsOutput";
|
|
859
|
-
const _LI = "ListImports";
|
|
860
|
-
const _LIH = "LogicalIdHierarchy";
|
|
861
|
-
const _LII = "ListImportsInput";
|
|
862
|
-
const _LIO = "ListImportsOutput";
|
|
863
|
-
const _LO = "LastOperations";
|
|
864
|
-
const _LOI = "LastOperationId";
|
|
865
|
-
const _LPV = "LatestPublicVersion";
|
|
866
|
-
const _LRA = "LogRoleArn";
|
|
867
|
-
const _LRD = "LiveResourceDrift";
|
|
868
|
-
const _LRI = "LogicalResourceId";
|
|
869
|
-
const _LRIo = "LogicalResourceIds";
|
|
870
|
-
const _LRS = "ListResourceScans";
|
|
871
|
-
const _LRSI = "ListResourceScansInput";
|
|
872
|
-
const _LRSO = "ListResourceScansOutput";
|
|
873
|
-
const _LRSR = "ListResourceScanResources";
|
|
874
|
-
const _LRSRI = "ListResourceScanResourcesInput";
|
|
875
|
-
const _LRSRO = "ListResourceScanResourcesOutput";
|
|
876
|
-
const _LRSRR = "ListResourceScanRelatedResources";
|
|
877
|
-
const _LRSRRI = "ListResourceScanRelatedResourcesInput";
|
|
878
|
-
const _LRSRRO = "ListResourceScanRelatedResourcesOutput";
|
|
879
|
-
const _LS = "ListStacks";
|
|
880
|
-
const _LSI = "ListStacksInput";
|
|
881
|
-
const _LSII = "ListStackInstancesInput";
|
|
882
|
-
const _LSIO = "ListStackInstancesOutput";
|
|
883
|
-
const _LSIRD = "ListStackInstanceResourceDrifts";
|
|
884
|
-
const _LSIRDI = "ListStackInstanceResourceDriftsInput";
|
|
885
|
-
const _LSIRDO = "ListStackInstanceResourceDriftsOutput";
|
|
886
|
-
const _LSIi = "ListStackInstances";
|
|
887
|
-
const _LSO = "ListStacksOutput";
|
|
888
|
-
const _LSR = "ListStackRefactors";
|
|
889
|
-
const _LSRA = "ListStackRefactorActions";
|
|
890
|
-
const _LSRAI = "ListStackRefactorActionsInput";
|
|
891
|
-
const _LSRAO = "ListStackRefactorActionsOutput";
|
|
892
|
-
const _LSRI = "ListStackRefactorsInput";
|
|
893
|
-
const _LSRIi = "ListStackResourcesInput";
|
|
894
|
-
const _LSRO = "ListStackRefactorsOutput";
|
|
895
|
-
const _LSROi = "ListStackResourcesOutput";
|
|
896
|
-
const _LSRi = "ListStackResources";
|
|
897
|
-
const _LSS = "ListStackSets";
|
|
898
|
-
const _LSSADT = "ListStackSetAutoDeploymentTargets";
|
|
899
|
-
const _LSSADTI = "ListStackSetAutoDeploymentTargetsInput";
|
|
900
|
-
const _LSSADTO = "ListStackSetAutoDeploymentTargetsOutput";
|
|
901
|
-
const _LSSI = "ListStackSetsInput";
|
|
902
|
-
const _LSSO = "ListStackSetsOutput";
|
|
903
|
-
const _LSSOI = "ListStackSetOperationsInput";
|
|
904
|
-
const _LSSOO = "ListStackSetOperationsOutput";
|
|
905
|
-
const _LSSOR = "ListStackSetOperationResults";
|
|
906
|
-
const _LSSORI = "ListStackSetOperationResultsInput";
|
|
907
|
-
const _LSSORO = "ListStackSetOperationResultsOutput";
|
|
908
|
-
const _LSSOi = "ListStackSetOperations";
|
|
909
|
-
const _LT = "ListTypes";
|
|
910
|
-
const _LTI = "ListTypesInput";
|
|
911
|
-
const _LTO = "ListTypesOutput";
|
|
912
|
-
const _LTR = "ListTypeRegistrations";
|
|
913
|
-
const _LTRI = "ListTypeRegistrationsInput";
|
|
914
|
-
const _LTRO = "ListTypeRegistrationsOutput";
|
|
915
|
-
const _LTV = "ListTypeVersions";
|
|
916
|
-
const _LTVI = "ListTypeVersionsInput";
|
|
917
|
-
const _LTVO = "ListTypeVersionsOutput";
|
|
918
|
-
const _LU = "LastUpdated";
|
|
919
|
-
const _LUT = "LastUpdatedTime";
|
|
920
|
-
const _LUTa = "LastUpdatedTimestamp";
|
|
921
|
-
const _M = "Message";
|
|
922
|
-
const _MBS = "ManagedByStack";
|
|
923
|
-
const _MCC = "MaxConcurrentCount";
|
|
924
|
-
const _MCP = "MaxConcurrentPercentage";
|
|
925
|
-
const _ME = "ManagedExecution";
|
|
926
|
-
const _MI = "ModuleInfo";
|
|
927
|
-
const _MR = "MaxResults";
|
|
928
|
-
const _MTIM = "MonitoringTimeInMinutes";
|
|
929
|
-
const _MV = "MajorVersion";
|
|
930
|
-
const _Me = "Metadata";
|
|
931
|
-
const _N = "Name";
|
|
932
|
-
const _NAEE = "NameAlreadyExistsException";
|
|
933
|
-
const _NARN = "NotificationARNs";
|
|
934
|
-
const _NE = "NoEcho";
|
|
935
|
-
const _NGTN = "NewGeneratedTemplateName";
|
|
936
|
-
const _NOR = "NumberOfResources";
|
|
937
|
-
const _NT = "NextToken";
|
|
938
|
-
const _O = "Output";
|
|
939
|
-
const _OE = "OperationEvents";
|
|
940
|
-
const _OEp = "OperationEntry";
|
|
941
|
-
const _OEpe = "OperationEvent";
|
|
942
|
-
const _OF = "OnFailure";
|
|
943
|
-
const _OI = "OperationId";
|
|
944
|
-
const _OIAEE = "OperationIdAlreadyExistsException";
|
|
945
|
-
const _OIPE = "OperationInProgressException";
|
|
946
|
-
const _OK = "OutputKey";
|
|
947
|
-
const _ONFE = "OperationNotFoundException";
|
|
948
|
-
const _OP = "OperationPreferences";
|
|
949
|
-
const _ORF = "OperationResultFilter";
|
|
950
|
-
const _ORFp = "OperationResultFilters";
|
|
951
|
-
const _OS = "OperationStatus";
|
|
952
|
-
const _OSCFE = "OperationStatusCheckFailedException";
|
|
953
|
-
const _OSF = "OnStackFailure";
|
|
954
|
-
const _OT = "OperationType";
|
|
955
|
-
const _OTA = "OriginalTypeArn";
|
|
956
|
-
const _OTN = "OriginalTypeName";
|
|
957
|
-
const _OUI = "OrganizationalUnitIds";
|
|
958
|
-
const _OUIr = "OrganizationalUnitId";
|
|
959
|
-
const _OV = "OutputValue";
|
|
960
|
-
const _Ou = "Outputs";
|
|
961
|
-
const _P = "Parameters";
|
|
962
|
-
const _PA = "PolicyAction";
|
|
963
|
-
const _PC = "PercentageCompleted";
|
|
964
|
-
const _PCSI = "ParentChangeSetId";
|
|
965
|
-
const _PCa = "ParameterConstraints";
|
|
966
|
-
const _PD = "ParameterDeclaration";
|
|
967
|
-
const _PDC = "PreviousDeploymentContext";
|
|
968
|
-
const _PDa = "ParameterDeclarations";
|
|
969
|
-
const _PDr = "PropertyDifference";
|
|
970
|
-
const _PDro = "PropertyDifferences";
|
|
971
|
-
const _PI = "PublisherId";
|
|
972
|
-
const _PIa = "ParentId";
|
|
973
|
-
const _PIu = "PublisherIdentity";
|
|
974
|
-
const _PK = "ParameterKey";
|
|
975
|
-
const _PM = "PermissionModel";
|
|
976
|
-
const _PN = "PublisherName";
|
|
977
|
-
const _PO = "ParameterOverrides";
|
|
978
|
-
const _PP = "PublisherProfile";
|
|
979
|
-
const _PPr = "PropertyPath";
|
|
980
|
-
const _PRI = "PhysicalResourceId";
|
|
981
|
-
const _PRIC = "PhysicalResourceIdContext";
|
|
982
|
-
const _PRICKVP = "PhysicalResourceIdContextKeyValuePair";
|
|
983
|
-
const _PS = "PublisherStatus";
|
|
984
|
-
const _PSr = "ProgressStatus";
|
|
985
|
-
const _PT = "ProvisioningType";
|
|
986
|
-
const _PTA = "PublicTypeArn";
|
|
987
|
-
const _PTI = "PublishTypeInput";
|
|
988
|
-
const _PTO = "PublishTypeOutput";
|
|
989
|
-
const _PTa = "ParameterType";
|
|
990
|
-
const _PTu = "PublishType";
|
|
991
|
-
const _PV = "PreviousValue";
|
|
992
|
-
const _PVN = "PublicVersionNumber";
|
|
993
|
-
const _PVa = "ParameterValue";
|
|
994
|
-
const _Pa = "Parameter";
|
|
995
|
-
const _Pat = "Path";
|
|
996
|
-
const _Pr = "Progress";
|
|
997
|
-
const _Pro = "Properties";
|
|
998
|
-
const _R = "Resources";
|
|
999
|
-
const _RA = "ResourceAction";
|
|
1000
|
-
const _RAR = "RefreshAllResources";
|
|
1001
|
-
const _RARN = "RoleARN";
|
|
1002
|
-
const _RAT = "RequiredActivatedTypes";
|
|
1003
|
-
const _RATe = "RequiredActivatedType";
|
|
1004
|
-
const _RC = "ResourceChange";
|
|
1005
|
-
const _RCD = "ResourceChangeDetail";
|
|
1006
|
-
const _RCDe = "ResourceChangeDetails";
|
|
1007
|
-
const _RCSI = "RootChangeSetId";
|
|
1008
|
-
const _RCT = "RegionConcurrencyType";
|
|
1009
|
-
const _RCo = "RollbackConfiguration";
|
|
1010
|
-
const _RD = "ResourceDefinition";
|
|
1011
|
-
const _RDIA = "ResourceDriftIgnoredAttributes";
|
|
1012
|
-
const _RDIAe = "ResourceDriftIgnoredAttribute";
|
|
1013
|
-
const _RDS = "ResourceDriftStatus";
|
|
1014
|
-
const _RDe = "ResourceDetail";
|
|
1015
|
-
const _RDes = "ResourceDefinitions";
|
|
1016
|
-
const _RDeso = "ResourceDetails";
|
|
1017
|
-
const _REOC = "RetainExceptOnCreate";
|
|
1018
|
-
const _RF = "ResourcesFailed";
|
|
1019
|
-
const _RHP = "RecordHandlerProgress";
|
|
1020
|
-
const _RHPI = "RecordHandlerProgressInput";
|
|
1021
|
-
const _RHPO = "RecordHandlerProgressOutput";
|
|
1022
|
-
const _RI = "ResourceIdentifier";
|
|
1023
|
-
const _RIS = "ResourceIdentifierSummaries";
|
|
1024
|
-
const _RISe = "ResourceIdentifierSummary";
|
|
1025
|
-
const _RIe = "ResourceIdentifiers";
|
|
1026
|
-
const _RIo = "RootId";
|
|
1027
|
-
const _RL = "RemediationLink";
|
|
1028
|
-
const _RLe = "ResourceLocation";
|
|
1029
|
-
const _RM = "RemediationMessage";
|
|
1030
|
-
const _RMe = "ResourceMappings";
|
|
1031
|
-
const _RMes = "ResourceModel";
|
|
1032
|
-
const _RMeso = "ResourceMapping";
|
|
1033
|
-
const _RO = "RegionOrder";
|
|
1034
|
-
const _RP = "ResourceProperties";
|
|
1035
|
-
const _RPI = "RegisterPublisherInput";
|
|
1036
|
-
const _RPO = "RegisterPublisherOutput";
|
|
1037
|
-
const _RPe = "ResourcesProcessing";
|
|
1038
|
-
const _RPeg = "RegisterPublisher";
|
|
1039
|
-
const _RPes = "ResourcesPending";
|
|
1040
|
-
const _RR = "RetainResources";
|
|
1041
|
-
const _RRe = "ResourcesRead";
|
|
1042
|
-
const _RRel = "RelatedResources";
|
|
1043
|
-
const _RRem = "RemoveResources";
|
|
1044
|
-
const _RReq = "RequiresRecreation";
|
|
1045
|
-
const _RS = "RetainStacks";
|
|
1046
|
-
const _RSF = "RegistrationStatusFilter";
|
|
1047
|
-
const _RSI = "ResourceScanId";
|
|
1048
|
-
const _RSIPE = "ResourceScanInProgressException";
|
|
1049
|
-
const _RSIo = "RollbackStackInput";
|
|
1050
|
-
const _RSLEE = "ResourceScanLimitExceededException";
|
|
1051
|
-
const _RSNFE = "ResourceScanNotFoundException";
|
|
1052
|
-
const _RSO = "RollbackStackOutput";
|
|
1053
|
-
const _RSOAR = "RetainStacksOnAccountRemoval";
|
|
1054
|
-
const _RSR = "ResourceStatusReason";
|
|
1055
|
-
const _RSS = "ResourceScanSummaries";
|
|
1056
|
-
const _RSSe = "ResourceScanSummary";
|
|
1057
|
-
const _RSe = "ResourcesScanned";
|
|
1058
|
-
const _RSes = "ResourceStatus";
|
|
1059
|
-
const _RSeso = "ResourcesSucceeded";
|
|
1060
|
-
const _RSo = "RollbackStack";
|
|
1061
|
-
const _RT = "ResourceType";
|
|
1062
|
-
const _RTD = "ResourceTargetDetails";
|
|
1063
|
-
const _RTDe = "ResourceTargetDefinition";
|
|
1064
|
-
const _RTI = "ResourcesToImport";
|
|
1065
|
-
const _RTIe = "RegisterTypeInput";
|
|
1066
|
-
const _RTIes = "ResourceToImport";
|
|
1067
|
-
const _RTL = "RegistrationTokenList";
|
|
1068
|
-
const _RTO = "RegisterTypeOutput";
|
|
1069
|
-
const _RTP = "ResourceTypePrefix";
|
|
1070
|
-
const _RTS = "ResourcesToSkip";
|
|
1071
|
-
const _RTe = "ResourceTypes";
|
|
1072
|
-
const _RTeg = "RegistrationToken";
|
|
1073
|
-
const _RTegi = "RegisterType";
|
|
1074
|
-
const _RTo = "RollbackTriggers";
|
|
1075
|
-
const _RTol = "RollbackTrigger";
|
|
1076
|
-
const _RV = "ResolvedValue";
|
|
1077
|
-
const _Re = "Regions";
|
|
1078
|
-
const _Rea = "Reason";
|
|
1079
|
-
const _Reg = "Region";
|
|
1080
|
-
const _Rep = "Replacement";
|
|
1081
|
-
const _Req = "Required";
|
|
1082
|
-
const _S = "Status";
|
|
1083
|
-
const _SA = "StagesAvailable";
|
|
1084
|
-
const _SD = "StackDefinitions";
|
|
1085
|
-
const _SDDI = "StackDriftDetectionId";
|
|
1086
|
-
const _SDI = "StackDriftInformation";
|
|
1087
|
-
const _SDIS = "StackDriftInformationSummary";
|
|
1088
|
-
const _SDS = "StackDriftStatus";
|
|
1089
|
-
const _SDt = "StackDefinition";
|
|
1090
|
-
const _SDta = "StatusDetails";
|
|
1091
|
-
const _SE = "StackEvents";
|
|
1092
|
-
const _SEt = "StackEvent";
|
|
1093
|
-
const _SF = "ScanFilters";
|
|
1094
|
-
const _SFc = "ScanFilter";
|
|
1095
|
-
const _SHP = "SchemaHandlerPackage";
|
|
1096
|
-
const _SI = "StackId";
|
|
1097
|
-
const _SIA = "StackInstanceAccount";
|
|
1098
|
-
const _SICS = "StackInstanceComprehensiveStatus";
|
|
1099
|
-
const _SIF = "StackInstanceFilter";
|
|
1100
|
-
const _SIFt = "StackInstanceFilters";
|
|
1101
|
-
const _SINFE = "StackInstanceNotFoundException";
|
|
1102
|
-
const _SIR = "StackInstanceRegion";
|
|
1103
|
-
const _SIRDS = "StackInstanceResourceDriftStatuses";
|
|
1104
|
-
const _SIRDSt = "StackInstanceResourceDriftsSummary";
|
|
1105
|
-
const _SIRDSta = "StackInstanceResourceDriftsSummaries";
|
|
1106
|
-
const _SIS = "StackInstanceStatus";
|
|
1107
|
-
const _SISt = "StackInstanceSummary";
|
|
1108
|
-
const _SISta = "StackInstanceSummaries";
|
|
1109
|
-
const _SIU = "StackIdsUrl";
|
|
1110
|
-
const _SIt = "StackInstance";
|
|
1111
|
-
const _SIta = "StackIds";
|
|
1112
|
-
const _SL = "SeverityLevel";
|
|
1113
|
-
const _SM = "StatusMessage";
|
|
1114
|
-
const _SMV = "SupportedMajorVersions";
|
|
1115
|
-
const _SN = "StackName";
|
|
1116
|
-
const _SNFE = "StackNotFoundException";
|
|
1117
|
-
const _SPB = "StackPolicyBody";
|
|
1118
|
-
const _SPDUB = "StackPolicyDuringUpdateBody";
|
|
1119
|
-
const _SPDUURL = "StackPolicyDuringUpdateURL";
|
|
1120
|
-
const _SPURL = "StackPolicyURL";
|
|
1121
|
-
const _SR = "StatusReason";
|
|
1122
|
-
const _SRA = "StackRefactorActions";
|
|
1123
|
-
const _SRAt = "StackRefactorAction";
|
|
1124
|
-
const _SRD = "StackResourceDrifts";
|
|
1125
|
-
const _SRDI = "StackResourceDriftInformation";
|
|
1126
|
-
const _SRDIS = "StackResourceDriftInformationSummary";
|
|
1127
|
-
const _SRDS = "StackResourceDriftStatus";
|
|
1128
|
-
const _SRDSF = "StackResourceDriftStatusFilters";
|
|
1129
|
-
const _SRDt = "StackResourceDetail";
|
|
1130
|
-
const _SRDta = "StackResourceDrift";
|
|
1131
|
-
const _SRE = "StaleRequestException";
|
|
1132
|
-
const _SRI = "StackRefactorId";
|
|
1133
|
-
const _SRIc = "ScannedResourceIdentifier";
|
|
1134
|
-
const _SRIca = "ScannedResourceIdentifiers";
|
|
1135
|
-
const _SRIi = "SignalResourceInput";
|
|
1136
|
-
const _SRNFE = "StackRefactorNotFoundException";
|
|
1137
|
-
const _SRS = "StackRefactorSummaries";
|
|
1138
|
-
const _SRSI = "StartResourceScanInput";
|
|
1139
|
-
const _SRSO = "StartResourceScanOutput";
|
|
1140
|
-
const _SRSt = "StackResourceSummaries";
|
|
1141
|
-
const _SRSta = "StackRefactorSummary";
|
|
1142
|
-
const _SRStac = "StackResourceSummary";
|
|
1143
|
-
const _SRStar = "StartResourceScan";
|
|
1144
|
-
const _SRTR = "StackRefactorTagResources";
|
|
1145
|
-
const _SRc = "ScannedResource";
|
|
1146
|
-
const _SRca = "ScannedResources";
|
|
1147
|
-
const _SRi = "SignalResource";
|
|
1148
|
-
const _SRt = "StackResources";
|
|
1149
|
-
const _SRta = "StackResource";
|
|
1150
|
-
const _SS = "StackSet";
|
|
1151
|
-
const _SSADTS = "StackSetAutoDeploymentTargetSummary";
|
|
1152
|
-
const _SSADTSt = "StackSetAutoDeploymentTargetSummaries";
|
|
1153
|
-
const _SSARN = "StackSetARN";
|
|
1154
|
-
const _SSDDD = "StackSetDriftDetectionDetails";
|
|
1155
|
-
const _SSF = "StackStatusFilter";
|
|
1156
|
-
const _SSI = "StackSetId";
|
|
1157
|
-
const _SSN = "StackSetName";
|
|
1158
|
-
const _SSNEE = "StackSetNotEmptyException";
|
|
1159
|
-
const _SSNFE = "StackSetNotFoundException";
|
|
1160
|
-
const _SSO = "StackSetOperation";
|
|
1161
|
-
const _SSOP = "StackSetOperationPreferences";
|
|
1162
|
-
const _SSORS = "StackSetOperationResultSummary";
|
|
1163
|
-
const _SSORSt = "StackSetOperationResultSummaries";
|
|
1164
|
-
const _SSOS = "StackSetOperationSummary";
|
|
1165
|
-
const _SSOSD = "StackSetOperationStatusDetails";
|
|
1166
|
-
const _SSOSt = "StackSetOperationSummaries";
|
|
1167
|
-
const _SSP = "SetStackPolicy";
|
|
1168
|
-
const _SSPI = "SetStackPolicyInput";
|
|
1169
|
-
const _SSR = "StackStatusReason";
|
|
1170
|
-
const _SSS = "StackSetSummary";
|
|
1171
|
-
const _SSSO = "StopStackSetOperation";
|
|
1172
|
-
const _SSSOI = "StopStackSetOperationInput";
|
|
1173
|
-
const _SSSOO = "StopStackSetOperationOutput";
|
|
1174
|
-
const _SSSt = "StackSetSummaries";
|
|
1175
|
-
const _SSt = "StackSummaries";
|
|
1176
|
-
const _SSta = "StackStatus";
|
|
1177
|
-
const _SStac = "StackSummary";
|
|
1178
|
-
const _ST = "StartTime";
|
|
1179
|
-
const _STC = "SetTypeConfiguration";
|
|
1180
|
-
const _STCI = "SetTypeConfigurationInput";
|
|
1181
|
-
const _STCO = "SetTypeConfigurationOutput";
|
|
1182
|
-
const _STDV = "SetTypeDefaultVersion";
|
|
1183
|
-
const _STDVI = "SetTypeDefaultVersionInput";
|
|
1184
|
-
const _STDVO = "SetTypeDefaultVersionOutput";
|
|
1185
|
-
const _STF = "ScanTypeFilter";
|
|
1186
|
-
const _STc = "ScanType";
|
|
1187
|
-
const _SU = "SourceUrl";
|
|
1188
|
-
const _Sc = "Schema";
|
|
1189
|
-
const _Sco = "Scope";
|
|
1190
|
-
const _So = "Source";
|
|
1191
|
-
const _St = "Stacks";
|
|
1192
|
-
const _Sta = "Stack";
|
|
1193
|
-
const _Su = "Summaries";
|
|
1194
|
-
const _T = "Type";
|
|
1195
|
-
const _TA = "TypeArn";
|
|
1196
|
-
const _TAEE = "TokenAlreadyExistsException";
|
|
1197
|
-
const _TB = "TemplateBody";
|
|
1198
|
-
const _TC = "TypeConfigurations";
|
|
1199
|
-
const _TCA = "TypeConfigurationAlias";
|
|
1200
|
-
const _TCAy = "TypeConfigurationArn";
|
|
1201
|
-
const _TCD = "TypeConfigurationDetails";
|
|
1202
|
-
const _TCDL = "TypeConfigurationDetailsList";
|
|
1203
|
-
const _TCI = "TypeConfigurationIdentifier";
|
|
1204
|
-
const _TCIy = "TypeConfigurationIdentifiers";
|
|
1205
|
-
const _TCNFE = "TypeConfigurationNotFoundException";
|
|
1206
|
-
const _TCVI = "TypeConfigurationVersionId";
|
|
1207
|
-
const _TCe = "TemplateConfiguration";
|
|
1208
|
-
const _TCi = "TimeCreated";
|
|
1209
|
-
const _TD = "TargetDetails";
|
|
1210
|
-
const _TDe = "TemplateDescription";
|
|
1211
|
-
const _TF = "TypeFilters";
|
|
1212
|
-
const _TH = "TypeHierarchy";
|
|
1213
|
-
const _TI = "TargetId";
|
|
1214
|
-
const _TIM = "TimeoutInMinutes";
|
|
1215
|
-
const _TK = "TagKey";
|
|
1216
|
-
const _TN = "TypeName";
|
|
1217
|
-
const _TNA = "TypeNameAlias";
|
|
1218
|
-
const _TNFE = "TypeNotFoundException";
|
|
1219
|
-
const _TNP = "TypeNamePrefix";
|
|
1220
|
-
const _TP = "TemplateParameter";
|
|
1221
|
-
const _TPe = "TemplateProgress";
|
|
1222
|
-
const _TPem = "TemplateParameters";
|
|
1223
|
-
const _TR = "TagResources";
|
|
1224
|
-
const _TS = "TemplateStage";
|
|
1225
|
-
const _TSC = "TemplateSummaryConfig";
|
|
1226
|
-
const _TSIC = "TotalStackInstancesCount";
|
|
1227
|
-
const _TSe = "TemplateSummary";
|
|
1228
|
-
const _TSem = "TemplateSummaries";
|
|
1229
|
-
const _TSy = "TypeSummaries";
|
|
1230
|
-
const _TSyp = "TypeSummary";
|
|
1231
|
-
const _TT = "TargetType";
|
|
1232
|
-
const _TTI = "TestTypeInput";
|
|
1233
|
-
const _TTN = "TargetTypeName";
|
|
1234
|
-
const _TTO = "TestTypeOutput";
|
|
1235
|
-
const _TTS = "TypeTestsStatus";
|
|
1236
|
-
const _TTSD = "TypeTestsStatusDescription";
|
|
1237
|
-
const _TTe = "TestType";
|
|
1238
|
-
const _TURL = "TemplateURL";
|
|
1239
|
-
const _TURTAW = "TreatUnrecognizedResourceTypesAsWarnings";
|
|
1240
|
-
const _TV = "TagValue";
|
|
1241
|
-
const _TVA = "TypeVersionArn";
|
|
1242
|
-
const _TVI = "TypeVersionId";
|
|
1243
|
-
const _TVS = "TypeVersionSummaries";
|
|
1244
|
-
const _TVSy = "TypeVersionSummary";
|
|
1245
|
-
const _TW = "TotalWarnings";
|
|
1246
|
-
const _Ta = "Tags";
|
|
1247
|
-
const _Tag = "Tag";
|
|
1248
|
-
const _Tar = "Target";
|
|
1249
|
-
const _Ti = "Timestamp";
|
|
1250
|
-
const _Ty = "Types";
|
|
1251
|
-
const _U = "Url";
|
|
1252
|
-
const _UGT = "UpdateGeneratedTemplate";
|
|
1253
|
-
const _UGTI = "UpdateGeneratedTemplateInput";
|
|
1254
|
-
const _UGTO = "UpdateGeneratedTemplateOutput";
|
|
1255
|
-
const _UI = "UniqueId";
|
|
1256
|
-
const _UPT = "UsePreviousTemplate";
|
|
1257
|
-
const _UPV = "UsePreviousValue";
|
|
1258
|
-
const _UR = "UntagResources";
|
|
1259
|
-
const _URP = "UpdateReplacePolicy";
|
|
1260
|
-
const _URT = "UnrecognizedResourceTypes";
|
|
1261
|
-
const _US = "UpdateStack";
|
|
1262
|
-
const _USI = "UpdateStackInput";
|
|
1263
|
-
const _USII = "UpdateStackInstancesInput";
|
|
1264
|
-
const _USIO = "UpdateStackInstancesOutput";
|
|
1265
|
-
const _USIp = "UpdateStackInstances";
|
|
1266
|
-
const _USO = "UpdateStackOutput";
|
|
1267
|
-
const _USS = "UpdateStackSet";
|
|
1268
|
-
const _USSI = "UpdateStackSetInput";
|
|
1269
|
-
const _USSO = "UpdateStackSetOutput";
|
|
1270
|
-
const _UTC = "UnprocessedTypeConfigurations";
|
|
1271
|
-
const _UTP = "UpdateTerminationProtection";
|
|
1272
|
-
const _UTPI = "UpdateTerminationProtectionInput";
|
|
1273
|
-
const _UTPO = "UpdateTerminationProtectionOutput";
|
|
1274
|
-
const _V = "Value";
|
|
1275
|
-
const _VB = "VersionBump";
|
|
1276
|
-
const _VFM = "ValidationFailureMode";
|
|
1277
|
-
const _VI = "VersionId";
|
|
1278
|
-
const _VN = "ValidationName";
|
|
1279
|
-
const _VP = "ValidationPath";
|
|
1280
|
-
const _VS = "ValidationStatus";
|
|
1281
|
-
const _VSR = "ValidationStatusReason";
|
|
1282
|
-
const _VT = "ValidateTemplate";
|
|
1283
|
-
const _VTI = "ValidateTemplateInput";
|
|
1284
|
-
const _VTO = "ValidateTemplateOutput";
|
|
1285
|
-
const _Va = "Values";
|
|
1286
|
-
const _Ve = "Version";
|
|
1287
|
-
const _Vi = "Visibility";
|
|
1288
|
-
const _W = "Warnings";
|
|
1289
|
-
const _WD = "WarningDetail";
|
|
1290
|
-
const _WDa = "WarningDetails";
|
|
1291
|
-
const _WP = "WarningProperty";
|
|
1292
|
-
const _WPa = "WarningProperties";
|
|
1293
|
-
const _aQE = "awsQueryError";
|
|
1294
|
-
const _c = "client";
|
|
1295
|
-
const _e = "error";
|
|
1296
|
-
const _hE = "httpError";
|
|
1297
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cloudformation";
|
|
1298
|
-
const n0 = "com.amazonaws.cloudformation";
|
|
1299
|
-
var AccountGateResult$ = [3, n0, _AGR,
|
|
1300
|
-
0,
|
|
1301
|
-
[_S, _SR],
|
|
1302
|
-
[0, 0]
|
|
1303
|
-
];
|
|
1304
|
-
var AccountLimit$ = [3, n0, _AL,
|
|
1305
|
-
0,
|
|
1306
|
-
[_N, _V],
|
|
1307
|
-
[0, 1]
|
|
1308
|
-
];
|
|
1309
|
-
var ActivateOrganizationsAccessInput$ = [3, n0, _AOAI,
|
|
1310
|
-
0,
|
|
1311
|
-
[],
|
|
1312
|
-
[]
|
|
1313
|
-
];
|
|
1314
|
-
var ActivateOrganizationsAccessOutput$ = [3, n0, _AOAO,
|
|
1315
|
-
0,
|
|
1316
|
-
[],
|
|
1317
|
-
[]
|
|
1318
|
-
];
|
|
1319
|
-
var ActivateTypeInput$ = [3, n0, _ATI,
|
|
1320
|
-
0,
|
|
1321
|
-
[_T, _PTA, _PI, _TN, _TNA, _AU, _LC, _ERA, _VB, _MV],
|
|
1322
|
-
[0, 0, 0, 0, 0, 2, () => LoggingConfig$, 0, 0, 1]
|
|
1323
|
-
];
|
|
1324
|
-
var ActivateTypeOutput$ = [3, n0, _ATO,
|
|
1325
|
-
0,
|
|
1326
|
-
[_A],
|
|
1327
|
-
[0]
|
|
1328
|
-
];
|
|
1329
|
-
var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
1330
|
-
{ [_aQE]: [`AlreadyExistsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1331
|
-
[_M],
|
|
1332
|
-
[0]
|
|
1333
|
-
];
|
|
1334
|
-
schema.TypeRegistry.for(n0).registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
1335
|
-
var Annotation$ = [3, n0, _An,
|
|
1336
|
-
0,
|
|
1337
|
-
[_AN, _S, _SM, _RM, _RL, _SL],
|
|
1338
|
-
[0, 0, 0, 0, 0, 0]
|
|
1339
|
-
];
|
|
1340
|
-
var AutoDeployment$ = [3, n0, _AD,
|
|
1341
|
-
0,
|
|
1342
|
-
[_E, _RSOAR, _DO],
|
|
1343
|
-
[2, 2, 64 | 0]
|
|
1344
|
-
];
|
|
1345
|
-
var BatchDescribeTypeConfigurationsError$ = [3, n0, _BDTCE,
|
|
1346
|
-
0,
|
|
1347
|
-
[_EC, _EM, _TCI],
|
|
1348
|
-
[0, 0, () => TypeConfigurationIdentifier$]
|
|
1349
|
-
];
|
|
1350
|
-
var BatchDescribeTypeConfigurationsInput$ = [3, n0, _BDTCI,
|
|
1351
|
-
0,
|
|
1352
|
-
[_TCIy],
|
|
1353
|
-
[() => TypeConfigurationIdentifiers], 1
|
|
1354
|
-
];
|
|
1355
|
-
var BatchDescribeTypeConfigurationsOutput$ = [3, n0, _BDTCO,
|
|
1356
|
-
0,
|
|
1357
|
-
[_Er, _UTC, _TC],
|
|
1358
|
-
[() => BatchDescribeTypeConfigurationsErrors, () => UnprocessedTypeConfigurations, () => TypeConfigurationDetailsList]
|
|
1359
|
-
];
|
|
1360
|
-
var CancelUpdateStackInput$ = [3, n0, _CUSI,
|
|
1361
|
-
0,
|
|
1362
|
-
[_SN, _CRT],
|
|
1363
|
-
[0, 0], 1
|
|
1364
|
-
];
|
|
1365
|
-
var CFNRegistryException$ = [-3, n0, _CFNRE,
|
|
1366
|
-
{ [_aQE]: [`CFNRegistryException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1367
|
-
[_M],
|
|
1368
|
-
[0]
|
|
1369
|
-
];
|
|
1370
|
-
schema.TypeRegistry.for(n0).registerError(CFNRegistryException$, CFNRegistryException);
|
|
1371
|
-
var Change$ = [3, n0, _C,
|
|
1372
|
-
0,
|
|
1373
|
-
[_T, _HIC, _RC],
|
|
1374
|
-
[0, 1, () => ResourceChange$]
|
|
1375
|
-
];
|
|
1376
|
-
var ChangeSetHook$ = [3, n0, _CSH,
|
|
1377
|
-
0,
|
|
1378
|
-
[_IP, _FM, _TN, _TVI, _TCVI, _TD],
|
|
1379
|
-
[0, 0, 0, 0, 0, () => ChangeSetHookTargetDetails$]
|
|
1380
|
-
];
|
|
1381
|
-
var ChangeSetHookResourceTargetDetails$ = [3, n0, _CSHRTD,
|
|
1382
|
-
0,
|
|
1383
|
-
[_LRI, _RT, _RA],
|
|
1384
|
-
[0, 0, 0]
|
|
1385
|
-
];
|
|
1386
|
-
var ChangeSetHookTargetDetails$ = [3, n0, _CSHTD,
|
|
1387
|
-
0,
|
|
1388
|
-
[_TT, _RTD],
|
|
1389
|
-
[0, () => ChangeSetHookResourceTargetDetails$]
|
|
1390
|
-
];
|
|
1391
|
-
var ChangeSetNotFoundException$ = [-3, n0, _CSNFE,
|
|
1392
|
-
{ [_aQE]: [`ChangeSetNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1393
|
-
[_M],
|
|
1394
|
-
[0]
|
|
1395
|
-
];
|
|
1396
|
-
schema.TypeRegistry.for(n0).registerError(ChangeSetNotFoundException$, ChangeSetNotFoundException);
|
|
1397
|
-
var ChangeSetSummary$ = [3, n0, _CSS,
|
|
1398
|
-
0,
|
|
1399
|
-
[_SI, _SN, _CSI, _CSN, _ES, _S, _SR, _CT, _D, _INS, _PCSI, _RCSI, _IER],
|
|
1400
|
-
[0, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 2]
|
|
1401
|
-
];
|
|
1402
|
-
var ConcurrentResourcesLimitExceededException$ = [-3, n0, _CRLEE,
|
|
1403
|
-
{ [_aQE]: [`ConcurrentResourcesLimitExceeded`, 429], [_e]: _c, [_hE]: 429 },
|
|
1404
|
-
[_M],
|
|
1405
|
-
[0]
|
|
1406
|
-
];
|
|
1407
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentResourcesLimitExceededException$, ConcurrentResourcesLimitExceededException);
|
|
1408
|
-
var ContinueUpdateRollbackInput$ = [3, n0, _CURI,
|
|
1409
|
-
0,
|
|
1410
|
-
[_SN, _RARN, _RTS, _CRT],
|
|
1411
|
-
[0, 0, 64 | 0, 0], 1
|
|
1412
|
-
];
|
|
1413
|
-
var ContinueUpdateRollbackOutput$ = [3, n0, _CURO,
|
|
1414
|
-
0,
|
|
1415
|
-
[],
|
|
1416
|
-
[]
|
|
1417
|
-
];
|
|
1418
|
-
var CreateChangeSetInput$ = [3, n0, _CCSI,
|
|
1419
|
-
0,
|
|
1420
|
-
[_SN, _CSN, _TB, _TURL, _UPT, _P, _Ca, _RTe, _RARN, _RCo, _NARN, _Ta, _CTl, _D, _CST, _RTI, _INS, _OSF, _IER, _DM],
|
|
1421
|
-
[0, 0, 0, 0, 2, () => _Parameters, 64 | 0, 64 | 0, 0, () => RollbackConfiguration$, 64 | 0, () => Tags, 0, 0, 0, () => ResourcesToImport, 2, 0, 2, 0], 2
|
|
1422
|
-
];
|
|
1423
|
-
var CreateChangeSetOutput$ = [3, n0, _CCSO,
|
|
1424
|
-
0,
|
|
1425
|
-
[_I, _SI],
|
|
1426
|
-
[0, 0]
|
|
1427
|
-
];
|
|
1428
|
-
var CreatedButModifiedException$ = [-3, n0, _CBME,
|
|
1429
|
-
{ [_aQE]: [`CreatedButModifiedException`, 409], [_e]: _c, [_hE]: 409 },
|
|
1430
|
-
[_M],
|
|
1431
|
-
[0]
|
|
1432
|
-
];
|
|
1433
|
-
schema.TypeRegistry.for(n0).registerError(CreatedButModifiedException$, CreatedButModifiedException);
|
|
1434
|
-
var CreateGeneratedTemplateInput$ = [3, n0, _CGTI,
|
|
1435
|
-
0,
|
|
1436
|
-
[_GTN, _R, _SN, _TCe],
|
|
1437
|
-
[0, () => ResourceDefinitions, 0, () => TemplateConfiguration$], 1
|
|
1438
|
-
];
|
|
1439
|
-
var CreateGeneratedTemplateOutput$ = [3, n0, _CGTO,
|
|
1440
|
-
0,
|
|
1441
|
-
[_GTI],
|
|
1442
|
-
[0]
|
|
1443
|
-
];
|
|
1444
|
-
var CreateStackInput$ = [3, n0, _CSIr,
|
|
1445
|
-
0,
|
|
1446
|
-
[_SN, _TB, _TURL, _P, _DR, _RCo, _TIM, _NARN, _Ca, _RTe, _RARN, _OF, _SPB, _SPURL, _Ta, _CRT, _ETP, _REOC],
|
|
1447
|
-
[0, 0, 0, () => _Parameters, 2, () => RollbackConfiguration$, 1, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 0, () => Tags, 0, 2, 2], 1
|
|
1448
|
-
];
|
|
1449
|
-
var CreateStackInstancesInput$ = [3, n0, _CSII,
|
|
1450
|
-
0,
|
|
1451
|
-
[_SSN, _Re, _Ac, _DT, _PO, _OP, _OI, _CA],
|
|
1452
|
-
[0, 64 | 0, 64 | 0, () => DeploymentTargets$, () => _Parameters, () => StackSetOperationPreferences$, [0, 4], 0], 2
|
|
1453
|
-
];
|
|
1454
|
-
var CreateStackInstancesOutput$ = [3, n0, _CSIO,
|
|
1455
|
-
0,
|
|
1456
|
-
[_OI],
|
|
1457
|
-
[0]
|
|
1458
|
-
];
|
|
1459
|
-
var CreateStackOutput$ = [3, n0, _CSO,
|
|
1460
|
-
0,
|
|
1461
|
-
[_SI, _OI],
|
|
1462
|
-
[0, 0]
|
|
1463
|
-
];
|
|
1464
|
-
var CreateStackRefactorInput$ = [3, n0, _CSRI,
|
|
1465
|
-
0,
|
|
1466
|
-
[_SD, _D, _ESC, _RMe],
|
|
1467
|
-
[() => StackDefinitions, 0, 2, () => ResourceMappings], 1
|
|
1468
|
-
];
|
|
1469
|
-
var CreateStackRefactorOutput$ = [3, n0, _CSRO,
|
|
1470
|
-
0,
|
|
1471
|
-
[_SRI],
|
|
1472
|
-
[0], 1
|
|
1473
|
-
];
|
|
1474
|
-
var CreateStackSetInput$ = [3, n0, _CSSI,
|
|
1475
|
-
0,
|
|
1476
|
-
[_SSN, _D, _TB, _TURL, _SI, _P, _Ca, _Ta, _ARARN, _ERN, _PM, _AD, _CA, _CRT, _ME],
|
|
1477
|
-
[0, 0, 0, 0, 0, () => _Parameters, 64 | 0, () => Tags, 0, 0, 0, () => AutoDeployment$, 0, [0, 4], () => ManagedExecution$], 1
|
|
1478
|
-
];
|
|
1479
|
-
var CreateStackSetOutput$ = [3, n0, _CSSO,
|
|
1480
|
-
0,
|
|
1481
|
-
[_SSI],
|
|
1482
|
-
[0]
|
|
1483
|
-
];
|
|
1484
|
-
var DeactivateOrganizationsAccessInput$ = [3, n0, _DOAI,
|
|
1485
|
-
0,
|
|
1486
|
-
[],
|
|
1487
|
-
[]
|
|
1488
|
-
];
|
|
1489
|
-
var DeactivateOrganizationsAccessOutput$ = [3, n0, _DOAO,
|
|
1490
|
-
0,
|
|
1491
|
-
[],
|
|
1492
|
-
[]
|
|
1493
|
-
];
|
|
1494
|
-
var DeactivateTypeInput$ = [3, n0, _DTI,
|
|
1495
|
-
0,
|
|
1496
|
-
[_TN, _T, _A],
|
|
1497
|
-
[0, 0, 0]
|
|
1498
|
-
];
|
|
1499
|
-
var DeactivateTypeOutput$ = [3, n0, _DTO,
|
|
1500
|
-
0,
|
|
1501
|
-
[],
|
|
1502
|
-
[]
|
|
1503
|
-
];
|
|
1504
|
-
var DeleteChangeSetInput$ = [3, n0, _DCSI,
|
|
1505
|
-
0,
|
|
1506
|
-
[_CSN, _SN],
|
|
1507
|
-
[0, 0], 1
|
|
1508
|
-
];
|
|
1509
|
-
var DeleteChangeSetOutput$ = [3, n0, _DCSO,
|
|
1510
|
-
0,
|
|
1511
|
-
[],
|
|
1512
|
-
[]
|
|
1513
|
-
];
|
|
1514
|
-
var DeleteGeneratedTemplateInput$ = [3, n0, _DGTI,
|
|
1515
|
-
0,
|
|
1516
|
-
[_GTN],
|
|
1517
|
-
[0], 1
|
|
1518
|
-
];
|
|
1519
|
-
var DeleteStackInput$ = [3, n0, _DSI,
|
|
1520
|
-
0,
|
|
1521
|
-
[_SN, _RR, _RARN, _CRT, _DMe],
|
|
1522
|
-
[0, 64 | 0, 0, 0, 0], 1
|
|
1523
|
-
];
|
|
1524
|
-
var DeleteStackInstancesInput$ = [3, n0, _DSII,
|
|
1525
|
-
0,
|
|
1526
|
-
[_SSN, _Re, _RS, _Ac, _DT, _OP, _OI, _CA],
|
|
1527
|
-
[0, 64 | 0, 2, 64 | 0, () => DeploymentTargets$, () => StackSetOperationPreferences$, [0, 4], 0], 3
|
|
1528
|
-
];
|
|
1529
|
-
var DeleteStackInstancesOutput$ = [3, n0, _DSIO,
|
|
1530
|
-
0,
|
|
1531
|
-
[_OI],
|
|
1532
|
-
[0]
|
|
1533
|
-
];
|
|
1534
|
-
var DeleteStackSetInput$ = [3, n0, _DSSI,
|
|
1535
|
-
0,
|
|
1536
|
-
[_SSN, _CA],
|
|
1537
|
-
[0, 0], 1
|
|
1538
|
-
];
|
|
1539
|
-
var DeleteStackSetOutput$ = [3, n0, _DSSO,
|
|
1540
|
-
0,
|
|
1541
|
-
[],
|
|
1542
|
-
[]
|
|
1543
|
-
];
|
|
1544
|
-
var DeploymentTargets$ = [3, n0, _DT,
|
|
1545
|
-
0,
|
|
1546
|
-
[_Ac, _AUc, _OUI, _AFT],
|
|
1547
|
-
[64 | 0, 0, 64 | 0, 0]
|
|
1548
|
-
];
|
|
1549
|
-
var DeregisterTypeInput$ = [3, n0, _DTIe,
|
|
1550
|
-
0,
|
|
1551
|
-
[_A, _T, _TN, _VI],
|
|
1552
|
-
[0, 0, 0, 0]
|
|
1553
|
-
];
|
|
1554
|
-
var DeregisterTypeOutput$ = [3, n0, _DTOe,
|
|
1555
|
-
0,
|
|
1556
|
-
[],
|
|
1557
|
-
[]
|
|
1558
|
-
];
|
|
1559
|
-
var DescribeAccountLimitsInput$ = [3, n0, _DALI,
|
|
1560
|
-
0,
|
|
1561
|
-
[_NT],
|
|
1562
|
-
[0]
|
|
1563
|
-
];
|
|
1564
|
-
var DescribeAccountLimitsOutput$ = [3, n0, _DALO,
|
|
1565
|
-
0,
|
|
1566
|
-
[_ALc, _NT],
|
|
1567
|
-
[() => AccountLimitList, 0]
|
|
1568
|
-
];
|
|
1569
|
-
var DescribeChangeSetHooksInput$ = [3, n0, _DCSHI,
|
|
1570
|
-
0,
|
|
1571
|
-
[_CSN, _SN, _NT, _LRI],
|
|
1572
|
-
[0, 0, 0, 0], 1
|
|
1573
|
-
];
|
|
1574
|
-
var DescribeChangeSetHooksOutput$ = [3, n0, _DCSHO,
|
|
1575
|
-
0,
|
|
1576
|
-
[_CSI, _CSN, _H, _S, _NT, _SI, _SN],
|
|
1577
|
-
[0, 0, () => ChangeSetHooks, 0, 0, 0, 0]
|
|
1578
|
-
];
|
|
1579
|
-
var DescribeChangeSetInput$ = [3, n0, _DCSIe,
|
|
1580
|
-
0,
|
|
1581
|
-
[_CSN, _SN, _NT, _IPV],
|
|
1582
|
-
[0, 0, 0, 2], 1
|
|
1583
|
-
];
|
|
1584
|
-
var DescribeChangeSetOutput$ = [3, n0, _DCSOe,
|
|
1585
|
-
0,
|
|
1586
|
-
[_CSN, _CSI, _SI, _SN, _D, _P, _CT, _ES, _S, _SR, _SDS, _NARN, _RCo, _Ca, _Ta, _Ch, _NT, _INS, _PCSI, _RCSI, _OSF, _IER, _DM],
|
|
1587
|
-
[0, 0, 0, 0, 0, () => _Parameters, 4, 0, 0, 0, 0, 64 | 0, () => RollbackConfiguration$, 64 | 0, () => Tags, () => Changes, 0, 2, 0, 0, 0, 2, 0]
|
|
1588
|
-
];
|
|
1589
|
-
var DescribeEventsInput$ = [3, n0, _DEI,
|
|
1590
|
-
0,
|
|
1591
|
-
[_SN, _CSN, _OI, _F, _NT],
|
|
1592
|
-
[0, 0, 0, () => EventFilter$, 0]
|
|
1593
|
-
];
|
|
1594
|
-
var DescribeEventsOutput$ = [3, n0, _DEO,
|
|
1595
|
-
0,
|
|
1596
|
-
[_OE, _NT],
|
|
1597
|
-
[() => OperationEvents, 0]
|
|
1598
|
-
];
|
|
1599
|
-
var DescribeGeneratedTemplateInput$ = [3, n0, _DGTIe,
|
|
1600
|
-
0,
|
|
1601
|
-
[_GTN],
|
|
1602
|
-
[0], 1
|
|
1603
|
-
];
|
|
1604
|
-
var DescribeGeneratedTemplateOutput$ = [3, n0, _DGTO,
|
|
1605
|
-
0,
|
|
1606
|
-
[_GTI, _GTN, _R, _S, _SR, _CT, _LUT, _Pr, _SI, _TCe, _TW],
|
|
1607
|
-
[0, 0, () => ResourceDetails, 0, 0, 4, 4, () => TemplateProgress$, 0, () => TemplateConfiguration$, 1]
|
|
1608
|
-
];
|
|
1609
|
-
var DescribeOrganizationsAccessInput$ = [3, n0, _DOAIe,
|
|
1610
|
-
0,
|
|
1611
|
-
[_CA],
|
|
1612
|
-
[0]
|
|
1613
|
-
];
|
|
1614
|
-
var DescribeOrganizationsAccessOutput$ = [3, n0, _DOAOe,
|
|
1615
|
-
0,
|
|
1616
|
-
[_S],
|
|
1617
|
-
[0]
|
|
1618
|
-
];
|
|
1619
|
-
var DescribePublisherInput$ = [3, n0, _DPI,
|
|
1620
|
-
0,
|
|
1621
|
-
[_PI],
|
|
1622
|
-
[0]
|
|
1623
|
-
];
|
|
1624
|
-
var DescribePublisherOutput$ = [3, n0, _DPO,
|
|
1625
|
-
0,
|
|
1626
|
-
[_PI, _PS, _IPd, _PP],
|
|
1627
|
-
[0, 0, 0, 0]
|
|
1628
|
-
];
|
|
1629
|
-
var DescribeResourceScanInput$ = [3, n0, _DRSI,
|
|
1630
|
-
0,
|
|
1631
|
-
[_RSI],
|
|
1632
|
-
[0], 1
|
|
1633
|
-
];
|
|
1634
|
-
var DescribeResourceScanOutput$ = [3, n0, _DRSO,
|
|
1635
|
-
0,
|
|
1636
|
-
[_RSI, _S, _SR, _ST, _ET, _PC, _RTe, _RSe, _RRe, _SF],
|
|
1637
|
-
[0, 0, 0, 4, 4, 1, 64 | 0, 1, 1, () => ScanFilters]
|
|
1638
|
-
];
|
|
1639
|
-
var DescribeStackDriftDetectionStatusInput$ = [3, n0, _DSDDSI,
|
|
1640
|
-
0,
|
|
1641
|
-
[_SDDI],
|
|
1642
|
-
[0], 1
|
|
1643
|
-
];
|
|
1644
|
-
var DescribeStackDriftDetectionStatusOutput$ = [3, n0, _DSDDSO,
|
|
1645
|
-
0,
|
|
1646
|
-
[_SI, _SDDI, _DS, _Ti, _SDS, _DSR, _DSRC],
|
|
1647
|
-
[0, 0, 0, 4, 0, 0, 1], 4
|
|
1648
|
-
];
|
|
1649
|
-
var DescribeStackEventsInput$ = [3, n0, _DSEI,
|
|
1650
|
-
0,
|
|
1651
|
-
[_SN, _NT],
|
|
1652
|
-
[0, 0], 1
|
|
1653
|
-
];
|
|
1654
|
-
var DescribeStackEventsOutput$ = [3, n0, _DSEO,
|
|
1655
|
-
0,
|
|
1656
|
-
[_SE, _NT],
|
|
1657
|
-
[() => StackEvents, 0]
|
|
1658
|
-
];
|
|
1659
|
-
var DescribeStackInstanceInput$ = [3, n0, _DSIIe,
|
|
1660
|
-
0,
|
|
1661
|
-
[_SSN, _SIA, _SIR, _CA],
|
|
1662
|
-
[0, 0, 0, 0], 3
|
|
1663
|
-
];
|
|
1664
|
-
var DescribeStackInstanceOutput$ = [3, n0, _DSIOe,
|
|
1665
|
-
0,
|
|
1666
|
-
[_SIt],
|
|
1667
|
-
[() => StackInstance$]
|
|
1668
|
-
];
|
|
1669
|
-
var DescribeStackRefactorInput$ = [3, n0, _DSRI,
|
|
1670
|
-
0,
|
|
1671
|
-
[_SRI],
|
|
1672
|
-
[0], 1
|
|
1673
|
-
];
|
|
1674
|
-
var DescribeStackRefactorOutput$ = [3, n0, _DSRO,
|
|
1675
|
-
0,
|
|
1676
|
-
[_D, _SRI, _SIta, _ES, _ESR, _S, _SR],
|
|
1677
|
-
[0, 0, 64 | 0, 0, 0, 0, 0]
|
|
1678
|
-
];
|
|
1679
|
-
var DescribeStackResourceDriftsInput$ = [3, n0, _DSRDI,
|
|
1680
|
-
0,
|
|
1681
|
-
[_SN, _SRDSF, _NT, _MR],
|
|
1682
|
-
[0, 64 | 0, 0, 1], 1
|
|
1683
|
-
];
|
|
1684
|
-
var DescribeStackResourceDriftsOutput$ = [3, n0, _DSRDO,
|
|
1685
|
-
0,
|
|
1686
|
-
[_SRD, _NT],
|
|
1687
|
-
[() => StackResourceDrifts, 0], 1
|
|
1688
|
-
];
|
|
1689
|
-
var DescribeStackResourceInput$ = [3, n0, _DSRIe,
|
|
1690
|
-
0,
|
|
1691
|
-
[_SN, _LRI],
|
|
1692
|
-
[0, 0], 2
|
|
1693
|
-
];
|
|
1694
|
-
var DescribeStackResourceOutput$ = [3, n0, _DSROe,
|
|
1695
|
-
0,
|
|
1696
|
-
[_SRDt],
|
|
1697
|
-
[() => StackResourceDetail$]
|
|
1698
|
-
];
|
|
1699
|
-
var DescribeStackResourcesInput$ = [3, n0, _DSRIes,
|
|
1700
|
-
0,
|
|
1701
|
-
[_SN, _LRI, _PRI],
|
|
1702
|
-
[0, 0, 0]
|
|
1703
|
-
];
|
|
1704
|
-
var DescribeStackResourcesOutput$ = [3, n0, _DSROes,
|
|
1705
|
-
0,
|
|
1706
|
-
[_SRt],
|
|
1707
|
-
[() => StackResources]
|
|
1708
|
-
];
|
|
1709
|
-
var DescribeStackSetInput$ = [3, n0, _DSSIe,
|
|
1710
|
-
0,
|
|
1711
|
-
[_SSN, _CA],
|
|
1712
|
-
[0, 0], 1
|
|
1713
|
-
];
|
|
1714
|
-
var DescribeStackSetOperationInput$ = [3, n0, _DSSOI,
|
|
1715
|
-
0,
|
|
1716
|
-
[_SSN, _OI, _CA],
|
|
1717
|
-
[0, 0, 0], 2
|
|
1718
|
-
];
|
|
1719
|
-
var DescribeStackSetOperationOutput$ = [3, n0, _DSSOO,
|
|
1720
|
-
0,
|
|
1721
|
-
[_SSO],
|
|
1722
|
-
[() => StackSetOperation$]
|
|
1723
|
-
];
|
|
1724
|
-
var DescribeStackSetOutput$ = [3, n0, _DSSOe,
|
|
1725
|
-
0,
|
|
1726
|
-
[_SS],
|
|
1727
|
-
[() => StackSet$]
|
|
1728
|
-
];
|
|
1729
|
-
var DescribeStacksInput$ = [3, n0, _DSIe,
|
|
1730
|
-
0,
|
|
1731
|
-
[_SN, _NT],
|
|
1732
|
-
[0, 0]
|
|
1733
|
-
];
|
|
1734
|
-
var DescribeStacksOutput$ = [3, n0, _DSO,
|
|
1735
|
-
0,
|
|
1736
|
-
[_St, _NT],
|
|
1737
|
-
[() => Stacks, 0]
|
|
1738
|
-
];
|
|
1739
|
-
var DescribeTypeInput$ = [3, n0, _DTIes,
|
|
1740
|
-
0,
|
|
1741
|
-
[_T, _TN, _A, _VI, _PI, _PVN],
|
|
1742
|
-
[0, 0, 0, 0, 0, 0]
|
|
1743
|
-
];
|
|
1744
|
-
var DescribeTypeOutput$ = [3, n0, _DTOes,
|
|
1745
|
-
0,
|
|
1746
|
-
[_A, _T, _TN, _DVI, _IDV, _TTS, _TTSD, _D, _Sc, _PT, _DSe, _LC, _RAT, _ERA, _Vi, _SU, _DU, _LU, _TCi, _CS, _PI, _OTN, _OTA, _PVN, _LPV, _IA, _AU],
|
|
1747
|
-
[0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, () => LoggingConfig$, () => RequiredActivatedTypes, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 2, 2]
|
|
1748
|
-
];
|
|
1749
|
-
var DescribeTypeRegistrationInput$ = [3, n0, _DTRI,
|
|
1750
|
-
0,
|
|
1751
|
-
[_RTeg],
|
|
1752
|
-
[0], 1
|
|
1753
|
-
];
|
|
1754
|
-
var DescribeTypeRegistrationOutput$ = [3, n0, _DTRO,
|
|
1755
|
-
0,
|
|
1756
|
-
[_PSr, _D, _TA, _TVA],
|
|
1757
|
-
[0, 0, 0, 0]
|
|
1758
|
-
];
|
|
1759
|
-
var DetectStackDriftInput$ = [3, n0, _DSDI,
|
|
1760
|
-
0,
|
|
1761
|
-
[_SN, _LRIo],
|
|
1762
|
-
[0, 64 | 0], 1
|
|
1763
|
-
];
|
|
1764
|
-
var DetectStackDriftOutput$ = [3, n0, _DSDO,
|
|
1765
|
-
0,
|
|
1766
|
-
[_SDDI],
|
|
1767
|
-
[0], 1
|
|
1768
|
-
];
|
|
1769
|
-
var DetectStackResourceDriftInput$ = [3, n0, _DSRDIe,
|
|
1770
|
-
0,
|
|
1771
|
-
[_SN, _LRI],
|
|
1772
|
-
[0, 0], 2
|
|
1773
|
-
];
|
|
1774
|
-
var DetectStackResourceDriftOutput$ = [3, n0, _DSRDOe,
|
|
1775
|
-
0,
|
|
1776
|
-
[_SRDta],
|
|
1777
|
-
[() => StackResourceDrift$], 1
|
|
1778
|
-
];
|
|
1779
|
-
var DetectStackSetDriftInput$ = [3, n0, _DSSDI,
|
|
1780
|
-
0,
|
|
1781
|
-
[_SSN, _OP, _OI, _CA],
|
|
1782
|
-
[0, () => StackSetOperationPreferences$, [0, 4], 0], 1
|
|
1783
|
-
];
|
|
1784
|
-
var DetectStackSetDriftOutput$ = [3, n0, _DSSDO,
|
|
1785
|
-
0,
|
|
1786
|
-
[_OI],
|
|
1787
|
-
[0]
|
|
1788
|
-
];
|
|
1789
|
-
var EstimateTemplateCostInput$ = [3, n0, _ETCI,
|
|
1790
|
-
0,
|
|
1791
|
-
[_TB, _TURL, _P],
|
|
1792
|
-
[0, 0, () => _Parameters]
|
|
1793
|
-
];
|
|
1794
|
-
var EstimateTemplateCostOutput$ = [3, n0, _ETCO,
|
|
1795
|
-
0,
|
|
1796
|
-
[_U],
|
|
1797
|
-
[0]
|
|
1798
|
-
];
|
|
1799
|
-
var EventFilter$ = [3, n0, _EF,
|
|
1800
|
-
0,
|
|
1801
|
-
[_FE],
|
|
1802
|
-
[2]
|
|
1803
|
-
];
|
|
1804
|
-
var ExecuteChangeSetInput$ = [3, n0, _ECSI,
|
|
1805
|
-
0,
|
|
1806
|
-
[_CSN, _SN, _CRT, _DR, _REOC],
|
|
1807
|
-
[0, 0, 0, 2, 2], 1
|
|
1808
|
-
];
|
|
1809
|
-
var ExecuteChangeSetOutput$ = [3, n0, _ECSO,
|
|
1810
|
-
0,
|
|
1811
|
-
[],
|
|
1812
|
-
[]
|
|
1813
|
-
];
|
|
1814
|
-
var ExecuteStackRefactorInput$ = [3, n0, _ESRI,
|
|
1815
|
-
0,
|
|
1816
|
-
[_SRI],
|
|
1817
|
-
[0], 1
|
|
1818
|
-
];
|
|
1819
|
-
var Export$ = [3, n0, _Ex,
|
|
1820
|
-
0,
|
|
1821
|
-
[_ESI, _N, _V],
|
|
1822
|
-
[0, 0, 0]
|
|
1823
|
-
];
|
|
1824
|
-
var GeneratedTemplateNotFoundException$ = [-3, n0, _GTNFE,
|
|
1825
|
-
{ [_aQE]: [`GeneratedTemplateNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1826
|
-
[_M],
|
|
1827
|
-
[0]
|
|
1828
|
-
];
|
|
1829
|
-
schema.TypeRegistry.for(n0).registerError(GeneratedTemplateNotFoundException$, GeneratedTemplateNotFoundException);
|
|
1830
|
-
var GetGeneratedTemplateInput$ = [3, n0, _GGTI,
|
|
1831
|
-
0,
|
|
1832
|
-
[_GTN, _Fo],
|
|
1833
|
-
[0, 0], 1
|
|
1834
|
-
];
|
|
1835
|
-
var GetGeneratedTemplateOutput$ = [3, n0, _GGTO,
|
|
1836
|
-
0,
|
|
1837
|
-
[_S, _TB],
|
|
1838
|
-
[0, 0]
|
|
1839
|
-
];
|
|
1840
|
-
var GetHookResultInput$ = [3, n0, _GHRI,
|
|
1841
|
-
0,
|
|
1842
|
-
[_HRI],
|
|
1843
|
-
[0]
|
|
1844
|
-
];
|
|
1845
|
-
var GetHookResultOutput$ = [3, n0, _GHRO,
|
|
1846
|
-
0,
|
|
1847
|
-
[_HRI, _IP, _FM, _TN, _OTN, _TVI, _TCVI, _TA, _S, _HSR, _IAn, _Tar, _Ann],
|
|
1848
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, () => HookTarget$, () => AnnotationList]
|
|
1849
|
-
];
|
|
1850
|
-
var GetStackPolicyInput$ = [3, n0, _GSPI,
|
|
1851
|
-
0,
|
|
1852
|
-
[_SN],
|
|
1853
|
-
[0], 1
|
|
1854
|
-
];
|
|
1855
|
-
var GetStackPolicyOutput$ = [3, n0, _GSPO,
|
|
1856
|
-
0,
|
|
1857
|
-
[_SPB],
|
|
1858
|
-
[0]
|
|
1859
|
-
];
|
|
1860
|
-
var GetTemplateInput$ = [3, n0, _GTIe,
|
|
1861
|
-
0,
|
|
1862
|
-
[_SN, _CSN, _TS],
|
|
1863
|
-
[0, 0, 0]
|
|
1864
|
-
];
|
|
1865
|
-
var GetTemplateOutput$ = [3, n0, _GTO,
|
|
1866
|
-
0,
|
|
1867
|
-
[_TB, _SA],
|
|
1868
|
-
[0, 64 | 0]
|
|
1869
|
-
];
|
|
1870
|
-
var GetTemplateSummaryInput$ = [3, n0, _GTSI,
|
|
1871
|
-
0,
|
|
1872
|
-
[_TB, _TURL, _SN, _SSN, _CA, _TSC],
|
|
1873
|
-
[0, 0, 0, 0, 0, () => TemplateSummaryConfig$]
|
|
1874
|
-
];
|
|
1875
|
-
var GetTemplateSummaryOutput$ = [3, n0, _GTSO,
|
|
1876
|
-
0,
|
|
1877
|
-
[_P, _D, _Ca, _CR, _RTe, _Ve, _Me, _DTe, _RIS, _W],
|
|
1878
|
-
[() => ParameterDeclarations, 0, 64 | 0, 0, 64 | 0, 0, 0, 64 | 0, () => ResourceIdentifierSummaries, () => Warnings$]
|
|
1879
|
-
];
|
|
1880
|
-
var HookResultNotFoundException$ = [-3, n0, _HRNFE,
|
|
1881
|
-
{ [_aQE]: [`HookResultNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1882
|
-
[_M],
|
|
1883
|
-
[0]
|
|
1884
|
-
];
|
|
1885
|
-
schema.TypeRegistry.for(n0).registerError(HookResultNotFoundException$, HookResultNotFoundException);
|
|
1886
|
-
var HookResultSummary$ = [3, n0, _HRS,
|
|
1887
|
-
0,
|
|
1888
|
-
[_HRI, _IP, _FM, _TN, _TVI, _TCVI, _S, _HSR, _IAn, _TT, _TI, _TA, _HET],
|
|
1889
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0]
|
|
1890
|
-
];
|
|
1891
|
-
var HookTarget$ = [3, n0, _HT,
|
|
1892
|
-
0,
|
|
1893
|
-
[_TT, _TTN, _TI, _Act],
|
|
1894
|
-
[0, 0, 0, 0], 4
|
|
1895
|
-
];
|
|
1896
|
-
var ImportStacksToStackSetInput$ = [3, n0, _ISTSSI,
|
|
1897
|
-
0,
|
|
1898
|
-
[_SSN, _SIta, _SIU, _OUI, _OP, _OI, _CA],
|
|
1899
|
-
[0, 64 | 0, 0, 64 | 0, () => StackSetOperationPreferences$, [0, 4], 0], 1
|
|
1900
|
-
];
|
|
1901
|
-
var ImportStacksToStackSetOutput$ = [3, n0, _ISTSSO,
|
|
1902
|
-
0,
|
|
1903
|
-
[_OI],
|
|
1904
|
-
[0]
|
|
1905
|
-
];
|
|
1906
|
-
var InsufficientCapabilitiesException$ = [-3, n0, _ICE,
|
|
1907
|
-
{ [_aQE]: [`InsufficientCapabilitiesException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1908
|
-
[_M],
|
|
1909
|
-
[0]
|
|
1910
|
-
];
|
|
1911
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientCapabilitiesException$, InsufficientCapabilitiesException);
|
|
1912
|
-
var InvalidChangeSetStatusException$ = [-3, n0, _ICSSE,
|
|
1913
|
-
{ [_aQE]: [`InvalidChangeSetStatus`, 400], [_e]: _c, [_hE]: 400 },
|
|
1914
|
-
[_M],
|
|
1915
|
-
[0]
|
|
1916
|
-
];
|
|
1917
|
-
schema.TypeRegistry.for(n0).registerError(InvalidChangeSetStatusException$, InvalidChangeSetStatusException);
|
|
1918
|
-
var InvalidOperationException$ = [-3, n0, _IOE,
|
|
1919
|
-
{ [_aQE]: [`InvalidOperationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1920
|
-
[_M],
|
|
1921
|
-
[0]
|
|
1922
|
-
];
|
|
1923
|
-
schema.TypeRegistry.for(n0).registerError(InvalidOperationException$, InvalidOperationException);
|
|
1924
|
-
var InvalidStateTransitionException$ = [-3, n0, _ISTE,
|
|
1925
|
-
{ [_aQE]: [`InvalidStateTransition`, 400], [_e]: _c, [_hE]: 400 },
|
|
1926
|
-
[_M],
|
|
1927
|
-
[0]
|
|
1928
|
-
];
|
|
1929
|
-
schema.TypeRegistry.for(n0).registerError(InvalidStateTransitionException$, InvalidStateTransitionException);
|
|
1930
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1931
|
-
{ [_aQE]: [`LimitExceededException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1932
|
-
[_M],
|
|
1933
|
-
[0]
|
|
1934
|
-
];
|
|
1935
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1936
|
-
var ListChangeSetsInput$ = [3, n0, _LCSI,
|
|
1937
|
-
0,
|
|
1938
|
-
[_SN, _NT],
|
|
1939
|
-
[0, 0], 1
|
|
1940
|
-
];
|
|
1941
|
-
var ListChangeSetsOutput$ = [3, n0, _LCSO,
|
|
1942
|
-
0,
|
|
1943
|
-
[_Su, _NT],
|
|
1944
|
-
[() => ChangeSetSummaries, 0]
|
|
1945
|
-
];
|
|
1946
|
-
var ListExportsInput$ = [3, n0, _LEI,
|
|
1947
|
-
0,
|
|
1948
|
-
[_NT],
|
|
1949
|
-
[0]
|
|
1950
|
-
];
|
|
1951
|
-
var ListExportsOutput$ = [3, n0, _LEO,
|
|
1952
|
-
0,
|
|
1953
|
-
[_Exp, _NT],
|
|
1954
|
-
[() => Exports, 0]
|
|
1955
|
-
];
|
|
1956
|
-
var ListGeneratedTemplatesInput$ = [3, n0, _LGTI,
|
|
1957
|
-
0,
|
|
1958
|
-
[_NT, _MR],
|
|
1959
|
-
[0, 1]
|
|
1960
|
-
];
|
|
1961
|
-
var ListGeneratedTemplatesOutput$ = [3, n0, _LGTO,
|
|
1962
|
-
0,
|
|
1963
|
-
[_Su, _NT],
|
|
1964
|
-
[() => TemplateSummaries, 0]
|
|
1965
|
-
];
|
|
1966
|
-
var ListHookResultsInput$ = [3, n0, _LHRI,
|
|
1967
|
-
0,
|
|
1968
|
-
[_TT, _TI, _TA, _S, _NT],
|
|
1969
|
-
[0, 0, 0, 0, 0]
|
|
1970
|
-
];
|
|
1971
|
-
var ListHookResultsOutput$ = [3, n0, _LHRO,
|
|
1972
|
-
0,
|
|
1973
|
-
[_TT, _TI, _HR, _NT],
|
|
1974
|
-
[0, 0, () => HookResultSummaries, 0]
|
|
1975
|
-
];
|
|
1976
|
-
var ListImportsInput$ = [3, n0, _LII,
|
|
1977
|
-
0,
|
|
1978
|
-
[_EN, _NT],
|
|
1979
|
-
[0, 0], 1
|
|
1980
|
-
];
|
|
1981
|
-
var ListImportsOutput$ = [3, n0, _LIO,
|
|
1982
|
-
0,
|
|
1983
|
-
[_Im, _NT],
|
|
1984
|
-
[64 | 0, 0]
|
|
1985
|
-
];
|
|
1986
|
-
var ListResourceScanRelatedResourcesInput$ = [3, n0, _LRSRRI,
|
|
1987
|
-
0,
|
|
1988
|
-
[_RSI, _R, _NT, _MR],
|
|
1989
|
-
[0, () => ScannedResourceIdentifiers, 0, 1], 2
|
|
1990
|
-
];
|
|
1991
|
-
var ListResourceScanRelatedResourcesOutput$ = [3, n0, _LRSRRO,
|
|
1992
|
-
0,
|
|
1993
|
-
[_RRel, _NT],
|
|
1994
|
-
[() => RelatedResources, 0]
|
|
1995
|
-
];
|
|
1996
|
-
var ListResourceScanResourcesInput$ = [3, n0, _LRSRI,
|
|
1997
|
-
0,
|
|
1998
|
-
[_RSI, _RI, _RTP, _TK, _TV, _NT, _MR],
|
|
1999
|
-
[0, 0, 0, 0, 0, 0, 1], 1
|
|
2000
|
-
];
|
|
2001
|
-
var ListResourceScanResourcesOutput$ = [3, n0, _LRSRO,
|
|
2002
|
-
0,
|
|
2003
|
-
[_R, _NT],
|
|
2004
|
-
[() => ScannedResources, 0]
|
|
2005
|
-
];
|
|
2006
|
-
var ListResourceScansInput$ = [3, n0, _LRSI,
|
|
2007
|
-
0,
|
|
2008
|
-
[_NT, _MR, _STF],
|
|
2009
|
-
[0, 1, 0]
|
|
2010
|
-
];
|
|
2011
|
-
var ListResourceScansOutput$ = [3, n0, _LRSO,
|
|
2012
|
-
0,
|
|
2013
|
-
[_RSS, _NT],
|
|
2014
|
-
[() => ResourceScanSummaries, 0]
|
|
2015
|
-
];
|
|
2016
|
-
var ListStackInstanceResourceDriftsInput$ = [3, n0, _LSIRDI,
|
|
2017
|
-
0,
|
|
2018
|
-
[_SSN, _SIA, _SIR, _OI, _NT, _MR, _SIRDS, _CA],
|
|
2019
|
-
[0, 0, 0, 0, 0, 1, 64 | 0, 0], 4
|
|
2020
|
-
];
|
|
2021
|
-
var ListStackInstanceResourceDriftsOutput$ = [3, n0, _LSIRDO,
|
|
2022
|
-
0,
|
|
2023
|
-
[_Su, _NT],
|
|
2024
|
-
[() => StackInstanceResourceDriftsSummaries, 0]
|
|
2025
|
-
];
|
|
2026
|
-
var ListStackInstancesInput$ = [3, n0, _LSII,
|
|
2027
|
-
0,
|
|
2028
|
-
[_SSN, _NT, _MR, _F, _SIA, _SIR, _CA],
|
|
2029
|
-
[0, 0, 1, () => StackInstanceFilters, 0, 0, 0], 1
|
|
2030
|
-
];
|
|
2031
|
-
var ListStackInstancesOutput$ = [3, n0, _LSIO,
|
|
2032
|
-
0,
|
|
2033
|
-
[_Su, _NT],
|
|
2034
|
-
[() => StackInstanceSummaries, 0]
|
|
2035
|
-
];
|
|
2036
|
-
var ListStackRefactorActionsInput$ = [3, n0, _LSRAI,
|
|
2037
|
-
0,
|
|
2038
|
-
[_SRI, _NT, _MR],
|
|
2039
|
-
[0, 0, 1], 1
|
|
2040
|
-
];
|
|
2041
|
-
var ListStackRefactorActionsOutput$ = [3, n0, _LSRAO,
|
|
2042
|
-
0,
|
|
2043
|
-
[_SRA, _NT],
|
|
2044
|
-
[() => StackRefactorActions, 0], 1
|
|
2045
|
-
];
|
|
2046
|
-
var ListStackRefactorsInput$ = [3, n0, _LSRI,
|
|
2047
|
-
0,
|
|
2048
|
-
[_ESF, _NT, _MR],
|
|
2049
|
-
[64 | 0, 0, 1]
|
|
2050
|
-
];
|
|
2051
|
-
var ListStackRefactorsOutput$ = [3, n0, _LSRO,
|
|
2052
|
-
0,
|
|
2053
|
-
[_SRS, _NT],
|
|
2054
|
-
[() => StackRefactorSummaries, 0], 1
|
|
2055
|
-
];
|
|
2056
|
-
var ListStackResourcesInput$ = [3, n0, _LSRIi,
|
|
2057
|
-
0,
|
|
2058
|
-
[_SN, _NT],
|
|
2059
|
-
[0, 0], 1
|
|
2060
|
-
];
|
|
2061
|
-
var ListStackResourcesOutput$ = [3, n0, _LSROi,
|
|
2062
|
-
0,
|
|
2063
|
-
[_SRSt, _NT],
|
|
2064
|
-
[() => StackResourceSummaries, 0]
|
|
2065
|
-
];
|
|
2066
|
-
var ListStackSetAutoDeploymentTargetsInput$ = [3, n0, _LSSADTI,
|
|
2067
|
-
0,
|
|
2068
|
-
[_SSN, _NT, _MR, _CA],
|
|
2069
|
-
[0, 0, 1, 0], 1
|
|
2070
|
-
];
|
|
2071
|
-
var ListStackSetAutoDeploymentTargetsOutput$ = [3, n0, _LSSADTO,
|
|
2072
|
-
0,
|
|
2073
|
-
[_Su, _NT],
|
|
2074
|
-
[() => StackSetAutoDeploymentTargetSummaries, 0]
|
|
2075
|
-
];
|
|
2076
|
-
var ListStackSetOperationResultsInput$ = [3, n0, _LSSORI,
|
|
2077
|
-
0,
|
|
2078
|
-
[_SSN, _OI, _NT, _MR, _CA, _F],
|
|
2079
|
-
[0, 0, 0, 1, 0, () => OperationResultFilters], 2
|
|
2080
|
-
];
|
|
2081
|
-
var ListStackSetOperationResultsOutput$ = [3, n0, _LSSORO,
|
|
2082
|
-
0,
|
|
2083
|
-
[_Su, _NT],
|
|
2084
|
-
[() => StackSetOperationResultSummaries, 0]
|
|
2085
|
-
];
|
|
2086
|
-
var ListStackSetOperationsInput$ = [3, n0, _LSSOI,
|
|
2087
|
-
0,
|
|
2088
|
-
[_SSN, _NT, _MR, _CA],
|
|
2089
|
-
[0, 0, 1, 0], 1
|
|
2090
|
-
];
|
|
2091
|
-
var ListStackSetOperationsOutput$ = [3, n0, _LSSOO,
|
|
2092
|
-
0,
|
|
2093
|
-
[_Su, _NT],
|
|
2094
|
-
[() => StackSetOperationSummaries, 0]
|
|
2095
|
-
];
|
|
2096
|
-
var ListStackSetsInput$ = [3, n0, _LSSI,
|
|
2097
|
-
0,
|
|
2098
|
-
[_NT, _MR, _S, _CA],
|
|
2099
|
-
[0, 1, 0, 0]
|
|
2100
|
-
];
|
|
2101
|
-
var ListStackSetsOutput$ = [3, n0, _LSSO,
|
|
2102
|
-
0,
|
|
2103
|
-
[_Su, _NT],
|
|
2104
|
-
[() => StackSetSummaries, 0]
|
|
2105
|
-
];
|
|
2106
|
-
var ListStacksInput$ = [3, n0, _LSI,
|
|
2107
|
-
0,
|
|
2108
|
-
[_NT, _SSF],
|
|
2109
|
-
[0, 64 | 0]
|
|
2110
|
-
];
|
|
2111
|
-
var ListStacksOutput$ = [3, n0, _LSO,
|
|
2112
|
-
0,
|
|
2113
|
-
[_SSt, _NT],
|
|
2114
|
-
[() => StackSummaries, 0]
|
|
2115
|
-
];
|
|
2116
|
-
var ListTypeRegistrationsInput$ = [3, n0, _LTRI,
|
|
2117
|
-
0,
|
|
2118
|
-
[_T, _TN, _TA, _RSF, _MR, _NT],
|
|
2119
|
-
[0, 0, 0, 0, 1, 0]
|
|
2120
|
-
];
|
|
2121
|
-
var ListTypeRegistrationsOutput$ = [3, n0, _LTRO,
|
|
2122
|
-
0,
|
|
2123
|
-
[_RTL, _NT],
|
|
2124
|
-
[64 | 0, 0]
|
|
2125
|
-
];
|
|
2126
|
-
var ListTypesInput$ = [3, n0, _LTI,
|
|
2127
|
-
0,
|
|
2128
|
-
[_Vi, _PT, _DSe, _T, _F, _MR, _NT],
|
|
2129
|
-
[0, 0, 0, 0, () => TypeFilters$, 1, 0]
|
|
2130
|
-
];
|
|
2131
|
-
var ListTypesOutput$ = [3, n0, _LTO,
|
|
2132
|
-
0,
|
|
2133
|
-
[_TSy, _NT],
|
|
2134
|
-
[() => TypeSummaries, 0]
|
|
2135
|
-
];
|
|
2136
|
-
var ListTypeVersionsInput$ = [3, n0, _LTVI,
|
|
2137
|
-
0,
|
|
2138
|
-
[_T, _TN, _A, _MR, _NT, _DSe, _PI],
|
|
2139
|
-
[0, 0, 0, 1, 0, 0, 0]
|
|
2140
|
-
];
|
|
2141
|
-
var ListTypeVersionsOutput$ = [3, n0, _LTVO,
|
|
2142
|
-
0,
|
|
2143
|
-
[_TVS, _NT],
|
|
2144
|
-
[() => TypeVersionSummaries, 0]
|
|
2145
|
-
];
|
|
2146
|
-
var LiveResourceDrift$ = [3, n0, _LRD,
|
|
2147
|
-
0,
|
|
2148
|
-
[_PV, _AV, _DDT],
|
|
2149
|
-
[0, 0, 4]
|
|
2150
|
-
];
|
|
2151
|
-
var LoggingConfig$ = [3, n0, _LC,
|
|
2152
|
-
0,
|
|
2153
|
-
[_LRA, _LGN],
|
|
2154
|
-
[0, 0], 2
|
|
2155
|
-
];
|
|
2156
|
-
var ManagedExecution$ = [3, n0, _ME,
|
|
2157
|
-
0,
|
|
2158
|
-
[_Acti],
|
|
2159
|
-
[2]
|
|
2160
|
-
];
|
|
2161
|
-
var ModuleInfo$ = [3, n0, _MI,
|
|
2162
|
-
0,
|
|
2163
|
-
[_TH, _LIH],
|
|
2164
|
-
[0, 0]
|
|
2165
|
-
];
|
|
2166
|
-
var NameAlreadyExistsException$ = [-3, n0, _NAEE,
|
|
2167
|
-
{ [_aQE]: [`NameAlreadyExistsException`, 409], [_e]: _c, [_hE]: 409 },
|
|
2168
|
-
[_M],
|
|
2169
|
-
[0]
|
|
2170
|
-
];
|
|
2171
|
-
schema.TypeRegistry.for(n0).registerError(NameAlreadyExistsException$, NameAlreadyExistsException);
|
|
2172
|
-
var OperationEntry$ = [3, n0, _OEp,
|
|
2173
|
-
0,
|
|
2174
|
-
[_OT, _OI],
|
|
2175
|
-
[0, 0]
|
|
2176
|
-
];
|
|
2177
|
-
var OperationEvent$ = [3, n0, _OEpe,
|
|
2178
|
-
0,
|
|
2179
|
-
[_EI, _SI, _OI, _OT, _OS, _ETv, _LRI, _PRI, _RT, _Ti, _ST, _ET, _RSes, _RSR, _RP, _CRT, _HTo, _HS, _HSR, _HIP, _HFM, _DSet, _VFM, _VN, _VS, _VSR, _VP],
|
|
2180
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
2181
|
-
];
|
|
2182
|
-
var OperationIdAlreadyExistsException$ = [-3, n0, _OIAEE,
|
|
2183
|
-
{ [_aQE]: [`OperationIdAlreadyExistsException`, 409], [_e]: _c, [_hE]: 409 },
|
|
2184
|
-
[_M],
|
|
2185
|
-
[0]
|
|
2186
|
-
];
|
|
2187
|
-
schema.TypeRegistry.for(n0).registerError(OperationIdAlreadyExistsException$, OperationIdAlreadyExistsException);
|
|
2188
|
-
var OperationInProgressException$ = [-3, n0, _OIPE,
|
|
2189
|
-
{ [_aQE]: [`OperationInProgressException`, 409], [_e]: _c, [_hE]: 409 },
|
|
2190
|
-
[_M],
|
|
2191
|
-
[0]
|
|
2192
|
-
];
|
|
2193
|
-
schema.TypeRegistry.for(n0).registerError(OperationInProgressException$, OperationInProgressException);
|
|
2194
|
-
var OperationNotFoundException$ = [-3, n0, _ONFE,
|
|
2195
|
-
{ [_aQE]: [`OperationNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
2196
|
-
[_M],
|
|
2197
|
-
[0]
|
|
2198
|
-
];
|
|
2199
|
-
schema.TypeRegistry.for(n0).registerError(OperationNotFoundException$, OperationNotFoundException);
|
|
2200
|
-
var OperationResultFilter$ = [3, n0, _ORF,
|
|
2201
|
-
0,
|
|
2202
|
-
[_N, _Va],
|
|
2203
|
-
[0, 0]
|
|
2204
|
-
];
|
|
2205
|
-
var OperationStatusCheckFailedException$ = [-3, n0, _OSCFE,
|
|
2206
|
-
{ [_aQE]: [`ConditionalCheckFailed`, 400], [_e]: _c, [_hE]: 400 },
|
|
2207
|
-
[_M],
|
|
2208
|
-
[0]
|
|
2209
|
-
];
|
|
2210
|
-
schema.TypeRegistry.for(n0).registerError(OperationStatusCheckFailedException$, OperationStatusCheckFailedException);
|
|
2211
|
-
var Output$ = [3, n0, _O,
|
|
2212
|
-
0,
|
|
2213
|
-
[_OK, _OV, _D, _EN],
|
|
2214
|
-
[0, 0, 0, 0]
|
|
2215
|
-
];
|
|
2216
|
-
var Parameter$ = [3, n0, _Pa,
|
|
2217
|
-
0,
|
|
2218
|
-
[_PK, _PVa, _UPV, _RV],
|
|
2219
|
-
[0, 0, 2, 0]
|
|
2220
|
-
];
|
|
2221
|
-
var ParameterConstraints$ = [3, n0, _PCa,
|
|
2222
|
-
0,
|
|
2223
|
-
[_AVl],
|
|
2224
|
-
[64 | 0]
|
|
2225
|
-
];
|
|
2226
|
-
var ParameterDeclaration$ = [3, n0, _PD,
|
|
2227
|
-
0,
|
|
2228
|
-
[_PK, _DV, _PTa, _NE, _D, _PCa],
|
|
2229
|
-
[0, 0, 0, 2, 0, () => ParameterConstraints$]
|
|
2230
|
-
];
|
|
2231
|
-
var PhysicalResourceIdContextKeyValuePair$ = [3, n0, _PRICKVP,
|
|
2232
|
-
0,
|
|
2233
|
-
[_K, _V],
|
|
2234
|
-
[0, 0], 2
|
|
2235
|
-
];
|
|
2236
|
-
var PropertyDifference$ = [3, n0, _PDr,
|
|
2237
|
-
0,
|
|
2238
|
-
[_PPr, _EV, _AV, _DTi],
|
|
2239
|
-
[0, 0, 0, 0], 4
|
|
2240
|
-
];
|
|
2241
|
-
var PublishTypeInput$ = [3, n0, _PTI,
|
|
2242
|
-
0,
|
|
2243
|
-
[_T, _A, _TN, _PVN],
|
|
2244
|
-
[0, 0, 0, 0]
|
|
2245
|
-
];
|
|
2246
|
-
var PublishTypeOutput$ = [3, n0, _PTO,
|
|
2247
|
-
0,
|
|
2248
|
-
[_PTA],
|
|
2249
|
-
[0]
|
|
2250
|
-
];
|
|
2251
|
-
var RecordHandlerProgressInput$ = [3, n0, _RHPI,
|
|
2252
|
-
0,
|
|
2253
|
-
[_BT, _OS, _COS, _SM, _EC, _RMes, _CRT],
|
|
2254
|
-
[0, 0, 0, 0, 0, 0, 0], 2
|
|
2255
|
-
];
|
|
2256
|
-
var RecordHandlerProgressOutput$ = [3, n0, _RHPO,
|
|
2257
|
-
0,
|
|
2258
|
-
[],
|
|
2259
|
-
[]
|
|
2260
|
-
];
|
|
2261
|
-
var RegisterPublisherInput$ = [3, n0, _RPI,
|
|
2262
|
-
0,
|
|
2263
|
-
[_ATAC, _CAo],
|
|
2264
|
-
[2, 0]
|
|
2265
|
-
];
|
|
2266
|
-
var RegisterPublisherOutput$ = [3, n0, _RPO,
|
|
2267
|
-
0,
|
|
2268
|
-
[_PI],
|
|
2269
|
-
[0]
|
|
2270
|
-
];
|
|
2271
|
-
var RegisterTypeInput$ = [3, n0, _RTIe,
|
|
2272
|
-
0,
|
|
2273
|
-
[_TN, _SHP, _T, _LC, _ERA, _CRT],
|
|
2274
|
-
[0, 0, 0, () => LoggingConfig$, 0, 0], 2
|
|
2275
|
-
];
|
|
2276
|
-
var RegisterTypeOutput$ = [3, n0, _RTO,
|
|
2277
|
-
0,
|
|
2278
|
-
[_RTeg],
|
|
2279
|
-
[0]
|
|
2280
|
-
];
|
|
2281
|
-
var RequiredActivatedType$ = [3, n0, _RATe,
|
|
2282
|
-
0,
|
|
2283
|
-
[_TNA, _OTN, _PI, _SMV],
|
|
2284
|
-
[0, 0, 0, 64 | 1]
|
|
2285
|
-
];
|
|
2286
|
-
var ResourceChange$ = [3, n0, _RC,
|
|
2287
|
-
0,
|
|
2288
|
-
[_PA, _Act, _LRI, _PRI, _RT, _Rep, _Sco, _RDS, _RDIA, _De, _CSI, _MI, _BC, _AC, _PDC],
|
|
2289
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 0, () => ResourceDriftIgnoredAttributes, () => ResourceChangeDetails, 0, () => ModuleInfo$, 0, 0, 0]
|
|
2290
|
-
];
|
|
2291
|
-
var ResourceChangeDetail$ = [3, n0, _RCD,
|
|
2292
|
-
0,
|
|
2293
|
-
[_Tar, _Ev, _CSh, _CE],
|
|
2294
|
-
[() => ResourceTargetDefinition$, 0, 0, 0]
|
|
2295
|
-
];
|
|
2296
|
-
var ResourceDefinition$ = [3, n0, _RD,
|
|
2297
|
-
0,
|
|
2298
|
-
[_RT, _RI, _LRI],
|
|
2299
|
-
[0, 128 | 0, 0], 2
|
|
2300
|
-
];
|
|
2301
|
-
var ResourceDetail$ = [3, n0, _RDe,
|
|
2302
|
-
0,
|
|
2303
|
-
[_RT, _LRI, _RI, _RSes, _RSR, _W],
|
|
2304
|
-
[0, 0, 128 | 0, 0, 0, () => WarningDetails]
|
|
2305
|
-
];
|
|
2306
|
-
var ResourceDriftIgnoredAttribute$ = [3, n0, _RDIAe,
|
|
2307
|
-
0,
|
|
2308
|
-
[_Pat, _Rea],
|
|
2309
|
-
[0, 0]
|
|
2310
|
-
];
|
|
2311
|
-
var ResourceIdentifierSummary$ = [3, n0, _RISe,
|
|
2312
|
-
0,
|
|
2313
|
-
[_RT, _LRIo, _RIe],
|
|
2314
|
-
[0, 64 | 0, 64 | 0]
|
|
2315
|
-
];
|
|
2316
|
-
var ResourceLocation$ = [3, n0, _RLe,
|
|
2317
|
-
0,
|
|
2318
|
-
[_SN, _LRI],
|
|
2319
|
-
[0, 0], 2
|
|
2320
|
-
];
|
|
2321
|
-
var ResourceMapping$ = [3, n0, _RMeso,
|
|
2322
|
-
0,
|
|
2323
|
-
[_So, _Des],
|
|
2324
|
-
[() => ResourceLocation$, () => ResourceLocation$], 2
|
|
2325
|
-
];
|
|
2326
|
-
var ResourceScanInProgressException$ = [-3, n0, _RSIPE,
|
|
2327
|
-
{ [_aQE]: [`ResourceScanInProgress`, 400], [_e]: _c, [_hE]: 400 },
|
|
2328
|
-
[_M],
|
|
2329
|
-
[0]
|
|
2330
|
-
];
|
|
2331
|
-
schema.TypeRegistry.for(n0).registerError(ResourceScanInProgressException$, ResourceScanInProgressException);
|
|
2332
|
-
var ResourceScanLimitExceededException$ = [-3, n0, _RSLEE,
|
|
2333
|
-
{ [_aQE]: [`ResourceScanLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2334
|
-
[_M],
|
|
2335
|
-
[0]
|
|
2336
|
-
];
|
|
2337
|
-
schema.TypeRegistry.for(n0).registerError(ResourceScanLimitExceededException$, ResourceScanLimitExceededException);
|
|
2338
|
-
var ResourceScanNotFoundException$ = [-3, n0, _RSNFE,
|
|
2339
|
-
{ [_aQE]: [`ResourceScanNotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
2340
|
-
[_M],
|
|
2341
|
-
[0]
|
|
2342
|
-
];
|
|
2343
|
-
schema.TypeRegistry.for(n0).registerError(ResourceScanNotFoundException$, ResourceScanNotFoundException);
|
|
2344
|
-
var ResourceScanSummary$ = [3, n0, _RSSe,
|
|
2345
|
-
0,
|
|
2346
|
-
[_RSI, _S, _SR, _ST, _ET, _PC, _STc],
|
|
2347
|
-
[0, 0, 0, 4, 4, 1, 0]
|
|
2348
|
-
];
|
|
2349
|
-
var ResourceTargetDefinition$ = [3, n0, _RTDe,
|
|
2350
|
-
0,
|
|
2351
|
-
[_At, _N, _RReq, _Pat, _BV, _AVf, _BVF, _AVF, _Dr, _ACT],
|
|
2352
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => LiveResourceDrift$, 0]
|
|
2353
|
-
];
|
|
2354
|
-
var ResourceToImport$ = [3, n0, _RTIes,
|
|
2355
|
-
0,
|
|
2356
|
-
[_RT, _LRI, _RI],
|
|
2357
|
-
[0, 0, 128 | 0], 3
|
|
2358
|
-
];
|
|
2359
|
-
var RollbackConfiguration$ = [3, n0, _RCo,
|
|
2360
|
-
0,
|
|
2361
|
-
[_RTo, _MTIM],
|
|
2362
|
-
[() => RollbackTriggers, 1]
|
|
2363
|
-
];
|
|
2364
|
-
var RollbackStackInput$ = [3, n0, _RSIo,
|
|
2365
|
-
0,
|
|
2366
|
-
[_SN, _RARN, _CRT, _REOC],
|
|
2367
|
-
[0, 0, 0, 2], 1
|
|
2368
|
-
];
|
|
2369
|
-
var RollbackStackOutput$ = [3, n0, _RSO,
|
|
2370
|
-
0,
|
|
2371
|
-
[_SI, _OI],
|
|
2372
|
-
[0, 0]
|
|
2373
|
-
];
|
|
2374
|
-
var RollbackTrigger$ = [3, n0, _RTol,
|
|
2375
|
-
0,
|
|
2376
|
-
[_A, _T],
|
|
2377
|
-
[0, 0], 2
|
|
2378
|
-
];
|
|
2379
|
-
var ScanFilter$ = [3, n0, _SFc,
|
|
2380
|
-
0,
|
|
2381
|
-
[_Ty],
|
|
2382
|
-
[64 | 0]
|
|
2383
|
-
];
|
|
2384
|
-
var ScannedResource$ = [3, n0, _SRc,
|
|
2385
|
-
0,
|
|
2386
|
-
[_RT, _RI, _MBS],
|
|
2387
|
-
[0, 128 | 0, 2]
|
|
2388
|
-
];
|
|
2389
|
-
var ScannedResourceIdentifier$ = [3, n0, _SRIc,
|
|
2390
|
-
0,
|
|
2391
|
-
[_RT, _RI],
|
|
2392
|
-
[0, 128 | 0], 2
|
|
2393
|
-
];
|
|
2394
|
-
var SetStackPolicyInput$ = [3, n0, _SSPI,
|
|
2395
|
-
0,
|
|
2396
|
-
[_SN, _SPB, _SPURL],
|
|
2397
|
-
[0, 0, 0], 1
|
|
2398
|
-
];
|
|
2399
|
-
var SetTypeConfigurationInput$ = [3, n0, _STCI,
|
|
2400
|
-
0,
|
|
2401
|
-
[_Co, _TA, _CAon, _TN, _T],
|
|
2402
|
-
[0, 0, 0, 0, 0], 1
|
|
2403
|
-
];
|
|
2404
|
-
var SetTypeConfigurationOutput$ = [3, n0, _STCO,
|
|
2405
|
-
0,
|
|
2406
|
-
[_CAonf],
|
|
2407
|
-
[0]
|
|
2408
|
-
];
|
|
2409
|
-
var SetTypeDefaultVersionInput$ = [3, n0, _STDVI,
|
|
2410
|
-
0,
|
|
2411
|
-
[_A, _T, _TN, _VI],
|
|
2412
|
-
[0, 0, 0, 0]
|
|
2413
|
-
];
|
|
2414
|
-
var SetTypeDefaultVersionOutput$ = [3, n0, _STDVO,
|
|
2415
|
-
0,
|
|
2416
|
-
[],
|
|
2417
|
-
[]
|
|
2418
|
-
];
|
|
2419
|
-
var SignalResourceInput$ = [3, n0, _SRIi,
|
|
2420
|
-
0,
|
|
2421
|
-
[_SN, _LRI, _UI, _S],
|
|
2422
|
-
[0, 0, 0, 0], 4
|
|
2423
|
-
];
|
|
2424
|
-
var Stack$ = [3, n0, _Sta,
|
|
2425
|
-
0,
|
|
2426
|
-
[_SN, _CT, _SSta, _SI, _CSI, _D, _P, _DTel, _LUT, _RCo, _SSR, _DR, _NARN, _TIM, _Ca, _Ou, _RARN, _Ta, _ETP, _PIa, _RIo, _DI, _REOC, _DMe, _DSet, _LO],
|
|
2427
|
-
[0, 4, 0, 0, 0, 0, () => _Parameters, 4, 4, () => RollbackConfiguration$, 0, 2, 64 | 0, 1, 64 | 0, () => Outputs, 0, () => Tags, 2, 0, 0, () => StackDriftInformation$, 2, 0, 0, () => LastOperations], 3
|
|
2428
|
-
];
|
|
2429
|
-
var StackDefinition$ = [3, n0, _SDt,
|
|
2430
|
-
0,
|
|
2431
|
-
[_SN, _TB, _TURL],
|
|
2432
|
-
[0, 0, 0]
|
|
2433
|
-
];
|
|
2434
|
-
var StackDriftInformation$ = [3, n0, _SDI,
|
|
2435
|
-
0,
|
|
2436
|
-
[_SDS, _LCT],
|
|
2437
|
-
[0, 4], 1
|
|
2438
|
-
];
|
|
2439
|
-
var StackDriftInformationSummary$ = [3, n0, _SDIS,
|
|
2440
|
-
0,
|
|
2441
|
-
[_SDS, _LCT],
|
|
2442
|
-
[0, 4], 1
|
|
2443
|
-
];
|
|
2444
|
-
var StackEvent$ = [3, n0, _SEt,
|
|
2445
|
-
0,
|
|
2446
|
-
[_SI, _EI, _SN, _Ti, _OI, _LRI, _PRI, _RT, _RSes, _RSR, _RP, _CRT, _HTo, _HS, _HSR, _HIP, _HII, _HFM, _DSet],
|
|
2447
|
-
[0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 4
|
|
2448
|
-
];
|
|
2449
|
-
var StackInstance$ = [3, n0, _SIt,
|
|
2450
|
-
0,
|
|
2451
|
-
[_SSI, _Reg, _Acc, _SI, _PO, _S, _SIS, _SR, _OUIr, _DSr, _LDCT, _LOI],
|
|
2452
|
-
[0, 0, 0, 0, () => _Parameters, 0, () => StackInstanceComprehensiveStatus$, 0, 0, 0, 4, 0]
|
|
2453
|
-
];
|
|
2454
|
-
var StackInstanceComprehensiveStatus$ = [3, n0, _SICS,
|
|
2455
|
-
0,
|
|
2456
|
-
[_DSet],
|
|
2457
|
-
[0]
|
|
2458
|
-
];
|
|
2459
|
-
var StackInstanceFilter$ = [3, n0, _SIF,
|
|
2460
|
-
0,
|
|
2461
|
-
[_N, _Va],
|
|
2462
|
-
[0, 0]
|
|
2463
|
-
];
|
|
2464
|
-
var StackInstanceNotFoundException$ = [-3, n0, _SINFE,
|
|
2465
|
-
{ [_aQE]: [`StackInstanceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
2466
|
-
[_M],
|
|
2467
|
-
[0]
|
|
2468
|
-
];
|
|
2469
|
-
schema.TypeRegistry.for(n0).registerError(StackInstanceNotFoundException$, StackInstanceNotFoundException);
|
|
2470
|
-
var StackInstanceResourceDriftsSummary$ = [3, n0, _SIRDSt,
|
|
2471
|
-
0,
|
|
2472
|
-
[_SI, _LRI, _RT, _SRDS, _Ti, _PRI, _PRIC, _PDro],
|
|
2473
|
-
[0, 0, 0, 0, 4, 0, () => PhysicalResourceIdContext, () => PropertyDifferences], 5
|
|
2474
|
-
];
|
|
2475
|
-
var StackInstanceSummary$ = [3, n0, _SISt,
|
|
2476
|
-
0,
|
|
2477
|
-
[_SSI, _Reg, _Acc, _SI, _S, _SR, _SIS, _OUIr, _DSr, _LDCT, _LOI],
|
|
2478
|
-
[0, 0, 0, 0, 0, 0, () => StackInstanceComprehensiveStatus$, 0, 0, 4, 0]
|
|
2479
|
-
];
|
|
2480
|
-
var StackNotFoundException$ = [-3, n0, _SNFE,
|
|
2481
|
-
{ [_aQE]: [`StackNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
2482
|
-
[_M],
|
|
2483
|
-
[0]
|
|
2484
|
-
];
|
|
2485
|
-
schema.TypeRegistry.for(n0).registerError(StackNotFoundException$, StackNotFoundException);
|
|
2486
|
-
var StackRefactorAction$ = [3, n0, _SRAt,
|
|
2487
|
-
0,
|
|
2488
|
-
[_Act, _En, _PRI, _RI, _D, _Det, _DRe, _TR, _UR, _RMeso],
|
|
2489
|
-
[0, 0, 0, 0, 0, 0, 0, () => StackRefactorTagResources, 64 | 0, () => ResourceMapping$]
|
|
2490
|
-
];
|
|
2491
|
-
var StackRefactorNotFoundException$ = [-3, n0, _SRNFE,
|
|
2492
|
-
{ [_aQE]: [`StackRefactorNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
2493
|
-
[_M],
|
|
2494
|
-
[0]
|
|
2495
|
-
];
|
|
2496
|
-
schema.TypeRegistry.for(n0).registerError(StackRefactorNotFoundException$, StackRefactorNotFoundException);
|
|
2497
|
-
var StackRefactorSummary$ = [3, n0, _SRSta,
|
|
2498
|
-
0,
|
|
2499
|
-
[_SRI, _D, _ES, _ESR, _S, _SR],
|
|
2500
|
-
[0, 0, 0, 0, 0, 0]
|
|
2501
|
-
];
|
|
2502
|
-
var StackResource$ = [3, n0, _SRta,
|
|
2503
|
-
0,
|
|
2504
|
-
[_LRI, _RT, _Ti, _RSes, _SN, _SI, _PRI, _RSR, _D, _DI, _MI],
|
|
2505
|
-
[0, 0, 4, 0, 0, 0, 0, 0, 0, () => StackResourceDriftInformation$, () => ModuleInfo$], 4
|
|
2506
|
-
];
|
|
2507
|
-
var StackResourceDetail$ = [3, n0, _SRDt,
|
|
2508
|
-
0,
|
|
2509
|
-
[_LRI, _RT, _LUTa, _RSes, _SN, _SI, _PRI, _RSR, _D, _Me, _DI, _MI],
|
|
2510
|
-
[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, () => StackResourceDriftInformation$, () => ModuleInfo$], 4
|
|
2511
|
-
];
|
|
2512
|
-
var StackResourceDrift$ = [3, n0, _SRDta,
|
|
2513
|
-
0,
|
|
2514
|
-
[_SI, _LRI, _RT, _SRDS, _Ti, _PRI, _PRIC, _EP, _AP, _PDro, _MI, _DSRr],
|
|
2515
|
-
[0, 0, 0, 0, 4, 0, () => PhysicalResourceIdContext, 0, 0, () => PropertyDifferences, () => ModuleInfo$, 0], 5
|
|
2516
|
-
];
|
|
2517
|
-
var StackResourceDriftInformation$ = [3, n0, _SRDI,
|
|
2518
|
-
0,
|
|
2519
|
-
[_SRDS, _LCT],
|
|
2520
|
-
[0, 4], 1
|
|
2521
|
-
];
|
|
2522
|
-
var StackResourceDriftInformationSummary$ = [3, n0, _SRDIS,
|
|
2523
|
-
0,
|
|
2524
|
-
[_SRDS, _LCT],
|
|
2525
|
-
[0, 4], 1
|
|
2526
|
-
];
|
|
2527
|
-
var StackResourceSummary$ = [3, n0, _SRStac,
|
|
2528
|
-
0,
|
|
2529
|
-
[_LRI, _RT, _LUTa, _RSes, _PRI, _RSR, _DI, _MI],
|
|
2530
|
-
[0, 0, 4, 0, 0, 0, () => StackResourceDriftInformationSummary$, () => ModuleInfo$], 4
|
|
2531
|
-
];
|
|
2532
|
-
var StackSet$ = [3, n0, _SS,
|
|
2533
|
-
0,
|
|
2534
|
-
[_SSN, _SSI, _D, _S, _TB, _P, _Ca, _Ta, _SSARN, _ARARN, _ERN, _SSDDD, _AD, _PM, _OUI, _ME, _Re],
|
|
2535
|
-
[0, 0, 0, 0, 0, () => _Parameters, 64 | 0, () => Tags, 0, 0, 0, () => StackSetDriftDetectionDetails$, () => AutoDeployment$, 0, 64 | 0, () => ManagedExecution$, 64 | 0]
|
|
2536
|
-
];
|
|
2537
|
-
var StackSetAutoDeploymentTargetSummary$ = [3, n0, _SSADTS,
|
|
2538
|
-
0,
|
|
2539
|
-
[_OUIr, _Re],
|
|
2540
|
-
[0, 64 | 0]
|
|
2541
|
-
];
|
|
2542
|
-
var StackSetDriftDetectionDetails$ = [3, n0, _SSDDD,
|
|
2543
|
-
0,
|
|
2544
|
-
[_DSr, _DDS, _LDCT, _TSIC, _DSIC, _ISSIC, _IPSIC, _FSIC],
|
|
2545
|
-
[0, 0, 4, 1, 1, 1, 1, 1]
|
|
2546
|
-
];
|
|
2547
|
-
var StackSetNotEmptyException$ = [-3, n0, _SSNEE,
|
|
2548
|
-
{ [_aQE]: [`StackSetNotEmptyException`, 409], [_e]: _c, [_hE]: 409 },
|
|
2549
|
-
[_M],
|
|
2550
|
-
[0]
|
|
2551
|
-
];
|
|
2552
|
-
schema.TypeRegistry.for(n0).registerError(StackSetNotEmptyException$, StackSetNotEmptyException);
|
|
2553
|
-
var StackSetNotFoundException$ = [-3, n0, _SSNFE,
|
|
2554
|
-
{ [_aQE]: [`StackSetNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
2555
|
-
[_M],
|
|
2556
|
-
[0]
|
|
2557
|
-
];
|
|
2558
|
-
schema.TypeRegistry.for(n0).registerError(StackSetNotFoundException$, StackSetNotFoundException);
|
|
2559
|
-
var StackSetOperation$ = [3, n0, _SSO,
|
|
2560
|
-
0,
|
|
2561
|
-
[_OI, _SSI, _Act, _S, _OP, _RS, _ARARN, _ERN, _CTr, _ETn, _DT, _SSDDD, _SR, _SDta],
|
|
2562
|
-
[0, 0, 0, 0, () => StackSetOperationPreferences$, 2, 0, 0, 4, 4, () => DeploymentTargets$, () => StackSetDriftDetectionDetails$, 0, () => StackSetOperationStatusDetails$]
|
|
2563
|
-
];
|
|
2564
|
-
var StackSetOperationPreferences$ = [3, n0, _SSOP,
|
|
2565
|
-
0,
|
|
2566
|
-
[_RCT, _RO, _FTC, _FTP, _MCC, _MCP, _CM],
|
|
2567
|
-
[0, 64 | 0, 1, 1, 1, 1, 0]
|
|
2568
|
-
];
|
|
2569
|
-
var StackSetOperationResultSummary$ = [3, n0, _SSORS,
|
|
2570
|
-
0,
|
|
2571
|
-
[_Acc, _Reg, _S, _SR, _AGR, _OUIr],
|
|
2572
|
-
[0, 0, 0, 0, () => AccountGateResult$, 0]
|
|
2573
|
-
];
|
|
2574
|
-
var StackSetOperationStatusDetails$ = [3, n0, _SSOSD,
|
|
2575
|
-
0,
|
|
2576
|
-
[_FSIC],
|
|
2577
|
-
[1]
|
|
2578
|
-
];
|
|
2579
|
-
var StackSetOperationSummary$ = [3, n0, _SSOS,
|
|
2580
|
-
0,
|
|
2581
|
-
[_OI, _Act, _S, _CTr, _ETn, _SR, _SDta, _OP],
|
|
2582
|
-
[0, 0, 0, 4, 4, 0, () => StackSetOperationStatusDetails$, () => StackSetOperationPreferences$]
|
|
2583
|
-
];
|
|
2584
|
-
var StackSetSummary$ = [3, n0, _SSS,
|
|
2585
|
-
0,
|
|
2586
|
-
[_SSN, _SSI, _D, _S, _AD, _PM, _DSr, _LDCT, _ME],
|
|
2587
|
-
[0, 0, 0, 0, () => AutoDeployment$, 0, 0, 4, () => ManagedExecution$]
|
|
2588
|
-
];
|
|
2589
|
-
var StackSummary$ = [3, n0, _SStac,
|
|
2590
|
-
0,
|
|
2591
|
-
[_SN, _CT, _SSta, _SI, _TDe, _LUT, _DTel, _SSR, _PIa, _RIo, _DI, _LO],
|
|
2592
|
-
[0, 4, 0, 0, 0, 4, 4, 0, 0, 0, () => StackDriftInformationSummary$, () => LastOperations], 3
|
|
2593
|
-
];
|
|
2594
|
-
var StaleRequestException$ = [-3, n0, _SRE,
|
|
2595
|
-
{ [_aQE]: [`StaleRequestException`, 409], [_e]: _c, [_hE]: 409 },
|
|
2596
|
-
[_M],
|
|
2597
|
-
[0]
|
|
2598
|
-
];
|
|
2599
|
-
schema.TypeRegistry.for(n0).registerError(StaleRequestException$, StaleRequestException);
|
|
2600
|
-
var StartResourceScanInput$ = [3, n0, _SRSI,
|
|
2601
|
-
0,
|
|
2602
|
-
[_CRT, _SF],
|
|
2603
|
-
[0, () => ScanFilters]
|
|
2604
|
-
];
|
|
2605
|
-
var StartResourceScanOutput$ = [3, n0, _SRSO,
|
|
2606
|
-
0,
|
|
2607
|
-
[_RSI],
|
|
2608
|
-
[0]
|
|
2609
|
-
];
|
|
2610
|
-
var StopStackSetOperationInput$ = [3, n0, _SSSOI,
|
|
2611
|
-
0,
|
|
2612
|
-
[_SSN, _OI, _CA],
|
|
2613
|
-
[0, 0, 0], 2
|
|
2614
|
-
];
|
|
2615
|
-
var StopStackSetOperationOutput$ = [3, n0, _SSSOO,
|
|
2616
|
-
0,
|
|
2617
|
-
[],
|
|
2618
|
-
[]
|
|
2619
|
-
];
|
|
2620
|
-
var Tag$ = [3, n0, _Tag,
|
|
2621
|
-
0,
|
|
2622
|
-
[_K, _V],
|
|
2623
|
-
[0, 0], 2
|
|
2624
|
-
];
|
|
2625
|
-
var TemplateConfiguration$ = [3, n0, _TCe,
|
|
2626
|
-
0,
|
|
2627
|
-
[_DP, _URP],
|
|
2628
|
-
[0, 0]
|
|
2629
|
-
];
|
|
2630
|
-
var TemplateParameter$ = [3, n0, _TP,
|
|
2631
|
-
0,
|
|
2632
|
-
[_PK, _DV, _NE, _D],
|
|
2633
|
-
[0, 0, 2, 0]
|
|
2634
|
-
];
|
|
2635
|
-
var TemplateProgress$ = [3, n0, _TPe,
|
|
2636
|
-
0,
|
|
2637
|
-
[_RSeso, _RF, _RPe, _RPes],
|
|
2638
|
-
[1, 1, 1, 1]
|
|
2639
|
-
];
|
|
2640
|
-
var TemplateSummary$ = [3, n0, _TSe,
|
|
2641
|
-
0,
|
|
2642
|
-
[_GTI, _GTN, _S, _SR, _CT, _LUT, _NOR],
|
|
2643
|
-
[0, 0, 0, 0, 4, 4, 1]
|
|
2644
|
-
];
|
|
2645
|
-
var TemplateSummaryConfig$ = [3, n0, _TSC,
|
|
2646
|
-
0,
|
|
2647
|
-
[_TURTAW],
|
|
2648
|
-
[2]
|
|
2649
|
-
];
|
|
2650
|
-
var TestTypeInput$ = [3, n0, _TTI,
|
|
2651
|
-
0,
|
|
2652
|
-
[_A, _T, _TN, _VI, _LDB],
|
|
2653
|
-
[0, 0, 0, 0, 0]
|
|
2654
|
-
];
|
|
2655
|
-
var TestTypeOutput$ = [3, n0, _TTO,
|
|
2656
|
-
0,
|
|
2657
|
-
[_TVA],
|
|
2658
|
-
[0]
|
|
2659
|
-
];
|
|
2660
|
-
var TokenAlreadyExistsException$ = [-3, n0, _TAEE,
|
|
2661
|
-
{ [_aQE]: [`TokenAlreadyExistsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
2662
|
-
[_M],
|
|
2663
|
-
[0]
|
|
2664
|
-
];
|
|
2665
|
-
schema.TypeRegistry.for(n0).registerError(TokenAlreadyExistsException$, TokenAlreadyExistsException);
|
|
2666
|
-
var TypeConfigurationDetails$ = [3, n0, _TCD,
|
|
2667
|
-
0,
|
|
2668
|
-
[_A, _Al, _Co, _LU, _TA, _TN, _IDC],
|
|
2669
|
-
[0, 0, 0, 4, 0, 0, 2]
|
|
2670
|
-
];
|
|
2671
|
-
var TypeConfigurationIdentifier$ = [3, n0, _TCI,
|
|
2672
|
-
0,
|
|
2673
|
-
[_TA, _TCA, _TCAy, _T, _TN],
|
|
2674
|
-
[0, 0, 0, 0, 0]
|
|
2675
|
-
];
|
|
2676
|
-
var TypeConfigurationNotFoundException$ = [-3, n0, _TCNFE,
|
|
2677
|
-
{ [_aQE]: [`TypeConfigurationNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
2678
|
-
[_M],
|
|
2679
|
-
[0]
|
|
2680
|
-
];
|
|
2681
|
-
schema.TypeRegistry.for(n0).registerError(TypeConfigurationNotFoundException$, TypeConfigurationNotFoundException);
|
|
2682
|
-
var TypeFilters$ = [3, n0, _TF,
|
|
2683
|
-
0,
|
|
2684
|
-
[_Cat, _PI, _TNP],
|
|
2685
|
-
[0, 0, 0]
|
|
2686
|
-
];
|
|
2687
|
-
var TypeNotFoundException$ = [-3, n0, _TNFE,
|
|
2688
|
-
{ [_aQE]: [`TypeNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
2689
|
-
[_M],
|
|
2690
|
-
[0]
|
|
2691
|
-
];
|
|
2692
|
-
schema.TypeRegistry.for(n0).registerError(TypeNotFoundException$, TypeNotFoundException);
|
|
2693
|
-
var TypeSummary$ = [3, n0, _TSyp,
|
|
2694
|
-
0,
|
|
2695
|
-
[_T, _TN, _DVI, _TA, _LU, _D, _PI, _OTN, _PVN, _LPV, _PIu, _PN, _IA],
|
|
2696
|
-
[0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2]
|
|
2697
|
-
];
|
|
2698
|
-
var TypeVersionSummary$ = [3, n0, _TVSy,
|
|
2699
|
-
0,
|
|
2700
|
-
[_T, _TN, _VI, _IDV, _A, _TCi, _D, _PVN],
|
|
2701
|
-
[0, 0, 0, 2, 0, 4, 0, 0]
|
|
2702
|
-
];
|
|
2703
|
-
var UpdateGeneratedTemplateInput$ = [3, n0, _UGTI,
|
|
2704
|
-
0,
|
|
2705
|
-
[_GTN, _NGTN, _AR, _RRem, _RAR, _TCe],
|
|
2706
|
-
[0, 0, () => ResourceDefinitions, 64 | 0, 2, () => TemplateConfiguration$], 1
|
|
2707
|
-
];
|
|
2708
|
-
var UpdateGeneratedTemplateOutput$ = [3, n0, _UGTO,
|
|
2709
|
-
0,
|
|
2710
|
-
[_GTI],
|
|
2711
|
-
[0]
|
|
2712
|
-
];
|
|
2713
|
-
var UpdateStackInput$ = [3, n0, _USI,
|
|
2714
|
-
0,
|
|
2715
|
-
[_SN, _TB, _TURL, _UPT, _SPDUB, _SPDUURL, _P, _Ca, _RTe, _RARN, _RCo, _SPB, _SPURL, _NARN, _Ta, _DR, _CRT, _REOC],
|
|
2716
|
-
[0, 0, 0, 2, 0, 0, () => _Parameters, 64 | 0, 64 | 0, 0, () => RollbackConfiguration$, 0, 0, 64 | 0, () => Tags, 2, 0, 2], 1
|
|
2717
|
-
];
|
|
2718
|
-
var UpdateStackInstancesInput$ = [3, n0, _USII,
|
|
2719
|
-
0,
|
|
2720
|
-
[_SSN, _Re, _Ac, _DT, _PO, _OP, _OI, _CA],
|
|
2721
|
-
[0, 64 | 0, 64 | 0, () => DeploymentTargets$, () => _Parameters, () => StackSetOperationPreferences$, [0, 4], 0], 2
|
|
2722
|
-
];
|
|
2723
|
-
var UpdateStackInstancesOutput$ = [3, n0, _USIO,
|
|
2724
|
-
0,
|
|
2725
|
-
[_OI],
|
|
2726
|
-
[0]
|
|
2727
|
-
];
|
|
2728
|
-
var UpdateStackOutput$ = [3, n0, _USO,
|
|
2729
|
-
0,
|
|
2730
|
-
[_SI, _OI],
|
|
2731
|
-
[0, 0]
|
|
2732
|
-
];
|
|
2733
|
-
var UpdateStackSetInput$ = [3, n0, _USSI,
|
|
2734
|
-
0,
|
|
2735
|
-
[_SSN, _D, _TB, _TURL, _UPT, _P, _Ca, _Ta, _OP, _ARARN, _ERN, _DT, _PM, _AD, _OI, _Ac, _Re, _CA, _ME],
|
|
2736
|
-
[0, 0, 0, 0, 2, () => _Parameters, 64 | 0, () => Tags, () => StackSetOperationPreferences$, 0, 0, () => DeploymentTargets$, 0, () => AutoDeployment$, [0, 4], 64 | 0, 64 | 0, 0, () => ManagedExecution$], 1
|
|
2737
|
-
];
|
|
2738
|
-
var UpdateStackSetOutput$ = [3, n0, _USSO,
|
|
2739
|
-
0,
|
|
2740
|
-
[_OI],
|
|
2741
|
-
[0]
|
|
2742
|
-
];
|
|
2743
|
-
var UpdateTerminationProtectionInput$ = [3, n0, _UTPI,
|
|
2744
|
-
0,
|
|
2745
|
-
[_ETP, _SN],
|
|
2746
|
-
[2, 0], 2
|
|
2747
|
-
];
|
|
2748
|
-
var UpdateTerminationProtectionOutput$ = [3, n0, _UTPO,
|
|
2749
|
-
0,
|
|
2750
|
-
[_SI],
|
|
2751
|
-
[0]
|
|
2752
|
-
];
|
|
2753
|
-
var ValidateTemplateInput$ = [3, n0, _VTI,
|
|
2754
|
-
0,
|
|
2755
|
-
[_TB, _TURL],
|
|
2756
|
-
[0, 0]
|
|
2757
|
-
];
|
|
2758
|
-
var ValidateTemplateOutput$ = [3, n0, _VTO,
|
|
2759
|
-
0,
|
|
2760
|
-
[_P, _D, _Ca, _CR, _DTe],
|
|
2761
|
-
[() => TemplateParameters, 0, 64 | 0, 0, 64 | 0]
|
|
2762
|
-
];
|
|
2763
|
-
var WarningDetail$ = [3, n0, _WD,
|
|
2764
|
-
0,
|
|
2765
|
-
[_T, _Pro],
|
|
2766
|
-
[0, () => WarningProperties]
|
|
2767
|
-
];
|
|
2768
|
-
var WarningProperty$ = [3, n0, _WP,
|
|
2769
|
-
0,
|
|
2770
|
-
[_PPr, _Req, _D],
|
|
2771
|
-
[0, 2, 0]
|
|
2772
|
-
];
|
|
2773
|
-
var Warnings$ = [3, n0, _W,
|
|
2774
|
-
0,
|
|
2775
|
-
[_URT],
|
|
2776
|
-
[64 | 0]
|
|
2777
|
-
];
|
|
2778
|
-
var __Unit = "unit";
|
|
2779
|
-
var CloudFormationServiceException$ = [-3, _s, "CloudFormationServiceException", 0, [], []];
|
|
2780
|
-
schema.TypeRegistry.for(_s).registerError(CloudFormationServiceException$, CloudFormationServiceException);
|
|
2781
|
-
var AccountLimitList = [1, n0, _ALL,
|
|
2782
|
-
0, () => AccountLimit$
|
|
2783
|
-
];
|
|
2784
|
-
var AnnotationList = [1, n0, _ALn,
|
|
2785
|
-
0, () => Annotation$
|
|
2786
|
-
];
|
|
2787
|
-
var BatchDescribeTypeConfigurationsErrors = [1, n0, _BDTCEa,
|
|
2788
|
-
0, () => BatchDescribeTypeConfigurationsError$
|
|
2789
|
-
];
|
|
2790
|
-
var Changes = [1, n0, _Ch,
|
|
2791
|
-
0, () => Change$
|
|
2792
|
-
];
|
|
2793
|
-
var ChangeSetHooks = [1, n0, _CSHh,
|
|
2794
|
-
0, () => ChangeSetHook$
|
|
2795
|
-
];
|
|
2796
|
-
var ChangeSetSummaries = [1, n0, _CSSh,
|
|
2797
|
-
0, () => ChangeSetSummary$
|
|
2798
|
-
];
|
|
2799
|
-
var Exports = [1, n0, _Exp,
|
|
2800
|
-
0, () => Export$
|
|
2801
|
-
];
|
|
2802
|
-
var HookResultSummaries = [1, n0, _HRSo,
|
|
2803
|
-
0, () => HookResultSummary$
|
|
2804
|
-
];
|
|
2805
|
-
var LastOperations = [1, n0, _LO,
|
|
2806
|
-
0, () => OperationEntry$
|
|
2807
|
-
];
|
|
2808
|
-
var OperationEvents = [1, n0, _OE,
|
|
2809
|
-
0, () => OperationEvent$
|
|
2810
|
-
];
|
|
2811
|
-
var OperationResultFilters = [1, n0, _ORFp,
|
|
2812
|
-
0, () => OperationResultFilter$
|
|
2813
|
-
];
|
|
2814
|
-
var Outputs = [1, n0, _Ou,
|
|
2815
|
-
0, () => Output$
|
|
2816
|
-
];
|
|
2817
|
-
var ParameterDeclarations = [1, n0, _PDa,
|
|
2818
|
-
0, () => ParameterDeclaration$
|
|
2819
|
-
];
|
|
2820
|
-
var _Parameters = [1, n0, _P,
|
|
2821
|
-
0, () => Parameter$
|
|
2822
|
-
];
|
|
2823
|
-
var PhysicalResourceIdContext = [1, n0, _PRIC,
|
|
2824
|
-
0, () => PhysicalResourceIdContextKeyValuePair$
|
|
2825
|
-
];
|
|
2826
|
-
var PropertyDifferences = [1, n0, _PDro,
|
|
2827
|
-
0, () => PropertyDifference$
|
|
2828
|
-
];
|
|
2829
|
-
var RelatedResources = [1, n0, _RRel,
|
|
2830
|
-
0, () => ScannedResource$
|
|
2831
|
-
];
|
|
2832
|
-
var RequiredActivatedTypes = [1, n0, _RAT,
|
|
2833
|
-
0, () => RequiredActivatedType$
|
|
2834
|
-
];
|
|
2835
|
-
var ResourceChangeDetails = [1, n0, _RCDe,
|
|
2836
|
-
0, () => ResourceChangeDetail$
|
|
2837
|
-
];
|
|
2838
|
-
var ResourceDefinitions = [1, n0, _RDes,
|
|
2839
|
-
0, () => ResourceDefinition$
|
|
2840
|
-
];
|
|
2841
|
-
var ResourceDetails = [1, n0, _RDeso,
|
|
2842
|
-
0, () => ResourceDetail$
|
|
2843
|
-
];
|
|
2844
|
-
var ResourceDriftIgnoredAttributes = [1, n0, _RDIA,
|
|
2845
|
-
0, () => ResourceDriftIgnoredAttribute$
|
|
2846
|
-
];
|
|
2847
|
-
var ResourceIdentifierSummaries = [1, n0, _RIS,
|
|
2848
|
-
0, () => ResourceIdentifierSummary$
|
|
2849
|
-
];
|
|
2850
|
-
var ResourceMappings = [1, n0, _RMe,
|
|
2851
|
-
0, () => ResourceMapping$
|
|
2852
|
-
];
|
|
2853
|
-
var ResourceScanSummaries = [1, n0, _RSS,
|
|
2854
|
-
0, () => ResourceScanSummary$
|
|
2855
|
-
];
|
|
2856
|
-
var ResourcesToImport = [1, n0, _RTI,
|
|
2857
|
-
0, () => ResourceToImport$
|
|
2858
|
-
];
|
|
2859
|
-
var RollbackTriggers = [1, n0, _RTo,
|
|
2860
|
-
0, () => RollbackTrigger$
|
|
2861
|
-
];
|
|
2862
|
-
var ScanFilters = [1, n0, _SF,
|
|
2863
|
-
0, () => ScanFilter$
|
|
2864
|
-
];
|
|
2865
|
-
var ScannedResourceIdentifiers = [1, n0, _SRIca,
|
|
2866
|
-
0, () => ScannedResourceIdentifier$
|
|
2867
|
-
];
|
|
2868
|
-
var ScannedResources = [1, n0, _SRca,
|
|
2869
|
-
0, () => ScannedResource$
|
|
2870
|
-
];
|
|
2871
|
-
var StackDefinitions = [1, n0, _SD,
|
|
2872
|
-
0, () => StackDefinition$
|
|
2873
|
-
];
|
|
2874
|
-
var StackEvents = [1, n0, _SE,
|
|
2875
|
-
0, () => StackEvent$
|
|
2876
|
-
];
|
|
2877
|
-
var StackInstanceFilters = [1, n0, _SIFt,
|
|
2878
|
-
0, () => StackInstanceFilter$
|
|
2879
|
-
];
|
|
2880
|
-
var StackInstanceResourceDriftsSummaries = [1, n0, _SIRDSta,
|
|
2881
|
-
0, () => StackInstanceResourceDriftsSummary$
|
|
2882
|
-
];
|
|
2883
|
-
var StackInstanceSummaries = [1, n0, _SISta,
|
|
2884
|
-
0, () => StackInstanceSummary$
|
|
2885
|
-
];
|
|
2886
|
-
var StackRefactorActions = [1, n0, _SRA,
|
|
2887
|
-
0, () => StackRefactorAction$
|
|
2888
|
-
];
|
|
2889
|
-
var StackRefactorSummaries = [1, n0, _SRS,
|
|
2890
|
-
0, () => StackRefactorSummary$
|
|
2891
|
-
];
|
|
2892
|
-
var StackRefactorTagResources = [1, n0, _SRTR,
|
|
2893
|
-
0, () => Tag$
|
|
2894
|
-
];
|
|
2895
|
-
var StackResourceDrifts = [1, n0, _SRD,
|
|
2896
|
-
0, () => StackResourceDrift$
|
|
2897
|
-
];
|
|
2898
|
-
var StackResources = [1, n0, _SRt,
|
|
2899
|
-
0, () => StackResource$
|
|
2900
|
-
];
|
|
2901
|
-
var StackResourceSummaries = [1, n0, _SRSt,
|
|
2902
|
-
0, () => StackResourceSummary$
|
|
2903
|
-
];
|
|
2904
|
-
var Stacks = [1, n0, _St,
|
|
2905
|
-
0, () => Stack$
|
|
2906
|
-
];
|
|
2907
|
-
var StackSetAutoDeploymentTargetSummaries = [1, n0, _SSADTSt,
|
|
2908
|
-
0, () => StackSetAutoDeploymentTargetSummary$
|
|
2909
|
-
];
|
|
2910
|
-
var StackSetOperationResultSummaries = [1, n0, _SSORSt,
|
|
2911
|
-
0, () => StackSetOperationResultSummary$
|
|
2912
|
-
];
|
|
2913
|
-
var StackSetOperationSummaries = [1, n0, _SSOSt,
|
|
2914
|
-
0, () => StackSetOperationSummary$
|
|
2915
|
-
];
|
|
2916
|
-
var StackSetSummaries = [1, n0, _SSSt,
|
|
2917
|
-
0, () => StackSetSummary$
|
|
2918
|
-
];
|
|
2919
|
-
var StackSummaries = [1, n0, _SSt,
|
|
2920
|
-
0, () => StackSummary$
|
|
2921
|
-
];
|
|
2922
|
-
var Tags = [1, n0, _Ta,
|
|
2923
|
-
0, () => Tag$
|
|
2924
|
-
];
|
|
2925
|
-
var TemplateParameters = [1, n0, _TPem,
|
|
2926
|
-
0, () => TemplateParameter$
|
|
2927
|
-
];
|
|
2928
|
-
var TemplateSummaries = [1, n0, _TSem,
|
|
2929
|
-
0, () => TemplateSummary$
|
|
2930
|
-
];
|
|
2931
|
-
var TypeConfigurationDetailsList = [1, n0, _TCDL,
|
|
2932
|
-
0, () => TypeConfigurationDetails$
|
|
2933
|
-
];
|
|
2934
|
-
var TypeConfigurationIdentifiers = [1, n0, _TCIy,
|
|
2935
|
-
0, () => TypeConfigurationIdentifier$
|
|
2936
|
-
];
|
|
2937
|
-
var TypeSummaries = [1, n0, _TSy,
|
|
2938
|
-
0, () => TypeSummary$
|
|
2939
|
-
];
|
|
2940
|
-
var TypeVersionSummaries = [1, n0, _TVS,
|
|
2941
|
-
0, () => TypeVersionSummary$
|
|
2942
|
-
];
|
|
2943
|
-
var UnprocessedTypeConfigurations = [1, n0, _UTC,
|
|
2944
|
-
0, () => TypeConfigurationIdentifier$
|
|
2945
|
-
];
|
|
2946
|
-
var WarningDetails = [1, n0, _WDa,
|
|
2947
|
-
0, () => WarningDetail$
|
|
2948
|
-
];
|
|
2949
|
-
var WarningProperties = [1, n0, _WPa,
|
|
2950
|
-
0, () => WarningProperty$
|
|
2951
|
-
];
|
|
2952
|
-
var ActivateOrganizationsAccess$ = [9, n0, _AOA,
|
|
2953
|
-
0, () => ActivateOrganizationsAccessInput$, () => ActivateOrganizationsAccessOutput$
|
|
2954
|
-
];
|
|
2955
|
-
var ActivateType$ = [9, n0, _AT,
|
|
2956
|
-
2, () => ActivateTypeInput$, () => ActivateTypeOutput$
|
|
2957
|
-
];
|
|
2958
|
-
var BatchDescribeTypeConfigurations$ = [9, n0, _BDTC,
|
|
2959
|
-
0, () => BatchDescribeTypeConfigurationsInput$, () => BatchDescribeTypeConfigurationsOutput$
|
|
2960
|
-
];
|
|
2961
|
-
var CancelUpdateStack$ = [9, n0, _CUS,
|
|
2962
|
-
0, () => CancelUpdateStackInput$, () => __Unit
|
|
2963
|
-
];
|
|
2964
|
-
var ContinueUpdateRollback$ = [9, n0, _CUR,
|
|
2965
|
-
0, () => ContinueUpdateRollbackInput$, () => ContinueUpdateRollbackOutput$
|
|
2966
|
-
];
|
|
2967
|
-
var CreateChangeSet$ = [9, n0, _CCS,
|
|
2968
|
-
0, () => CreateChangeSetInput$, () => CreateChangeSetOutput$
|
|
2969
|
-
];
|
|
2970
|
-
var CreateGeneratedTemplate$ = [9, n0, _CGT,
|
|
2971
|
-
0, () => CreateGeneratedTemplateInput$, () => CreateGeneratedTemplateOutput$
|
|
2972
|
-
];
|
|
2973
|
-
var CreateStack$ = [9, n0, _CSr,
|
|
2974
|
-
0, () => CreateStackInput$, () => CreateStackOutput$
|
|
2975
|
-
];
|
|
2976
|
-
var CreateStackInstances$ = [9, n0, _CSIre,
|
|
2977
|
-
0, () => CreateStackInstancesInput$, () => CreateStackInstancesOutput$
|
|
2978
|
-
];
|
|
2979
|
-
var CreateStackRefactor$ = [9, n0, _CSR,
|
|
2980
|
-
0, () => CreateStackRefactorInput$, () => CreateStackRefactorOutput$
|
|
2981
|
-
];
|
|
2982
|
-
var CreateStackSet$ = [9, n0, _CSSr,
|
|
2983
|
-
0, () => CreateStackSetInput$, () => CreateStackSetOutput$
|
|
2984
|
-
];
|
|
2985
|
-
var DeactivateOrganizationsAccess$ = [9, n0, _DOA,
|
|
2986
|
-
0, () => DeactivateOrganizationsAccessInput$, () => DeactivateOrganizationsAccessOutput$
|
|
2987
|
-
];
|
|
2988
|
-
var DeactivateType$ = [9, n0, _DTea,
|
|
2989
|
-
2, () => DeactivateTypeInput$, () => DeactivateTypeOutput$
|
|
2990
|
-
];
|
|
2991
|
-
var DeleteChangeSet$ = [9, n0, _DCS,
|
|
2992
|
-
0, () => DeleteChangeSetInput$, () => DeleteChangeSetOutput$
|
|
2993
|
-
];
|
|
2994
|
-
var DeleteGeneratedTemplate$ = [9, n0, _DGT,
|
|
2995
|
-
0, () => DeleteGeneratedTemplateInput$, () => __Unit
|
|
2996
|
-
];
|
|
2997
|
-
var DeleteStack$ = [9, n0, _DSel,
|
|
2998
|
-
0, () => DeleteStackInput$, () => __Unit
|
|
2999
|
-
];
|
|
3000
|
-
var DeleteStackInstances$ = [9, n0, _DSIel,
|
|
3001
|
-
0, () => DeleteStackInstancesInput$, () => DeleteStackInstancesOutput$
|
|
3002
|
-
];
|
|
3003
|
-
var DeleteStackSet$ = [9, n0, _DSS,
|
|
3004
|
-
0, () => DeleteStackSetInput$, () => DeleteStackSetOutput$
|
|
3005
|
-
];
|
|
3006
|
-
var DeregisterType$ = [9, n0, _DTer,
|
|
3007
|
-
2, () => DeregisterTypeInput$, () => DeregisterTypeOutput$
|
|
3008
|
-
];
|
|
3009
|
-
var DescribeAccountLimits$ = [9, n0, _DAL,
|
|
3010
|
-
0, () => DescribeAccountLimitsInput$, () => DescribeAccountLimitsOutput$
|
|
3011
|
-
];
|
|
3012
|
-
var DescribeChangeSet$ = [9, n0, _DCSe,
|
|
3013
|
-
0, () => DescribeChangeSetInput$, () => DescribeChangeSetOutput$
|
|
3014
|
-
];
|
|
3015
|
-
var DescribeChangeSetHooks$ = [9, n0, _DCSH,
|
|
3016
|
-
0, () => DescribeChangeSetHooksInput$, () => DescribeChangeSetHooksOutput$
|
|
3017
|
-
];
|
|
3018
|
-
var DescribeEvents$ = [9, n0, _DE,
|
|
3019
|
-
0, () => DescribeEventsInput$, () => DescribeEventsOutput$
|
|
3020
|
-
];
|
|
3021
|
-
var DescribeGeneratedTemplate$ = [9, n0, _DGTe,
|
|
3022
|
-
0, () => DescribeGeneratedTemplateInput$, () => DescribeGeneratedTemplateOutput$
|
|
3023
|
-
];
|
|
3024
|
-
var DescribeOrganizationsAccess$ = [9, n0, _DOAe,
|
|
3025
|
-
0, () => DescribeOrganizationsAccessInput$, () => DescribeOrganizationsAccessOutput$
|
|
3026
|
-
];
|
|
3027
|
-
var DescribePublisher$ = [9, n0, _DPe,
|
|
3028
|
-
2, () => DescribePublisherInput$, () => DescribePublisherOutput$
|
|
3029
|
-
];
|
|
3030
|
-
var DescribeResourceScan$ = [9, n0, _DRS,
|
|
3031
|
-
0, () => DescribeResourceScanInput$, () => DescribeResourceScanOutput$
|
|
3032
|
-
];
|
|
3033
|
-
var DescribeStackDriftDetectionStatus$ = [9, n0, _DSDDS,
|
|
3034
|
-
0, () => DescribeStackDriftDetectionStatusInput$, () => DescribeStackDriftDetectionStatusOutput$
|
|
3035
|
-
];
|
|
3036
|
-
var DescribeStackEvents$ = [9, n0, _DSE,
|
|
3037
|
-
0, () => DescribeStackEventsInput$, () => DescribeStackEventsOutput$
|
|
3038
|
-
];
|
|
3039
|
-
var DescribeStackInstance$ = [9, n0, _DSIes,
|
|
3040
|
-
0, () => DescribeStackInstanceInput$, () => DescribeStackInstanceOutput$
|
|
3041
|
-
];
|
|
3042
|
-
var DescribeStackRefactor$ = [9, n0, _DSRe,
|
|
3043
|
-
0, () => DescribeStackRefactorInput$, () => DescribeStackRefactorOutput$
|
|
3044
|
-
];
|
|
3045
|
-
var DescribeStackResource$ = [9, n0, _DSRes,
|
|
3046
|
-
0, () => DescribeStackResourceInput$, () => DescribeStackResourceOutput$
|
|
3047
|
-
];
|
|
3048
|
-
var DescribeStackResourceDrifts$ = [9, n0, _DSRD,
|
|
3049
|
-
0, () => DescribeStackResourceDriftsInput$, () => DescribeStackResourceDriftsOutput$
|
|
3050
|
-
];
|
|
3051
|
-
var DescribeStackResources$ = [9, n0, _DSResc,
|
|
3052
|
-
0, () => DescribeStackResourcesInput$, () => DescribeStackResourcesOutput$
|
|
3053
|
-
];
|
|
3054
|
-
var DescribeStacks$ = [9, n0, _DSes,
|
|
3055
|
-
0, () => DescribeStacksInput$, () => DescribeStacksOutput$
|
|
3056
|
-
];
|
|
3057
|
-
var DescribeStackSet$ = [9, n0, _DSSe,
|
|
3058
|
-
0, () => DescribeStackSetInput$, () => DescribeStackSetOutput$
|
|
3059
|
-
];
|
|
3060
|
-
var DescribeStackSetOperation$ = [9, n0, _DSSOes,
|
|
3061
|
-
0, () => DescribeStackSetOperationInput$, () => DescribeStackSetOperationOutput$
|
|
3062
|
-
];
|
|
3063
|
-
var DescribeType$ = [9, n0, _DTes,
|
|
3064
|
-
2, () => DescribeTypeInput$, () => DescribeTypeOutput$
|
|
3065
|
-
];
|
|
3066
|
-
var DescribeTypeRegistration$ = [9, n0, _DTR,
|
|
3067
|
-
2, () => DescribeTypeRegistrationInput$, () => DescribeTypeRegistrationOutput$
|
|
3068
|
-
];
|
|
3069
|
-
var DetectStackDrift$ = [9, n0, _DSD,
|
|
3070
|
-
0, () => DetectStackDriftInput$, () => DetectStackDriftOutput$
|
|
3071
|
-
];
|
|
3072
|
-
var DetectStackResourceDrift$ = [9, n0, _DSRDe,
|
|
3073
|
-
0, () => DetectStackResourceDriftInput$, () => DetectStackResourceDriftOutput$
|
|
3074
|
-
];
|
|
3075
|
-
var DetectStackSetDrift$ = [9, n0, _DSSD,
|
|
3076
|
-
0, () => DetectStackSetDriftInput$, () => DetectStackSetDriftOutput$
|
|
3077
|
-
];
|
|
3078
|
-
var EstimateTemplateCost$ = [9, n0, _ETC,
|
|
3079
|
-
0, () => EstimateTemplateCostInput$, () => EstimateTemplateCostOutput$
|
|
3080
|
-
];
|
|
3081
|
-
var ExecuteChangeSet$ = [9, n0, _ECS,
|
|
3082
|
-
0, () => ExecuteChangeSetInput$, () => ExecuteChangeSetOutput$
|
|
3083
|
-
];
|
|
3084
|
-
var ExecuteStackRefactor$ = [9, n0, _ESRx,
|
|
3085
|
-
0, () => ExecuteStackRefactorInput$, () => __Unit
|
|
3086
|
-
];
|
|
3087
|
-
var GetGeneratedTemplate$ = [9, n0, _GGT,
|
|
3088
|
-
0, () => GetGeneratedTemplateInput$, () => GetGeneratedTemplateOutput$
|
|
3089
|
-
];
|
|
3090
|
-
var GetHookResult$ = [9, n0, _GHR,
|
|
3091
|
-
0, () => GetHookResultInput$, () => GetHookResultOutput$
|
|
3092
|
-
];
|
|
3093
|
-
var GetStackPolicy$ = [9, n0, _GSP,
|
|
3094
|
-
0, () => GetStackPolicyInput$, () => GetStackPolicyOutput$
|
|
3095
|
-
];
|
|
3096
|
-
var GetTemplate$ = [9, n0, _GT,
|
|
3097
|
-
0, () => GetTemplateInput$, () => GetTemplateOutput$
|
|
3098
|
-
];
|
|
3099
|
-
var GetTemplateSummary$ = [9, n0, _GTS,
|
|
3100
|
-
0, () => GetTemplateSummaryInput$, () => GetTemplateSummaryOutput$
|
|
3101
|
-
];
|
|
3102
|
-
var ImportStacksToStackSet$ = [9, n0, _ISTSS,
|
|
3103
|
-
0, () => ImportStacksToStackSetInput$, () => ImportStacksToStackSetOutput$
|
|
3104
|
-
];
|
|
3105
|
-
var ListChangeSets$ = [9, n0, _LCS,
|
|
3106
|
-
0, () => ListChangeSetsInput$, () => ListChangeSetsOutput$
|
|
3107
|
-
];
|
|
3108
|
-
var ListExports$ = [9, n0, _LE,
|
|
3109
|
-
0, () => ListExportsInput$, () => ListExportsOutput$
|
|
3110
|
-
];
|
|
3111
|
-
var ListGeneratedTemplates$ = [9, n0, _LGT,
|
|
3112
|
-
0, () => ListGeneratedTemplatesInput$, () => ListGeneratedTemplatesOutput$
|
|
3113
|
-
];
|
|
3114
|
-
var ListHookResults$ = [9, n0, _LHR,
|
|
3115
|
-
0, () => ListHookResultsInput$, () => ListHookResultsOutput$
|
|
3116
|
-
];
|
|
3117
|
-
var ListImports$ = [9, n0, _LI,
|
|
3118
|
-
0, () => ListImportsInput$, () => ListImportsOutput$
|
|
3119
|
-
];
|
|
3120
|
-
var ListResourceScanRelatedResources$ = [9, n0, _LRSRR,
|
|
3121
|
-
0, () => ListResourceScanRelatedResourcesInput$, () => ListResourceScanRelatedResourcesOutput$
|
|
3122
|
-
];
|
|
3123
|
-
var ListResourceScanResources$ = [9, n0, _LRSR,
|
|
3124
|
-
0, () => ListResourceScanResourcesInput$, () => ListResourceScanResourcesOutput$
|
|
3125
|
-
];
|
|
3126
|
-
var ListResourceScans$ = [9, n0, _LRS,
|
|
3127
|
-
0, () => ListResourceScansInput$, () => ListResourceScansOutput$
|
|
3128
|
-
];
|
|
3129
|
-
var ListStackInstanceResourceDrifts$ = [9, n0, _LSIRD,
|
|
3130
|
-
0, () => ListStackInstanceResourceDriftsInput$, () => ListStackInstanceResourceDriftsOutput$
|
|
3131
|
-
];
|
|
3132
|
-
var ListStackInstances$ = [9, n0, _LSIi,
|
|
3133
|
-
0, () => ListStackInstancesInput$, () => ListStackInstancesOutput$
|
|
3134
|
-
];
|
|
3135
|
-
var ListStackRefactorActions$ = [9, n0, _LSRA,
|
|
3136
|
-
0, () => ListStackRefactorActionsInput$, () => ListStackRefactorActionsOutput$
|
|
3137
|
-
];
|
|
3138
|
-
var ListStackRefactors$ = [9, n0, _LSR,
|
|
3139
|
-
0, () => ListStackRefactorsInput$, () => ListStackRefactorsOutput$
|
|
3140
|
-
];
|
|
3141
|
-
var ListStackResources$ = [9, n0, _LSRi,
|
|
3142
|
-
0, () => ListStackResourcesInput$, () => ListStackResourcesOutput$
|
|
3143
|
-
];
|
|
3144
|
-
var ListStacks$ = [9, n0, _LS,
|
|
3145
|
-
0, () => ListStacksInput$, () => ListStacksOutput$
|
|
3146
|
-
];
|
|
3147
|
-
var ListStackSetAutoDeploymentTargets$ = [9, n0, _LSSADT,
|
|
3148
|
-
0, () => ListStackSetAutoDeploymentTargetsInput$, () => ListStackSetAutoDeploymentTargetsOutput$
|
|
3149
|
-
];
|
|
3150
|
-
var ListStackSetOperationResults$ = [9, n0, _LSSOR,
|
|
3151
|
-
0, () => ListStackSetOperationResultsInput$, () => ListStackSetOperationResultsOutput$
|
|
3152
|
-
];
|
|
3153
|
-
var ListStackSetOperations$ = [9, n0, _LSSOi,
|
|
3154
|
-
0, () => ListStackSetOperationsInput$, () => ListStackSetOperationsOutput$
|
|
3155
|
-
];
|
|
3156
|
-
var ListStackSets$ = [9, n0, _LSS,
|
|
3157
|
-
0, () => ListStackSetsInput$, () => ListStackSetsOutput$
|
|
3158
|
-
];
|
|
3159
|
-
var ListTypeRegistrations$ = [9, n0, _LTR,
|
|
3160
|
-
2, () => ListTypeRegistrationsInput$, () => ListTypeRegistrationsOutput$
|
|
3161
|
-
];
|
|
3162
|
-
var ListTypes$ = [9, n0, _LT,
|
|
3163
|
-
2, () => ListTypesInput$, () => ListTypesOutput$
|
|
3164
|
-
];
|
|
3165
|
-
var ListTypeVersions$ = [9, n0, _LTV,
|
|
3166
|
-
2, () => ListTypeVersionsInput$, () => ListTypeVersionsOutput$
|
|
3167
|
-
];
|
|
3168
|
-
var PublishType$ = [9, n0, _PTu,
|
|
3169
|
-
2, () => PublishTypeInput$, () => PublishTypeOutput$
|
|
3170
|
-
];
|
|
3171
|
-
var RecordHandlerProgress$ = [9, n0, _RHP,
|
|
3172
|
-
2, () => RecordHandlerProgressInput$, () => RecordHandlerProgressOutput$
|
|
3173
|
-
];
|
|
3174
|
-
var RegisterPublisher$ = [9, n0, _RPeg,
|
|
3175
|
-
2, () => RegisterPublisherInput$, () => RegisterPublisherOutput$
|
|
3176
|
-
];
|
|
3177
|
-
var RegisterType$ = [9, n0, _RTegi,
|
|
3178
|
-
2, () => RegisterTypeInput$, () => RegisterTypeOutput$
|
|
3179
|
-
];
|
|
3180
|
-
var RollbackStack$ = [9, n0, _RSo,
|
|
3181
|
-
0, () => RollbackStackInput$, () => RollbackStackOutput$
|
|
3182
|
-
];
|
|
3183
|
-
var SetStackPolicy$ = [9, n0, _SSP,
|
|
3184
|
-
0, () => SetStackPolicyInput$, () => __Unit
|
|
3185
|
-
];
|
|
3186
|
-
var SetTypeConfiguration$ = [9, n0, _STC,
|
|
3187
|
-
0, () => SetTypeConfigurationInput$, () => SetTypeConfigurationOutput$
|
|
3188
|
-
];
|
|
3189
|
-
var SetTypeDefaultVersion$ = [9, n0, _STDV,
|
|
3190
|
-
2, () => SetTypeDefaultVersionInput$, () => SetTypeDefaultVersionOutput$
|
|
3191
|
-
];
|
|
3192
|
-
var SignalResource$ = [9, n0, _SRi,
|
|
3193
|
-
0, () => SignalResourceInput$, () => __Unit
|
|
3194
|
-
];
|
|
3195
|
-
var StartResourceScan$ = [9, n0, _SRStar,
|
|
3196
|
-
0, () => StartResourceScanInput$, () => StartResourceScanOutput$
|
|
3197
|
-
];
|
|
3198
|
-
var StopStackSetOperation$ = [9, n0, _SSSO,
|
|
3199
|
-
0, () => StopStackSetOperationInput$, () => StopStackSetOperationOutput$
|
|
3200
|
-
];
|
|
3201
|
-
var TestType$ = [9, n0, _TTe,
|
|
3202
|
-
2, () => TestTypeInput$, () => TestTypeOutput$
|
|
3203
|
-
];
|
|
3204
|
-
var UpdateGeneratedTemplate$ = [9, n0, _UGT,
|
|
3205
|
-
0, () => UpdateGeneratedTemplateInput$, () => UpdateGeneratedTemplateOutput$
|
|
3206
|
-
];
|
|
3207
|
-
var UpdateStack$ = [9, n0, _US,
|
|
3208
|
-
0, () => UpdateStackInput$, () => UpdateStackOutput$
|
|
3209
|
-
];
|
|
3210
|
-
var UpdateStackInstances$ = [9, n0, _USIp,
|
|
3211
|
-
0, () => UpdateStackInstancesInput$, () => UpdateStackInstancesOutput$
|
|
3212
|
-
];
|
|
3213
|
-
var UpdateStackSet$ = [9, n0, _USS,
|
|
3214
|
-
0, () => UpdateStackSetInput$, () => UpdateStackSetOutput$
|
|
3215
|
-
];
|
|
3216
|
-
var UpdateTerminationProtection$ = [9, n0, _UTP,
|
|
3217
|
-
0, () => UpdateTerminationProtectionInput$, () => UpdateTerminationProtectionOutput$
|
|
3218
|
-
];
|
|
3219
|
-
var ValidateTemplate$ = [9, n0, _VT,
|
|
3220
|
-
0, () => ValidateTemplateInput$, () => ValidateTemplateOutput$
|
|
3221
|
-
];
|
|
3222
|
-
|
|
3223
117
|
class ActivateOrganizationsAccessCommand extends smithyClient.Command
|
|
3224
118
|
.classBuilder()
|
|
3225
119
|
.ep(commonParams)
|
|
@@ -3228,7 +122,7 @@ class ActivateOrganizationsAccessCommand extends smithyClient.Command
|
|
|
3228
122
|
})
|
|
3229
123
|
.s("CloudFormation", "ActivateOrganizationsAccess", {})
|
|
3230
124
|
.n("CloudFormationClient", "ActivateOrganizationsAccessCommand")
|
|
3231
|
-
.sc(ActivateOrganizationsAccess$)
|
|
125
|
+
.sc(schemas_0.ActivateOrganizationsAccess$)
|
|
3232
126
|
.build() {
|
|
3233
127
|
}
|
|
3234
128
|
|
|
@@ -3240,7 +134,7 @@ class ActivateTypeCommand extends smithyClient.Command
|
|
|
3240
134
|
})
|
|
3241
135
|
.s("CloudFormation", "ActivateType", {})
|
|
3242
136
|
.n("CloudFormationClient", "ActivateTypeCommand")
|
|
3243
|
-
.sc(ActivateType$)
|
|
137
|
+
.sc(schemas_0.ActivateType$)
|
|
3244
138
|
.build() {
|
|
3245
139
|
}
|
|
3246
140
|
|
|
@@ -3252,7 +146,7 @@ class BatchDescribeTypeConfigurationsCommand extends smithyClient.Command
|
|
|
3252
146
|
})
|
|
3253
147
|
.s("CloudFormation", "BatchDescribeTypeConfigurations", {})
|
|
3254
148
|
.n("CloudFormationClient", "BatchDescribeTypeConfigurationsCommand")
|
|
3255
|
-
.sc(BatchDescribeTypeConfigurations$)
|
|
149
|
+
.sc(schemas_0.BatchDescribeTypeConfigurations$)
|
|
3256
150
|
.build() {
|
|
3257
151
|
}
|
|
3258
152
|
|
|
@@ -3264,7 +158,7 @@ class CancelUpdateStackCommand extends smithyClient.Command
|
|
|
3264
158
|
})
|
|
3265
159
|
.s("CloudFormation", "CancelUpdateStack", {})
|
|
3266
160
|
.n("CloudFormationClient", "CancelUpdateStackCommand")
|
|
3267
|
-
.sc(CancelUpdateStack$)
|
|
161
|
+
.sc(schemas_0.CancelUpdateStack$)
|
|
3268
162
|
.build() {
|
|
3269
163
|
}
|
|
3270
164
|
|
|
@@ -3276,7 +170,7 @@ class ContinueUpdateRollbackCommand extends smithyClient.Command
|
|
|
3276
170
|
})
|
|
3277
171
|
.s("CloudFormation", "ContinueUpdateRollback", {})
|
|
3278
172
|
.n("CloudFormationClient", "ContinueUpdateRollbackCommand")
|
|
3279
|
-
.sc(ContinueUpdateRollback$)
|
|
173
|
+
.sc(schemas_0.ContinueUpdateRollback$)
|
|
3280
174
|
.build() {
|
|
3281
175
|
}
|
|
3282
176
|
|
|
@@ -3288,7 +182,7 @@ class CreateChangeSetCommand extends smithyClient.Command
|
|
|
3288
182
|
})
|
|
3289
183
|
.s("CloudFormation", "CreateChangeSet", {})
|
|
3290
184
|
.n("CloudFormationClient", "CreateChangeSetCommand")
|
|
3291
|
-
.sc(CreateChangeSet$)
|
|
185
|
+
.sc(schemas_0.CreateChangeSet$)
|
|
3292
186
|
.build() {
|
|
3293
187
|
}
|
|
3294
188
|
|
|
@@ -3300,7 +194,7 @@ class CreateGeneratedTemplateCommand extends smithyClient.Command
|
|
|
3300
194
|
})
|
|
3301
195
|
.s("CloudFormation", "CreateGeneratedTemplate", {})
|
|
3302
196
|
.n("CloudFormationClient", "CreateGeneratedTemplateCommand")
|
|
3303
|
-
.sc(CreateGeneratedTemplate$)
|
|
197
|
+
.sc(schemas_0.CreateGeneratedTemplate$)
|
|
3304
198
|
.build() {
|
|
3305
199
|
}
|
|
3306
200
|
|
|
@@ -3312,7 +206,7 @@ class CreateStackCommand extends smithyClient.Command
|
|
|
3312
206
|
})
|
|
3313
207
|
.s("CloudFormation", "CreateStack", {})
|
|
3314
208
|
.n("CloudFormationClient", "CreateStackCommand")
|
|
3315
|
-
.sc(CreateStack$)
|
|
209
|
+
.sc(schemas_0.CreateStack$)
|
|
3316
210
|
.build() {
|
|
3317
211
|
}
|
|
3318
212
|
|
|
@@ -3324,7 +218,7 @@ class CreateStackInstancesCommand extends smithyClient.Command
|
|
|
3324
218
|
})
|
|
3325
219
|
.s("CloudFormation", "CreateStackInstances", {})
|
|
3326
220
|
.n("CloudFormationClient", "CreateStackInstancesCommand")
|
|
3327
|
-
.sc(CreateStackInstances$)
|
|
221
|
+
.sc(schemas_0.CreateStackInstances$)
|
|
3328
222
|
.build() {
|
|
3329
223
|
}
|
|
3330
224
|
|
|
@@ -3336,7 +230,7 @@ class CreateStackRefactorCommand extends smithyClient.Command
|
|
|
3336
230
|
})
|
|
3337
231
|
.s("CloudFormation", "CreateStackRefactor", {})
|
|
3338
232
|
.n("CloudFormationClient", "CreateStackRefactorCommand")
|
|
3339
|
-
.sc(CreateStackRefactor$)
|
|
233
|
+
.sc(schemas_0.CreateStackRefactor$)
|
|
3340
234
|
.build() {
|
|
3341
235
|
}
|
|
3342
236
|
|
|
@@ -3348,7 +242,7 @@ class CreateStackSetCommand extends smithyClient.Command
|
|
|
3348
242
|
})
|
|
3349
243
|
.s("CloudFormation", "CreateStackSet", {})
|
|
3350
244
|
.n("CloudFormationClient", "CreateStackSetCommand")
|
|
3351
|
-
.sc(CreateStackSet$)
|
|
245
|
+
.sc(schemas_0.CreateStackSet$)
|
|
3352
246
|
.build() {
|
|
3353
247
|
}
|
|
3354
248
|
|
|
@@ -3360,7 +254,7 @@ class DeactivateOrganizationsAccessCommand extends smithyClient.Command
|
|
|
3360
254
|
})
|
|
3361
255
|
.s("CloudFormation", "DeactivateOrganizationsAccess", {})
|
|
3362
256
|
.n("CloudFormationClient", "DeactivateOrganizationsAccessCommand")
|
|
3363
|
-
.sc(DeactivateOrganizationsAccess$)
|
|
257
|
+
.sc(schemas_0.DeactivateOrganizationsAccess$)
|
|
3364
258
|
.build() {
|
|
3365
259
|
}
|
|
3366
260
|
|
|
@@ -3372,7 +266,7 @@ class DeactivateTypeCommand extends smithyClient.Command
|
|
|
3372
266
|
})
|
|
3373
267
|
.s("CloudFormation", "DeactivateType", {})
|
|
3374
268
|
.n("CloudFormationClient", "DeactivateTypeCommand")
|
|
3375
|
-
.sc(DeactivateType$)
|
|
269
|
+
.sc(schemas_0.DeactivateType$)
|
|
3376
270
|
.build() {
|
|
3377
271
|
}
|
|
3378
272
|
|
|
@@ -3384,7 +278,7 @@ class DeleteChangeSetCommand extends smithyClient.Command
|
|
|
3384
278
|
})
|
|
3385
279
|
.s("CloudFormation", "DeleteChangeSet", {})
|
|
3386
280
|
.n("CloudFormationClient", "DeleteChangeSetCommand")
|
|
3387
|
-
.sc(DeleteChangeSet$)
|
|
281
|
+
.sc(schemas_0.DeleteChangeSet$)
|
|
3388
282
|
.build() {
|
|
3389
283
|
}
|
|
3390
284
|
|
|
@@ -3396,7 +290,7 @@ class DeleteGeneratedTemplateCommand extends smithyClient.Command
|
|
|
3396
290
|
})
|
|
3397
291
|
.s("CloudFormation", "DeleteGeneratedTemplate", {})
|
|
3398
292
|
.n("CloudFormationClient", "DeleteGeneratedTemplateCommand")
|
|
3399
|
-
.sc(DeleteGeneratedTemplate$)
|
|
293
|
+
.sc(schemas_0.DeleteGeneratedTemplate$)
|
|
3400
294
|
.build() {
|
|
3401
295
|
}
|
|
3402
296
|
|
|
@@ -3408,7 +302,7 @@ class DeleteStackCommand extends smithyClient.Command
|
|
|
3408
302
|
})
|
|
3409
303
|
.s("CloudFormation", "DeleteStack", {})
|
|
3410
304
|
.n("CloudFormationClient", "DeleteStackCommand")
|
|
3411
|
-
.sc(DeleteStack$)
|
|
305
|
+
.sc(schemas_0.DeleteStack$)
|
|
3412
306
|
.build() {
|
|
3413
307
|
}
|
|
3414
308
|
|
|
@@ -3420,7 +314,7 @@ class DeleteStackInstancesCommand extends smithyClient.Command
|
|
|
3420
314
|
})
|
|
3421
315
|
.s("CloudFormation", "DeleteStackInstances", {})
|
|
3422
316
|
.n("CloudFormationClient", "DeleteStackInstancesCommand")
|
|
3423
|
-
.sc(DeleteStackInstances$)
|
|
317
|
+
.sc(schemas_0.DeleteStackInstances$)
|
|
3424
318
|
.build() {
|
|
3425
319
|
}
|
|
3426
320
|
|
|
@@ -3432,7 +326,7 @@ class DeleteStackSetCommand extends smithyClient.Command
|
|
|
3432
326
|
})
|
|
3433
327
|
.s("CloudFormation", "DeleteStackSet", {})
|
|
3434
328
|
.n("CloudFormationClient", "DeleteStackSetCommand")
|
|
3435
|
-
.sc(DeleteStackSet$)
|
|
329
|
+
.sc(schemas_0.DeleteStackSet$)
|
|
3436
330
|
.build() {
|
|
3437
331
|
}
|
|
3438
332
|
|
|
@@ -3444,7 +338,7 @@ class DeregisterTypeCommand extends smithyClient.Command
|
|
|
3444
338
|
})
|
|
3445
339
|
.s("CloudFormation", "DeregisterType", {})
|
|
3446
340
|
.n("CloudFormationClient", "DeregisterTypeCommand")
|
|
3447
|
-
.sc(DeregisterType$)
|
|
341
|
+
.sc(schemas_0.DeregisterType$)
|
|
3448
342
|
.build() {
|
|
3449
343
|
}
|
|
3450
344
|
|
|
@@ -3456,7 +350,7 @@ class DescribeAccountLimitsCommand extends smithyClient.Command
|
|
|
3456
350
|
})
|
|
3457
351
|
.s("CloudFormation", "DescribeAccountLimits", {})
|
|
3458
352
|
.n("CloudFormationClient", "DescribeAccountLimitsCommand")
|
|
3459
|
-
.sc(DescribeAccountLimits$)
|
|
353
|
+
.sc(schemas_0.DescribeAccountLimits$)
|
|
3460
354
|
.build() {
|
|
3461
355
|
}
|
|
3462
356
|
|
|
@@ -3468,7 +362,7 @@ class DescribeChangeSetCommand extends smithyClient.Command
|
|
|
3468
362
|
})
|
|
3469
363
|
.s("CloudFormation", "DescribeChangeSet", {})
|
|
3470
364
|
.n("CloudFormationClient", "DescribeChangeSetCommand")
|
|
3471
|
-
.sc(DescribeChangeSet$)
|
|
365
|
+
.sc(schemas_0.DescribeChangeSet$)
|
|
3472
366
|
.build() {
|
|
3473
367
|
}
|
|
3474
368
|
|
|
@@ -3480,7 +374,7 @@ class DescribeChangeSetHooksCommand extends smithyClient.Command
|
|
|
3480
374
|
})
|
|
3481
375
|
.s("CloudFormation", "DescribeChangeSetHooks", {})
|
|
3482
376
|
.n("CloudFormationClient", "DescribeChangeSetHooksCommand")
|
|
3483
|
-
.sc(DescribeChangeSetHooks$)
|
|
377
|
+
.sc(schemas_0.DescribeChangeSetHooks$)
|
|
3484
378
|
.build() {
|
|
3485
379
|
}
|
|
3486
380
|
|
|
@@ -3492,7 +386,7 @@ class DescribeEventsCommand extends smithyClient.Command
|
|
|
3492
386
|
})
|
|
3493
387
|
.s("CloudFormation", "DescribeEvents", {})
|
|
3494
388
|
.n("CloudFormationClient", "DescribeEventsCommand")
|
|
3495
|
-
.sc(DescribeEvents$)
|
|
389
|
+
.sc(schemas_0.DescribeEvents$)
|
|
3496
390
|
.build() {
|
|
3497
391
|
}
|
|
3498
392
|
|
|
@@ -3504,7 +398,7 @@ class DescribeGeneratedTemplateCommand extends smithyClient.Command
|
|
|
3504
398
|
})
|
|
3505
399
|
.s("CloudFormation", "DescribeGeneratedTemplate", {})
|
|
3506
400
|
.n("CloudFormationClient", "DescribeGeneratedTemplateCommand")
|
|
3507
|
-
.sc(DescribeGeneratedTemplate$)
|
|
401
|
+
.sc(schemas_0.DescribeGeneratedTemplate$)
|
|
3508
402
|
.build() {
|
|
3509
403
|
}
|
|
3510
404
|
|
|
@@ -3516,7 +410,7 @@ class DescribeOrganizationsAccessCommand extends smithyClient.Command
|
|
|
3516
410
|
})
|
|
3517
411
|
.s("CloudFormation", "DescribeOrganizationsAccess", {})
|
|
3518
412
|
.n("CloudFormationClient", "DescribeOrganizationsAccessCommand")
|
|
3519
|
-
.sc(DescribeOrganizationsAccess$)
|
|
413
|
+
.sc(schemas_0.DescribeOrganizationsAccess$)
|
|
3520
414
|
.build() {
|
|
3521
415
|
}
|
|
3522
416
|
|
|
@@ -3528,7 +422,7 @@ class DescribePublisherCommand extends smithyClient.Command
|
|
|
3528
422
|
})
|
|
3529
423
|
.s("CloudFormation", "DescribePublisher", {})
|
|
3530
424
|
.n("CloudFormationClient", "DescribePublisherCommand")
|
|
3531
|
-
.sc(DescribePublisher$)
|
|
425
|
+
.sc(schemas_0.DescribePublisher$)
|
|
3532
426
|
.build() {
|
|
3533
427
|
}
|
|
3534
428
|
|
|
@@ -3540,7 +434,7 @@ class DescribeResourceScanCommand extends smithyClient.Command
|
|
|
3540
434
|
})
|
|
3541
435
|
.s("CloudFormation", "DescribeResourceScan", {})
|
|
3542
436
|
.n("CloudFormationClient", "DescribeResourceScanCommand")
|
|
3543
|
-
.sc(DescribeResourceScan$)
|
|
437
|
+
.sc(schemas_0.DescribeResourceScan$)
|
|
3544
438
|
.build() {
|
|
3545
439
|
}
|
|
3546
440
|
|
|
@@ -3552,7 +446,7 @@ class DescribeStackDriftDetectionStatusCommand extends smithyClient.Command
|
|
|
3552
446
|
})
|
|
3553
447
|
.s("CloudFormation", "DescribeStackDriftDetectionStatus", {})
|
|
3554
448
|
.n("CloudFormationClient", "DescribeStackDriftDetectionStatusCommand")
|
|
3555
|
-
.sc(DescribeStackDriftDetectionStatus$)
|
|
449
|
+
.sc(schemas_0.DescribeStackDriftDetectionStatus$)
|
|
3556
450
|
.build() {
|
|
3557
451
|
}
|
|
3558
452
|
|
|
@@ -3564,7 +458,7 @@ class DescribeStackEventsCommand extends smithyClient.Command
|
|
|
3564
458
|
})
|
|
3565
459
|
.s("CloudFormation", "DescribeStackEvents", {})
|
|
3566
460
|
.n("CloudFormationClient", "DescribeStackEventsCommand")
|
|
3567
|
-
.sc(DescribeStackEvents$)
|
|
461
|
+
.sc(schemas_0.DescribeStackEvents$)
|
|
3568
462
|
.build() {
|
|
3569
463
|
}
|
|
3570
464
|
|
|
@@ -3576,7 +470,7 @@ class DescribeStackInstanceCommand extends smithyClient.Command
|
|
|
3576
470
|
})
|
|
3577
471
|
.s("CloudFormation", "DescribeStackInstance", {})
|
|
3578
472
|
.n("CloudFormationClient", "DescribeStackInstanceCommand")
|
|
3579
|
-
.sc(DescribeStackInstance$)
|
|
473
|
+
.sc(schemas_0.DescribeStackInstance$)
|
|
3580
474
|
.build() {
|
|
3581
475
|
}
|
|
3582
476
|
|
|
@@ -3588,7 +482,7 @@ class DescribeStackRefactorCommand extends smithyClient.Command
|
|
|
3588
482
|
})
|
|
3589
483
|
.s("CloudFormation", "DescribeStackRefactor", {})
|
|
3590
484
|
.n("CloudFormationClient", "DescribeStackRefactorCommand")
|
|
3591
|
-
.sc(DescribeStackRefactor$)
|
|
485
|
+
.sc(schemas_0.DescribeStackRefactor$)
|
|
3592
486
|
.build() {
|
|
3593
487
|
}
|
|
3594
488
|
|
|
@@ -3600,7 +494,7 @@ class DescribeStackResourceCommand extends smithyClient.Command
|
|
|
3600
494
|
})
|
|
3601
495
|
.s("CloudFormation", "DescribeStackResource", {})
|
|
3602
496
|
.n("CloudFormationClient", "DescribeStackResourceCommand")
|
|
3603
|
-
.sc(DescribeStackResource$)
|
|
497
|
+
.sc(schemas_0.DescribeStackResource$)
|
|
3604
498
|
.build() {
|
|
3605
499
|
}
|
|
3606
500
|
|
|
@@ -3612,7 +506,7 @@ class DescribeStackResourceDriftsCommand extends smithyClient.Command
|
|
|
3612
506
|
})
|
|
3613
507
|
.s("CloudFormation", "DescribeStackResourceDrifts", {})
|
|
3614
508
|
.n("CloudFormationClient", "DescribeStackResourceDriftsCommand")
|
|
3615
|
-
.sc(DescribeStackResourceDrifts$)
|
|
509
|
+
.sc(schemas_0.DescribeStackResourceDrifts$)
|
|
3616
510
|
.build() {
|
|
3617
511
|
}
|
|
3618
512
|
|
|
@@ -3624,7 +518,7 @@ class DescribeStackResourcesCommand extends smithyClient.Command
|
|
|
3624
518
|
})
|
|
3625
519
|
.s("CloudFormation", "DescribeStackResources", {})
|
|
3626
520
|
.n("CloudFormationClient", "DescribeStackResourcesCommand")
|
|
3627
|
-
.sc(DescribeStackResources$)
|
|
521
|
+
.sc(schemas_0.DescribeStackResources$)
|
|
3628
522
|
.build() {
|
|
3629
523
|
}
|
|
3630
524
|
|
|
@@ -3636,7 +530,7 @@ class DescribeStacksCommand extends smithyClient.Command
|
|
|
3636
530
|
})
|
|
3637
531
|
.s("CloudFormation", "DescribeStacks", {})
|
|
3638
532
|
.n("CloudFormationClient", "DescribeStacksCommand")
|
|
3639
|
-
.sc(DescribeStacks$)
|
|
533
|
+
.sc(schemas_0.DescribeStacks$)
|
|
3640
534
|
.build() {
|
|
3641
535
|
}
|
|
3642
536
|
|
|
@@ -3648,7 +542,7 @@ class DescribeStackSetCommand extends smithyClient.Command
|
|
|
3648
542
|
})
|
|
3649
543
|
.s("CloudFormation", "DescribeStackSet", {})
|
|
3650
544
|
.n("CloudFormationClient", "DescribeStackSetCommand")
|
|
3651
|
-
.sc(DescribeStackSet$)
|
|
545
|
+
.sc(schemas_0.DescribeStackSet$)
|
|
3652
546
|
.build() {
|
|
3653
547
|
}
|
|
3654
548
|
|
|
@@ -3660,7 +554,7 @@ class DescribeStackSetOperationCommand extends smithyClient.Command
|
|
|
3660
554
|
})
|
|
3661
555
|
.s("CloudFormation", "DescribeStackSetOperation", {})
|
|
3662
556
|
.n("CloudFormationClient", "DescribeStackSetOperationCommand")
|
|
3663
|
-
.sc(DescribeStackSetOperation$)
|
|
557
|
+
.sc(schemas_0.DescribeStackSetOperation$)
|
|
3664
558
|
.build() {
|
|
3665
559
|
}
|
|
3666
560
|
|
|
@@ -3672,7 +566,7 @@ class DescribeTypeCommand extends smithyClient.Command
|
|
|
3672
566
|
})
|
|
3673
567
|
.s("CloudFormation", "DescribeType", {})
|
|
3674
568
|
.n("CloudFormationClient", "DescribeTypeCommand")
|
|
3675
|
-
.sc(DescribeType$)
|
|
569
|
+
.sc(schemas_0.DescribeType$)
|
|
3676
570
|
.build() {
|
|
3677
571
|
}
|
|
3678
572
|
|
|
@@ -3684,7 +578,7 @@ class DescribeTypeRegistrationCommand extends smithyClient.Command
|
|
|
3684
578
|
})
|
|
3685
579
|
.s("CloudFormation", "DescribeTypeRegistration", {})
|
|
3686
580
|
.n("CloudFormationClient", "DescribeTypeRegistrationCommand")
|
|
3687
|
-
.sc(DescribeTypeRegistration$)
|
|
581
|
+
.sc(schemas_0.DescribeTypeRegistration$)
|
|
3688
582
|
.build() {
|
|
3689
583
|
}
|
|
3690
584
|
|
|
@@ -3696,7 +590,7 @@ class DetectStackDriftCommand extends smithyClient.Command
|
|
|
3696
590
|
})
|
|
3697
591
|
.s("CloudFormation", "DetectStackDrift", {})
|
|
3698
592
|
.n("CloudFormationClient", "DetectStackDriftCommand")
|
|
3699
|
-
.sc(DetectStackDrift$)
|
|
593
|
+
.sc(schemas_0.DetectStackDrift$)
|
|
3700
594
|
.build() {
|
|
3701
595
|
}
|
|
3702
596
|
|
|
@@ -3708,7 +602,7 @@ class DetectStackResourceDriftCommand extends smithyClient.Command
|
|
|
3708
602
|
})
|
|
3709
603
|
.s("CloudFormation", "DetectStackResourceDrift", {})
|
|
3710
604
|
.n("CloudFormationClient", "DetectStackResourceDriftCommand")
|
|
3711
|
-
.sc(DetectStackResourceDrift$)
|
|
605
|
+
.sc(schemas_0.DetectStackResourceDrift$)
|
|
3712
606
|
.build() {
|
|
3713
607
|
}
|
|
3714
608
|
|
|
@@ -3720,7 +614,7 @@ class DetectStackSetDriftCommand extends smithyClient.Command
|
|
|
3720
614
|
})
|
|
3721
615
|
.s("CloudFormation", "DetectStackSetDrift", {})
|
|
3722
616
|
.n("CloudFormationClient", "DetectStackSetDriftCommand")
|
|
3723
|
-
.sc(DetectStackSetDrift$)
|
|
617
|
+
.sc(schemas_0.DetectStackSetDrift$)
|
|
3724
618
|
.build() {
|
|
3725
619
|
}
|
|
3726
620
|
|
|
@@ -3732,7 +626,7 @@ class EstimateTemplateCostCommand extends smithyClient.Command
|
|
|
3732
626
|
})
|
|
3733
627
|
.s("CloudFormation", "EstimateTemplateCost", {})
|
|
3734
628
|
.n("CloudFormationClient", "EstimateTemplateCostCommand")
|
|
3735
|
-
.sc(EstimateTemplateCost$)
|
|
629
|
+
.sc(schemas_0.EstimateTemplateCost$)
|
|
3736
630
|
.build() {
|
|
3737
631
|
}
|
|
3738
632
|
|
|
@@ -3744,7 +638,7 @@ class ExecuteChangeSetCommand extends smithyClient.Command
|
|
|
3744
638
|
})
|
|
3745
639
|
.s("CloudFormation", "ExecuteChangeSet", {})
|
|
3746
640
|
.n("CloudFormationClient", "ExecuteChangeSetCommand")
|
|
3747
|
-
.sc(ExecuteChangeSet$)
|
|
641
|
+
.sc(schemas_0.ExecuteChangeSet$)
|
|
3748
642
|
.build() {
|
|
3749
643
|
}
|
|
3750
644
|
|
|
@@ -3756,7 +650,7 @@ class ExecuteStackRefactorCommand extends smithyClient.Command
|
|
|
3756
650
|
})
|
|
3757
651
|
.s("CloudFormation", "ExecuteStackRefactor", {})
|
|
3758
652
|
.n("CloudFormationClient", "ExecuteStackRefactorCommand")
|
|
3759
|
-
.sc(ExecuteStackRefactor$)
|
|
653
|
+
.sc(schemas_0.ExecuteStackRefactor$)
|
|
3760
654
|
.build() {
|
|
3761
655
|
}
|
|
3762
656
|
|
|
@@ -3768,7 +662,7 @@ class GetGeneratedTemplateCommand extends smithyClient.Command
|
|
|
3768
662
|
})
|
|
3769
663
|
.s("CloudFormation", "GetGeneratedTemplate", {})
|
|
3770
664
|
.n("CloudFormationClient", "GetGeneratedTemplateCommand")
|
|
3771
|
-
.sc(GetGeneratedTemplate$)
|
|
665
|
+
.sc(schemas_0.GetGeneratedTemplate$)
|
|
3772
666
|
.build() {
|
|
3773
667
|
}
|
|
3774
668
|
|
|
@@ -3780,7 +674,7 @@ class GetHookResultCommand extends smithyClient.Command
|
|
|
3780
674
|
})
|
|
3781
675
|
.s("CloudFormation", "GetHookResult", {})
|
|
3782
676
|
.n("CloudFormationClient", "GetHookResultCommand")
|
|
3783
|
-
.sc(GetHookResult$)
|
|
677
|
+
.sc(schemas_0.GetHookResult$)
|
|
3784
678
|
.build() {
|
|
3785
679
|
}
|
|
3786
680
|
|
|
@@ -3792,7 +686,7 @@ class GetStackPolicyCommand extends smithyClient.Command
|
|
|
3792
686
|
})
|
|
3793
687
|
.s("CloudFormation", "GetStackPolicy", {})
|
|
3794
688
|
.n("CloudFormationClient", "GetStackPolicyCommand")
|
|
3795
|
-
.sc(GetStackPolicy$)
|
|
689
|
+
.sc(schemas_0.GetStackPolicy$)
|
|
3796
690
|
.build() {
|
|
3797
691
|
}
|
|
3798
692
|
|
|
@@ -3804,7 +698,7 @@ class GetTemplateCommand extends smithyClient.Command
|
|
|
3804
698
|
})
|
|
3805
699
|
.s("CloudFormation", "GetTemplate", {})
|
|
3806
700
|
.n("CloudFormationClient", "GetTemplateCommand")
|
|
3807
|
-
.sc(GetTemplate$)
|
|
701
|
+
.sc(schemas_0.GetTemplate$)
|
|
3808
702
|
.build() {
|
|
3809
703
|
}
|
|
3810
704
|
|
|
@@ -3816,7 +710,7 @@ class GetTemplateSummaryCommand extends smithyClient.Command
|
|
|
3816
710
|
})
|
|
3817
711
|
.s("CloudFormation", "GetTemplateSummary", {})
|
|
3818
712
|
.n("CloudFormationClient", "GetTemplateSummaryCommand")
|
|
3819
|
-
.sc(GetTemplateSummary$)
|
|
713
|
+
.sc(schemas_0.GetTemplateSummary$)
|
|
3820
714
|
.build() {
|
|
3821
715
|
}
|
|
3822
716
|
|
|
@@ -3828,7 +722,7 @@ class ImportStacksToStackSetCommand extends smithyClient.Command
|
|
|
3828
722
|
})
|
|
3829
723
|
.s("CloudFormation", "ImportStacksToStackSet", {})
|
|
3830
724
|
.n("CloudFormationClient", "ImportStacksToStackSetCommand")
|
|
3831
|
-
.sc(ImportStacksToStackSet$)
|
|
725
|
+
.sc(schemas_0.ImportStacksToStackSet$)
|
|
3832
726
|
.build() {
|
|
3833
727
|
}
|
|
3834
728
|
|
|
@@ -3840,7 +734,7 @@ class ListChangeSetsCommand extends smithyClient.Command
|
|
|
3840
734
|
})
|
|
3841
735
|
.s("CloudFormation", "ListChangeSets", {})
|
|
3842
736
|
.n("CloudFormationClient", "ListChangeSetsCommand")
|
|
3843
|
-
.sc(ListChangeSets$)
|
|
737
|
+
.sc(schemas_0.ListChangeSets$)
|
|
3844
738
|
.build() {
|
|
3845
739
|
}
|
|
3846
740
|
|
|
@@ -3852,7 +746,7 @@ class ListExportsCommand extends smithyClient.Command
|
|
|
3852
746
|
})
|
|
3853
747
|
.s("CloudFormation", "ListExports", {})
|
|
3854
748
|
.n("CloudFormationClient", "ListExportsCommand")
|
|
3855
|
-
.sc(ListExports$)
|
|
749
|
+
.sc(schemas_0.ListExports$)
|
|
3856
750
|
.build() {
|
|
3857
751
|
}
|
|
3858
752
|
|
|
@@ -3864,7 +758,7 @@ class ListGeneratedTemplatesCommand extends smithyClient.Command
|
|
|
3864
758
|
})
|
|
3865
759
|
.s("CloudFormation", "ListGeneratedTemplates", {})
|
|
3866
760
|
.n("CloudFormationClient", "ListGeneratedTemplatesCommand")
|
|
3867
|
-
.sc(ListGeneratedTemplates$)
|
|
761
|
+
.sc(schemas_0.ListGeneratedTemplates$)
|
|
3868
762
|
.build() {
|
|
3869
763
|
}
|
|
3870
764
|
|
|
@@ -3876,7 +770,7 @@ class ListHookResultsCommand extends smithyClient.Command
|
|
|
3876
770
|
})
|
|
3877
771
|
.s("CloudFormation", "ListHookResults", {})
|
|
3878
772
|
.n("CloudFormationClient", "ListHookResultsCommand")
|
|
3879
|
-
.sc(ListHookResults$)
|
|
773
|
+
.sc(schemas_0.ListHookResults$)
|
|
3880
774
|
.build() {
|
|
3881
775
|
}
|
|
3882
776
|
|
|
@@ -3888,7 +782,7 @@ class ListImportsCommand extends smithyClient.Command
|
|
|
3888
782
|
})
|
|
3889
783
|
.s("CloudFormation", "ListImports", {})
|
|
3890
784
|
.n("CloudFormationClient", "ListImportsCommand")
|
|
3891
|
-
.sc(ListImports$)
|
|
785
|
+
.sc(schemas_0.ListImports$)
|
|
3892
786
|
.build() {
|
|
3893
787
|
}
|
|
3894
788
|
|
|
@@ -3900,7 +794,7 @@ class ListResourceScanRelatedResourcesCommand extends smithyClient.Command
|
|
|
3900
794
|
})
|
|
3901
795
|
.s("CloudFormation", "ListResourceScanRelatedResources", {})
|
|
3902
796
|
.n("CloudFormationClient", "ListResourceScanRelatedResourcesCommand")
|
|
3903
|
-
.sc(ListResourceScanRelatedResources$)
|
|
797
|
+
.sc(schemas_0.ListResourceScanRelatedResources$)
|
|
3904
798
|
.build() {
|
|
3905
799
|
}
|
|
3906
800
|
|
|
@@ -3912,7 +806,7 @@ class ListResourceScanResourcesCommand extends smithyClient.Command
|
|
|
3912
806
|
})
|
|
3913
807
|
.s("CloudFormation", "ListResourceScanResources", {})
|
|
3914
808
|
.n("CloudFormationClient", "ListResourceScanResourcesCommand")
|
|
3915
|
-
.sc(ListResourceScanResources$)
|
|
809
|
+
.sc(schemas_0.ListResourceScanResources$)
|
|
3916
810
|
.build() {
|
|
3917
811
|
}
|
|
3918
812
|
|
|
@@ -3924,7 +818,7 @@ class ListResourceScansCommand extends smithyClient.Command
|
|
|
3924
818
|
})
|
|
3925
819
|
.s("CloudFormation", "ListResourceScans", {})
|
|
3926
820
|
.n("CloudFormationClient", "ListResourceScansCommand")
|
|
3927
|
-
.sc(ListResourceScans$)
|
|
821
|
+
.sc(schemas_0.ListResourceScans$)
|
|
3928
822
|
.build() {
|
|
3929
823
|
}
|
|
3930
824
|
|
|
@@ -3936,7 +830,7 @@ class ListStackInstanceResourceDriftsCommand extends smithyClient.Command
|
|
|
3936
830
|
})
|
|
3937
831
|
.s("CloudFormation", "ListStackInstanceResourceDrifts", {})
|
|
3938
832
|
.n("CloudFormationClient", "ListStackInstanceResourceDriftsCommand")
|
|
3939
|
-
.sc(ListStackInstanceResourceDrifts$)
|
|
833
|
+
.sc(schemas_0.ListStackInstanceResourceDrifts$)
|
|
3940
834
|
.build() {
|
|
3941
835
|
}
|
|
3942
836
|
|
|
@@ -3948,7 +842,7 @@ class ListStackInstancesCommand extends smithyClient.Command
|
|
|
3948
842
|
})
|
|
3949
843
|
.s("CloudFormation", "ListStackInstances", {})
|
|
3950
844
|
.n("CloudFormationClient", "ListStackInstancesCommand")
|
|
3951
|
-
.sc(ListStackInstances$)
|
|
845
|
+
.sc(schemas_0.ListStackInstances$)
|
|
3952
846
|
.build() {
|
|
3953
847
|
}
|
|
3954
848
|
|
|
@@ -3960,7 +854,7 @@ class ListStackRefactorActionsCommand extends smithyClient.Command
|
|
|
3960
854
|
})
|
|
3961
855
|
.s("CloudFormation", "ListStackRefactorActions", {})
|
|
3962
856
|
.n("CloudFormationClient", "ListStackRefactorActionsCommand")
|
|
3963
|
-
.sc(ListStackRefactorActions$)
|
|
857
|
+
.sc(schemas_0.ListStackRefactorActions$)
|
|
3964
858
|
.build() {
|
|
3965
859
|
}
|
|
3966
860
|
|
|
@@ -3972,7 +866,7 @@ class ListStackRefactorsCommand extends smithyClient.Command
|
|
|
3972
866
|
})
|
|
3973
867
|
.s("CloudFormation", "ListStackRefactors", {})
|
|
3974
868
|
.n("CloudFormationClient", "ListStackRefactorsCommand")
|
|
3975
|
-
.sc(ListStackRefactors$)
|
|
869
|
+
.sc(schemas_0.ListStackRefactors$)
|
|
3976
870
|
.build() {
|
|
3977
871
|
}
|
|
3978
872
|
|
|
@@ -3984,7 +878,7 @@ class ListStackResourcesCommand extends smithyClient.Command
|
|
|
3984
878
|
})
|
|
3985
879
|
.s("CloudFormation", "ListStackResources", {})
|
|
3986
880
|
.n("CloudFormationClient", "ListStackResourcesCommand")
|
|
3987
|
-
.sc(ListStackResources$)
|
|
881
|
+
.sc(schemas_0.ListStackResources$)
|
|
3988
882
|
.build() {
|
|
3989
883
|
}
|
|
3990
884
|
|
|
@@ -3996,7 +890,7 @@ class ListStacksCommand extends smithyClient.Command
|
|
|
3996
890
|
})
|
|
3997
891
|
.s("CloudFormation", "ListStacks", {})
|
|
3998
892
|
.n("CloudFormationClient", "ListStacksCommand")
|
|
3999
|
-
.sc(ListStacks$)
|
|
893
|
+
.sc(schemas_0.ListStacks$)
|
|
4000
894
|
.build() {
|
|
4001
895
|
}
|
|
4002
896
|
|
|
@@ -4008,7 +902,7 @@ class ListStackSetAutoDeploymentTargetsCommand extends smithyClient.Command
|
|
|
4008
902
|
})
|
|
4009
903
|
.s("CloudFormation", "ListStackSetAutoDeploymentTargets", {})
|
|
4010
904
|
.n("CloudFormationClient", "ListStackSetAutoDeploymentTargetsCommand")
|
|
4011
|
-
.sc(ListStackSetAutoDeploymentTargets$)
|
|
905
|
+
.sc(schemas_0.ListStackSetAutoDeploymentTargets$)
|
|
4012
906
|
.build() {
|
|
4013
907
|
}
|
|
4014
908
|
|
|
@@ -4020,7 +914,7 @@ class ListStackSetOperationResultsCommand extends smithyClient.Command
|
|
|
4020
914
|
})
|
|
4021
915
|
.s("CloudFormation", "ListStackSetOperationResults", {})
|
|
4022
916
|
.n("CloudFormationClient", "ListStackSetOperationResultsCommand")
|
|
4023
|
-
.sc(ListStackSetOperationResults$)
|
|
917
|
+
.sc(schemas_0.ListStackSetOperationResults$)
|
|
4024
918
|
.build() {
|
|
4025
919
|
}
|
|
4026
920
|
|
|
@@ -4032,7 +926,7 @@ class ListStackSetOperationsCommand extends smithyClient.Command
|
|
|
4032
926
|
})
|
|
4033
927
|
.s("CloudFormation", "ListStackSetOperations", {})
|
|
4034
928
|
.n("CloudFormationClient", "ListStackSetOperationsCommand")
|
|
4035
|
-
.sc(ListStackSetOperations$)
|
|
929
|
+
.sc(schemas_0.ListStackSetOperations$)
|
|
4036
930
|
.build() {
|
|
4037
931
|
}
|
|
4038
932
|
|
|
@@ -4044,7 +938,7 @@ class ListStackSetsCommand extends smithyClient.Command
|
|
|
4044
938
|
})
|
|
4045
939
|
.s("CloudFormation", "ListStackSets", {})
|
|
4046
940
|
.n("CloudFormationClient", "ListStackSetsCommand")
|
|
4047
|
-
.sc(ListStackSets$)
|
|
941
|
+
.sc(schemas_0.ListStackSets$)
|
|
4048
942
|
.build() {
|
|
4049
943
|
}
|
|
4050
944
|
|
|
@@ -4056,7 +950,7 @@ class ListTypeRegistrationsCommand extends smithyClient.Command
|
|
|
4056
950
|
})
|
|
4057
951
|
.s("CloudFormation", "ListTypeRegistrations", {})
|
|
4058
952
|
.n("CloudFormationClient", "ListTypeRegistrationsCommand")
|
|
4059
|
-
.sc(ListTypeRegistrations$)
|
|
953
|
+
.sc(schemas_0.ListTypeRegistrations$)
|
|
4060
954
|
.build() {
|
|
4061
955
|
}
|
|
4062
956
|
|
|
@@ -4068,7 +962,7 @@ class ListTypesCommand extends smithyClient.Command
|
|
|
4068
962
|
})
|
|
4069
963
|
.s("CloudFormation", "ListTypes", {})
|
|
4070
964
|
.n("CloudFormationClient", "ListTypesCommand")
|
|
4071
|
-
.sc(ListTypes$)
|
|
965
|
+
.sc(schemas_0.ListTypes$)
|
|
4072
966
|
.build() {
|
|
4073
967
|
}
|
|
4074
968
|
|
|
@@ -4080,7 +974,7 @@ class ListTypeVersionsCommand extends smithyClient.Command
|
|
|
4080
974
|
})
|
|
4081
975
|
.s("CloudFormation", "ListTypeVersions", {})
|
|
4082
976
|
.n("CloudFormationClient", "ListTypeVersionsCommand")
|
|
4083
|
-
.sc(ListTypeVersions$)
|
|
977
|
+
.sc(schemas_0.ListTypeVersions$)
|
|
4084
978
|
.build() {
|
|
4085
979
|
}
|
|
4086
980
|
|
|
@@ -4092,7 +986,7 @@ class PublishTypeCommand extends smithyClient.Command
|
|
|
4092
986
|
})
|
|
4093
987
|
.s("CloudFormation", "PublishType", {})
|
|
4094
988
|
.n("CloudFormationClient", "PublishTypeCommand")
|
|
4095
|
-
.sc(PublishType$)
|
|
989
|
+
.sc(schemas_0.PublishType$)
|
|
4096
990
|
.build() {
|
|
4097
991
|
}
|
|
4098
992
|
|
|
@@ -4104,7 +998,7 @@ class RecordHandlerProgressCommand extends smithyClient.Command
|
|
|
4104
998
|
})
|
|
4105
999
|
.s("CloudFormation", "RecordHandlerProgress", {})
|
|
4106
1000
|
.n("CloudFormationClient", "RecordHandlerProgressCommand")
|
|
4107
|
-
.sc(RecordHandlerProgress$)
|
|
1001
|
+
.sc(schemas_0.RecordHandlerProgress$)
|
|
4108
1002
|
.build() {
|
|
4109
1003
|
}
|
|
4110
1004
|
|
|
@@ -4116,7 +1010,7 @@ class RegisterPublisherCommand extends smithyClient.Command
|
|
|
4116
1010
|
})
|
|
4117
1011
|
.s("CloudFormation", "RegisterPublisher", {})
|
|
4118
1012
|
.n("CloudFormationClient", "RegisterPublisherCommand")
|
|
4119
|
-
.sc(RegisterPublisher$)
|
|
1013
|
+
.sc(schemas_0.RegisterPublisher$)
|
|
4120
1014
|
.build() {
|
|
4121
1015
|
}
|
|
4122
1016
|
|
|
@@ -4128,7 +1022,7 @@ class RegisterTypeCommand extends smithyClient.Command
|
|
|
4128
1022
|
})
|
|
4129
1023
|
.s("CloudFormation", "RegisterType", {})
|
|
4130
1024
|
.n("CloudFormationClient", "RegisterTypeCommand")
|
|
4131
|
-
.sc(RegisterType$)
|
|
1025
|
+
.sc(schemas_0.RegisterType$)
|
|
4132
1026
|
.build() {
|
|
4133
1027
|
}
|
|
4134
1028
|
|
|
@@ -4140,7 +1034,7 @@ class RollbackStackCommand extends smithyClient.Command
|
|
|
4140
1034
|
})
|
|
4141
1035
|
.s("CloudFormation", "RollbackStack", {})
|
|
4142
1036
|
.n("CloudFormationClient", "RollbackStackCommand")
|
|
4143
|
-
.sc(RollbackStack$)
|
|
1037
|
+
.sc(schemas_0.RollbackStack$)
|
|
4144
1038
|
.build() {
|
|
4145
1039
|
}
|
|
4146
1040
|
|
|
@@ -4152,7 +1046,7 @@ class SetStackPolicyCommand extends smithyClient.Command
|
|
|
4152
1046
|
})
|
|
4153
1047
|
.s("CloudFormation", "SetStackPolicy", {})
|
|
4154
1048
|
.n("CloudFormationClient", "SetStackPolicyCommand")
|
|
4155
|
-
.sc(SetStackPolicy$)
|
|
1049
|
+
.sc(schemas_0.SetStackPolicy$)
|
|
4156
1050
|
.build() {
|
|
4157
1051
|
}
|
|
4158
1052
|
|
|
@@ -4164,7 +1058,7 @@ class SetTypeConfigurationCommand extends smithyClient.Command
|
|
|
4164
1058
|
})
|
|
4165
1059
|
.s("CloudFormation", "SetTypeConfiguration", {})
|
|
4166
1060
|
.n("CloudFormationClient", "SetTypeConfigurationCommand")
|
|
4167
|
-
.sc(SetTypeConfiguration$)
|
|
1061
|
+
.sc(schemas_0.SetTypeConfiguration$)
|
|
4168
1062
|
.build() {
|
|
4169
1063
|
}
|
|
4170
1064
|
|
|
@@ -4176,7 +1070,7 @@ class SetTypeDefaultVersionCommand extends smithyClient.Command
|
|
|
4176
1070
|
})
|
|
4177
1071
|
.s("CloudFormation", "SetTypeDefaultVersion", {})
|
|
4178
1072
|
.n("CloudFormationClient", "SetTypeDefaultVersionCommand")
|
|
4179
|
-
.sc(SetTypeDefaultVersion$)
|
|
1073
|
+
.sc(schemas_0.SetTypeDefaultVersion$)
|
|
4180
1074
|
.build() {
|
|
4181
1075
|
}
|
|
4182
1076
|
|
|
@@ -4188,7 +1082,7 @@ class SignalResourceCommand extends smithyClient.Command
|
|
|
4188
1082
|
})
|
|
4189
1083
|
.s("CloudFormation", "SignalResource", {})
|
|
4190
1084
|
.n("CloudFormationClient", "SignalResourceCommand")
|
|
4191
|
-
.sc(SignalResource$)
|
|
1085
|
+
.sc(schemas_0.SignalResource$)
|
|
4192
1086
|
.build() {
|
|
4193
1087
|
}
|
|
4194
1088
|
|
|
@@ -4200,7 +1094,7 @@ class StartResourceScanCommand extends smithyClient.Command
|
|
|
4200
1094
|
})
|
|
4201
1095
|
.s("CloudFormation", "StartResourceScan", {})
|
|
4202
1096
|
.n("CloudFormationClient", "StartResourceScanCommand")
|
|
4203
|
-
.sc(StartResourceScan$)
|
|
1097
|
+
.sc(schemas_0.StartResourceScan$)
|
|
4204
1098
|
.build() {
|
|
4205
1099
|
}
|
|
4206
1100
|
|
|
@@ -4212,7 +1106,7 @@ class StopStackSetOperationCommand extends smithyClient.Command
|
|
|
4212
1106
|
})
|
|
4213
1107
|
.s("CloudFormation", "StopStackSetOperation", {})
|
|
4214
1108
|
.n("CloudFormationClient", "StopStackSetOperationCommand")
|
|
4215
|
-
.sc(StopStackSetOperation$)
|
|
1109
|
+
.sc(schemas_0.StopStackSetOperation$)
|
|
4216
1110
|
.build() {
|
|
4217
1111
|
}
|
|
4218
1112
|
|
|
@@ -4224,7 +1118,7 @@ class TestTypeCommand extends smithyClient.Command
|
|
|
4224
1118
|
})
|
|
4225
1119
|
.s("CloudFormation", "TestType", {})
|
|
4226
1120
|
.n("CloudFormationClient", "TestTypeCommand")
|
|
4227
|
-
.sc(TestType$)
|
|
1121
|
+
.sc(schemas_0.TestType$)
|
|
4228
1122
|
.build() {
|
|
4229
1123
|
}
|
|
4230
1124
|
|
|
@@ -4236,7 +1130,7 @@ class UpdateGeneratedTemplateCommand extends smithyClient.Command
|
|
|
4236
1130
|
})
|
|
4237
1131
|
.s("CloudFormation", "UpdateGeneratedTemplate", {})
|
|
4238
1132
|
.n("CloudFormationClient", "UpdateGeneratedTemplateCommand")
|
|
4239
|
-
.sc(UpdateGeneratedTemplate$)
|
|
1133
|
+
.sc(schemas_0.UpdateGeneratedTemplate$)
|
|
4240
1134
|
.build() {
|
|
4241
1135
|
}
|
|
4242
1136
|
|
|
@@ -4248,7 +1142,7 @@ class UpdateStackCommand extends smithyClient.Command
|
|
|
4248
1142
|
})
|
|
4249
1143
|
.s("CloudFormation", "UpdateStack", {})
|
|
4250
1144
|
.n("CloudFormationClient", "UpdateStackCommand")
|
|
4251
|
-
.sc(UpdateStack$)
|
|
1145
|
+
.sc(schemas_0.UpdateStack$)
|
|
4252
1146
|
.build() {
|
|
4253
1147
|
}
|
|
4254
1148
|
|
|
@@ -4260,7 +1154,7 @@ class UpdateStackInstancesCommand extends smithyClient.Command
|
|
|
4260
1154
|
})
|
|
4261
1155
|
.s("CloudFormation", "UpdateStackInstances", {})
|
|
4262
1156
|
.n("CloudFormationClient", "UpdateStackInstancesCommand")
|
|
4263
|
-
.sc(UpdateStackInstances$)
|
|
1157
|
+
.sc(schemas_0.UpdateStackInstances$)
|
|
4264
1158
|
.build() {
|
|
4265
1159
|
}
|
|
4266
1160
|
|
|
@@ -4272,7 +1166,7 @@ class UpdateStackSetCommand extends smithyClient.Command
|
|
|
4272
1166
|
})
|
|
4273
1167
|
.s("CloudFormation", "UpdateStackSet", {})
|
|
4274
1168
|
.n("CloudFormationClient", "UpdateStackSetCommand")
|
|
4275
|
-
.sc(UpdateStackSet$)
|
|
1169
|
+
.sc(schemas_0.UpdateStackSet$)
|
|
4276
1170
|
.build() {
|
|
4277
1171
|
}
|
|
4278
1172
|
|
|
@@ -4284,7 +1178,7 @@ class UpdateTerminationProtectionCommand extends smithyClient.Command
|
|
|
4284
1178
|
})
|
|
4285
1179
|
.s("CloudFormation", "UpdateTerminationProtection", {})
|
|
4286
1180
|
.n("CloudFormationClient", "UpdateTerminationProtectionCommand")
|
|
4287
|
-
.sc(UpdateTerminationProtection$)
|
|
1181
|
+
.sc(schemas_0.UpdateTerminationProtection$)
|
|
4288
1182
|
.build() {
|
|
4289
1183
|
}
|
|
4290
1184
|
|
|
@@ -4296,7 +1190,7 @@ class ValidateTemplateCommand extends smithyClient.Command
|
|
|
4296
1190
|
})
|
|
4297
1191
|
.s("CloudFormation", "ValidateTemplate", {})
|
|
4298
1192
|
.n("CloudFormationClient", "ValidateTemplateCommand")
|
|
4299
|
-
.sc(ValidateTemplate$)
|
|
1193
|
+
.sc(schemas_0.ValidateTemplate$)
|
|
4300
1194
|
.build() {
|
|
4301
1195
|
}
|
|
4302
1196
|
|
|
@@ -5896,594 +2790,187 @@ Object.defineProperty(exports, "__Client", {
|
|
|
5896
2790
|
enumerable: true,
|
|
5897
2791
|
get: function () { return smithyClient.Client; }
|
|
5898
2792
|
});
|
|
2793
|
+
Object.defineProperty(exports, "CloudFormationServiceException", {
|
|
2794
|
+
enumerable: true,
|
|
2795
|
+
get: function () { return CloudFormationServiceException.CloudFormationServiceException; }
|
|
2796
|
+
});
|
|
5899
2797
|
exports.AccountFilterType = AccountFilterType;
|
|
5900
|
-
exports.AccountGateResult$ = AccountGateResult$;
|
|
5901
2798
|
exports.AccountGateStatus = AccountGateStatus;
|
|
5902
|
-
exports.AccountLimit$ = AccountLimit$;
|
|
5903
|
-
exports.ActivateOrganizationsAccess$ = ActivateOrganizationsAccess$;
|
|
5904
2799
|
exports.ActivateOrganizationsAccessCommand = ActivateOrganizationsAccessCommand;
|
|
5905
|
-
exports.ActivateOrganizationsAccessInput$ = ActivateOrganizationsAccessInput$;
|
|
5906
|
-
exports.ActivateOrganizationsAccessOutput$ = ActivateOrganizationsAccessOutput$;
|
|
5907
|
-
exports.ActivateType$ = ActivateType$;
|
|
5908
2800
|
exports.ActivateTypeCommand = ActivateTypeCommand;
|
|
5909
|
-
exports.ActivateTypeInput$ = ActivateTypeInput$;
|
|
5910
|
-
exports.ActivateTypeOutput$ = ActivateTypeOutput$;
|
|
5911
2801
|
exports.AfterValueFrom = AfterValueFrom;
|
|
5912
|
-
exports.AlreadyExistsException = AlreadyExistsException;
|
|
5913
|
-
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
5914
|
-
exports.Annotation$ = Annotation$;
|
|
5915
2802
|
exports.AnnotationSeverityLevel = AnnotationSeverityLevel;
|
|
5916
2803
|
exports.AnnotationStatus = AnnotationStatus;
|
|
5917
2804
|
exports.AttributeChangeType = AttributeChangeType;
|
|
5918
|
-
exports.AutoDeployment$ = AutoDeployment$;
|
|
5919
|
-
exports.BatchDescribeTypeConfigurations$ = BatchDescribeTypeConfigurations$;
|
|
5920
2805
|
exports.BatchDescribeTypeConfigurationsCommand = BatchDescribeTypeConfigurationsCommand;
|
|
5921
|
-
exports.BatchDescribeTypeConfigurationsError$ = BatchDescribeTypeConfigurationsError$;
|
|
5922
|
-
exports.BatchDescribeTypeConfigurationsInput$ = BatchDescribeTypeConfigurationsInput$;
|
|
5923
|
-
exports.BatchDescribeTypeConfigurationsOutput$ = BatchDescribeTypeConfigurationsOutput$;
|
|
5924
2806
|
exports.BeaconStackOperationStatus = BeaconStackOperationStatus;
|
|
5925
2807
|
exports.BeforeValueFrom = BeforeValueFrom;
|
|
5926
|
-
exports.CFNRegistryException = CFNRegistryException;
|
|
5927
|
-
exports.CFNRegistryException$ = CFNRegistryException$;
|
|
5928
2808
|
exports.CallAs = CallAs;
|
|
5929
|
-
exports.CancelUpdateStack$ = CancelUpdateStack$;
|
|
5930
2809
|
exports.CancelUpdateStackCommand = CancelUpdateStackCommand;
|
|
5931
|
-
exports.CancelUpdateStackInput$ = CancelUpdateStackInput$;
|
|
5932
2810
|
exports.Capability = Capability;
|
|
5933
2811
|
exports.Category = Category;
|
|
5934
|
-
exports.Change$ = Change$;
|
|
5935
2812
|
exports.ChangeAction = ChangeAction;
|
|
5936
|
-
exports.ChangeSetHook$ = ChangeSetHook$;
|
|
5937
|
-
exports.ChangeSetHookResourceTargetDetails$ = ChangeSetHookResourceTargetDetails$;
|
|
5938
|
-
exports.ChangeSetHookTargetDetails$ = ChangeSetHookTargetDetails$;
|
|
5939
2813
|
exports.ChangeSetHooksStatus = ChangeSetHooksStatus;
|
|
5940
|
-
exports.ChangeSetNotFoundException = ChangeSetNotFoundException;
|
|
5941
|
-
exports.ChangeSetNotFoundException$ = ChangeSetNotFoundException$;
|
|
5942
2814
|
exports.ChangeSetStatus = ChangeSetStatus;
|
|
5943
|
-
exports.ChangeSetSummary$ = ChangeSetSummary$;
|
|
5944
2815
|
exports.ChangeSetType = ChangeSetType;
|
|
5945
2816
|
exports.ChangeSource = ChangeSource;
|
|
5946
2817
|
exports.ChangeType = ChangeType;
|
|
5947
2818
|
exports.CloudFormation = CloudFormation;
|
|
5948
2819
|
exports.CloudFormationClient = CloudFormationClient;
|
|
5949
|
-
exports.CloudFormationServiceException = CloudFormationServiceException;
|
|
5950
|
-
exports.CloudFormationServiceException$ = CloudFormationServiceException$;
|
|
5951
2820
|
exports.ConcurrencyMode = ConcurrencyMode;
|
|
5952
|
-
exports.ConcurrentResourcesLimitExceededException = ConcurrentResourcesLimitExceededException;
|
|
5953
|
-
exports.ConcurrentResourcesLimitExceededException$ = ConcurrentResourcesLimitExceededException$;
|
|
5954
|
-
exports.ContinueUpdateRollback$ = ContinueUpdateRollback$;
|
|
5955
2821
|
exports.ContinueUpdateRollbackCommand = ContinueUpdateRollbackCommand;
|
|
5956
|
-
exports.ContinueUpdateRollbackInput$ = ContinueUpdateRollbackInput$;
|
|
5957
|
-
exports.ContinueUpdateRollbackOutput$ = ContinueUpdateRollbackOutput$;
|
|
5958
|
-
exports.CreateChangeSet$ = CreateChangeSet$;
|
|
5959
2822
|
exports.CreateChangeSetCommand = CreateChangeSetCommand;
|
|
5960
|
-
exports.CreateChangeSetInput$ = CreateChangeSetInput$;
|
|
5961
|
-
exports.CreateChangeSetOutput$ = CreateChangeSetOutput$;
|
|
5962
|
-
exports.CreateGeneratedTemplate$ = CreateGeneratedTemplate$;
|
|
5963
2823
|
exports.CreateGeneratedTemplateCommand = CreateGeneratedTemplateCommand;
|
|
5964
|
-
exports.CreateGeneratedTemplateInput$ = CreateGeneratedTemplateInput$;
|
|
5965
|
-
exports.CreateGeneratedTemplateOutput$ = CreateGeneratedTemplateOutput$;
|
|
5966
|
-
exports.CreateStack$ = CreateStack$;
|
|
5967
2824
|
exports.CreateStackCommand = CreateStackCommand;
|
|
5968
|
-
exports.CreateStackInput$ = CreateStackInput$;
|
|
5969
|
-
exports.CreateStackInstances$ = CreateStackInstances$;
|
|
5970
2825
|
exports.CreateStackInstancesCommand = CreateStackInstancesCommand;
|
|
5971
|
-
exports.CreateStackInstancesInput$ = CreateStackInstancesInput$;
|
|
5972
|
-
exports.CreateStackInstancesOutput$ = CreateStackInstancesOutput$;
|
|
5973
|
-
exports.CreateStackOutput$ = CreateStackOutput$;
|
|
5974
|
-
exports.CreateStackRefactor$ = CreateStackRefactor$;
|
|
5975
2826
|
exports.CreateStackRefactorCommand = CreateStackRefactorCommand;
|
|
5976
|
-
exports.CreateStackRefactorInput$ = CreateStackRefactorInput$;
|
|
5977
|
-
exports.CreateStackRefactorOutput$ = CreateStackRefactorOutput$;
|
|
5978
|
-
exports.CreateStackSet$ = CreateStackSet$;
|
|
5979
2827
|
exports.CreateStackSetCommand = CreateStackSetCommand;
|
|
5980
|
-
exports.CreateStackSetInput$ = CreateStackSetInput$;
|
|
5981
|
-
exports.CreateStackSetOutput$ = CreateStackSetOutput$;
|
|
5982
|
-
exports.CreatedButModifiedException = CreatedButModifiedException;
|
|
5983
|
-
exports.CreatedButModifiedException$ = CreatedButModifiedException$;
|
|
5984
|
-
exports.DeactivateOrganizationsAccess$ = DeactivateOrganizationsAccess$;
|
|
5985
2828
|
exports.DeactivateOrganizationsAccessCommand = DeactivateOrganizationsAccessCommand;
|
|
5986
|
-
exports.DeactivateOrganizationsAccessInput$ = DeactivateOrganizationsAccessInput$;
|
|
5987
|
-
exports.DeactivateOrganizationsAccessOutput$ = DeactivateOrganizationsAccessOutput$;
|
|
5988
|
-
exports.DeactivateType$ = DeactivateType$;
|
|
5989
2829
|
exports.DeactivateTypeCommand = DeactivateTypeCommand;
|
|
5990
|
-
exports.DeactivateTypeInput$ = DeactivateTypeInput$;
|
|
5991
|
-
exports.DeactivateTypeOutput$ = DeactivateTypeOutput$;
|
|
5992
|
-
exports.DeleteChangeSet$ = DeleteChangeSet$;
|
|
5993
2830
|
exports.DeleteChangeSetCommand = DeleteChangeSetCommand;
|
|
5994
|
-
exports.DeleteChangeSetInput$ = DeleteChangeSetInput$;
|
|
5995
|
-
exports.DeleteChangeSetOutput$ = DeleteChangeSetOutput$;
|
|
5996
|
-
exports.DeleteGeneratedTemplate$ = DeleteGeneratedTemplate$;
|
|
5997
2831
|
exports.DeleteGeneratedTemplateCommand = DeleteGeneratedTemplateCommand;
|
|
5998
|
-
exports.DeleteGeneratedTemplateInput$ = DeleteGeneratedTemplateInput$;
|
|
5999
|
-
exports.DeleteStack$ = DeleteStack$;
|
|
6000
2832
|
exports.DeleteStackCommand = DeleteStackCommand;
|
|
6001
|
-
exports.DeleteStackInput$ = DeleteStackInput$;
|
|
6002
|
-
exports.DeleteStackInstances$ = DeleteStackInstances$;
|
|
6003
2833
|
exports.DeleteStackInstancesCommand = DeleteStackInstancesCommand;
|
|
6004
|
-
exports.DeleteStackInstancesInput$ = DeleteStackInstancesInput$;
|
|
6005
|
-
exports.DeleteStackInstancesOutput$ = DeleteStackInstancesOutput$;
|
|
6006
|
-
exports.DeleteStackSet$ = DeleteStackSet$;
|
|
6007
2834
|
exports.DeleteStackSetCommand = DeleteStackSetCommand;
|
|
6008
|
-
exports.DeleteStackSetInput$ = DeleteStackSetInput$;
|
|
6009
|
-
exports.DeleteStackSetOutput$ = DeleteStackSetOutput$;
|
|
6010
2835
|
exports.DeletionMode = DeletionMode;
|
|
6011
2836
|
exports.DeploymentMode = DeploymentMode;
|
|
6012
|
-
exports.DeploymentTargets$ = DeploymentTargets$;
|
|
6013
2837
|
exports.DeprecatedStatus = DeprecatedStatus;
|
|
6014
|
-
exports.DeregisterType$ = DeregisterType$;
|
|
6015
2838
|
exports.DeregisterTypeCommand = DeregisterTypeCommand;
|
|
6016
|
-
exports.DeregisterTypeInput$ = DeregisterTypeInput$;
|
|
6017
|
-
exports.DeregisterTypeOutput$ = DeregisterTypeOutput$;
|
|
6018
|
-
exports.DescribeAccountLimits$ = DescribeAccountLimits$;
|
|
6019
2839
|
exports.DescribeAccountLimitsCommand = DescribeAccountLimitsCommand;
|
|
6020
|
-
exports.DescribeAccountLimitsInput$ = DescribeAccountLimitsInput$;
|
|
6021
|
-
exports.DescribeAccountLimitsOutput$ = DescribeAccountLimitsOutput$;
|
|
6022
|
-
exports.DescribeChangeSet$ = DescribeChangeSet$;
|
|
6023
2840
|
exports.DescribeChangeSetCommand = DescribeChangeSetCommand;
|
|
6024
|
-
exports.DescribeChangeSetHooks$ = DescribeChangeSetHooks$;
|
|
6025
2841
|
exports.DescribeChangeSetHooksCommand = DescribeChangeSetHooksCommand;
|
|
6026
|
-
exports.DescribeChangeSetHooksInput$ = DescribeChangeSetHooksInput$;
|
|
6027
|
-
exports.DescribeChangeSetHooksOutput$ = DescribeChangeSetHooksOutput$;
|
|
6028
|
-
exports.DescribeChangeSetInput$ = DescribeChangeSetInput$;
|
|
6029
|
-
exports.DescribeChangeSetOutput$ = DescribeChangeSetOutput$;
|
|
6030
|
-
exports.DescribeEvents$ = DescribeEvents$;
|
|
6031
2842
|
exports.DescribeEventsCommand = DescribeEventsCommand;
|
|
6032
|
-
exports.DescribeEventsInput$ = DescribeEventsInput$;
|
|
6033
|
-
exports.DescribeEventsOutput$ = DescribeEventsOutput$;
|
|
6034
|
-
exports.DescribeGeneratedTemplate$ = DescribeGeneratedTemplate$;
|
|
6035
2843
|
exports.DescribeGeneratedTemplateCommand = DescribeGeneratedTemplateCommand;
|
|
6036
|
-
exports.DescribeGeneratedTemplateInput$ = DescribeGeneratedTemplateInput$;
|
|
6037
|
-
exports.DescribeGeneratedTemplateOutput$ = DescribeGeneratedTemplateOutput$;
|
|
6038
|
-
exports.DescribeOrganizationsAccess$ = DescribeOrganizationsAccess$;
|
|
6039
2844
|
exports.DescribeOrganizationsAccessCommand = DescribeOrganizationsAccessCommand;
|
|
6040
|
-
exports.DescribeOrganizationsAccessInput$ = DescribeOrganizationsAccessInput$;
|
|
6041
|
-
exports.DescribeOrganizationsAccessOutput$ = DescribeOrganizationsAccessOutput$;
|
|
6042
|
-
exports.DescribePublisher$ = DescribePublisher$;
|
|
6043
2845
|
exports.DescribePublisherCommand = DescribePublisherCommand;
|
|
6044
|
-
exports.DescribePublisherInput$ = DescribePublisherInput$;
|
|
6045
|
-
exports.DescribePublisherOutput$ = DescribePublisherOutput$;
|
|
6046
|
-
exports.DescribeResourceScan$ = DescribeResourceScan$;
|
|
6047
2846
|
exports.DescribeResourceScanCommand = DescribeResourceScanCommand;
|
|
6048
|
-
exports.DescribeResourceScanInput$ = DescribeResourceScanInput$;
|
|
6049
|
-
exports.DescribeResourceScanOutput$ = DescribeResourceScanOutput$;
|
|
6050
|
-
exports.DescribeStackDriftDetectionStatus$ = DescribeStackDriftDetectionStatus$;
|
|
6051
2847
|
exports.DescribeStackDriftDetectionStatusCommand = DescribeStackDriftDetectionStatusCommand;
|
|
6052
|
-
exports.DescribeStackDriftDetectionStatusInput$ = DescribeStackDriftDetectionStatusInput$;
|
|
6053
|
-
exports.DescribeStackDriftDetectionStatusOutput$ = DescribeStackDriftDetectionStatusOutput$;
|
|
6054
|
-
exports.DescribeStackEvents$ = DescribeStackEvents$;
|
|
6055
2848
|
exports.DescribeStackEventsCommand = DescribeStackEventsCommand;
|
|
6056
|
-
exports.DescribeStackEventsInput$ = DescribeStackEventsInput$;
|
|
6057
|
-
exports.DescribeStackEventsOutput$ = DescribeStackEventsOutput$;
|
|
6058
|
-
exports.DescribeStackInstance$ = DescribeStackInstance$;
|
|
6059
2849
|
exports.DescribeStackInstanceCommand = DescribeStackInstanceCommand;
|
|
6060
|
-
exports.DescribeStackInstanceInput$ = DescribeStackInstanceInput$;
|
|
6061
|
-
exports.DescribeStackInstanceOutput$ = DescribeStackInstanceOutput$;
|
|
6062
|
-
exports.DescribeStackRefactor$ = DescribeStackRefactor$;
|
|
6063
2850
|
exports.DescribeStackRefactorCommand = DescribeStackRefactorCommand;
|
|
6064
|
-
exports.DescribeStackRefactorInput$ = DescribeStackRefactorInput$;
|
|
6065
|
-
exports.DescribeStackRefactorOutput$ = DescribeStackRefactorOutput$;
|
|
6066
|
-
exports.DescribeStackResource$ = DescribeStackResource$;
|
|
6067
2851
|
exports.DescribeStackResourceCommand = DescribeStackResourceCommand;
|
|
6068
|
-
exports.DescribeStackResourceDrifts$ = DescribeStackResourceDrifts$;
|
|
6069
2852
|
exports.DescribeStackResourceDriftsCommand = DescribeStackResourceDriftsCommand;
|
|
6070
|
-
exports.DescribeStackResourceDriftsInput$ = DescribeStackResourceDriftsInput$;
|
|
6071
|
-
exports.DescribeStackResourceDriftsOutput$ = DescribeStackResourceDriftsOutput$;
|
|
6072
|
-
exports.DescribeStackResourceInput$ = DescribeStackResourceInput$;
|
|
6073
|
-
exports.DescribeStackResourceOutput$ = DescribeStackResourceOutput$;
|
|
6074
|
-
exports.DescribeStackResources$ = DescribeStackResources$;
|
|
6075
2853
|
exports.DescribeStackResourcesCommand = DescribeStackResourcesCommand;
|
|
6076
|
-
exports.DescribeStackResourcesInput$ = DescribeStackResourcesInput$;
|
|
6077
|
-
exports.DescribeStackResourcesOutput$ = DescribeStackResourcesOutput$;
|
|
6078
|
-
exports.DescribeStackSet$ = DescribeStackSet$;
|
|
6079
2854
|
exports.DescribeStackSetCommand = DescribeStackSetCommand;
|
|
6080
|
-
exports.DescribeStackSetInput$ = DescribeStackSetInput$;
|
|
6081
|
-
exports.DescribeStackSetOperation$ = DescribeStackSetOperation$;
|
|
6082
2855
|
exports.DescribeStackSetOperationCommand = DescribeStackSetOperationCommand;
|
|
6083
|
-
exports.DescribeStackSetOperationInput$ = DescribeStackSetOperationInput$;
|
|
6084
|
-
exports.DescribeStackSetOperationOutput$ = DescribeStackSetOperationOutput$;
|
|
6085
|
-
exports.DescribeStackSetOutput$ = DescribeStackSetOutput$;
|
|
6086
|
-
exports.DescribeStacks$ = DescribeStacks$;
|
|
6087
2856
|
exports.DescribeStacksCommand = DescribeStacksCommand;
|
|
6088
|
-
exports.DescribeStacksInput$ = DescribeStacksInput$;
|
|
6089
|
-
exports.DescribeStacksOutput$ = DescribeStacksOutput$;
|
|
6090
|
-
exports.DescribeType$ = DescribeType$;
|
|
6091
2857
|
exports.DescribeTypeCommand = DescribeTypeCommand;
|
|
6092
|
-
exports.DescribeTypeInput$ = DescribeTypeInput$;
|
|
6093
|
-
exports.DescribeTypeOutput$ = DescribeTypeOutput$;
|
|
6094
|
-
exports.DescribeTypeRegistration$ = DescribeTypeRegistration$;
|
|
6095
2858
|
exports.DescribeTypeRegistrationCommand = DescribeTypeRegistrationCommand;
|
|
6096
|
-
exports.DescribeTypeRegistrationInput$ = DescribeTypeRegistrationInput$;
|
|
6097
|
-
exports.DescribeTypeRegistrationOutput$ = DescribeTypeRegistrationOutput$;
|
|
6098
2859
|
exports.DetailedStatus = DetailedStatus;
|
|
6099
|
-
exports.DetectStackDrift$ = DetectStackDrift$;
|
|
6100
2860
|
exports.DetectStackDriftCommand = DetectStackDriftCommand;
|
|
6101
|
-
exports.DetectStackDriftInput$ = DetectStackDriftInput$;
|
|
6102
|
-
exports.DetectStackDriftOutput$ = DetectStackDriftOutput$;
|
|
6103
|
-
exports.DetectStackResourceDrift$ = DetectStackResourceDrift$;
|
|
6104
2861
|
exports.DetectStackResourceDriftCommand = DetectStackResourceDriftCommand;
|
|
6105
|
-
exports.DetectStackResourceDriftInput$ = DetectStackResourceDriftInput$;
|
|
6106
|
-
exports.DetectStackResourceDriftOutput$ = DetectStackResourceDriftOutput$;
|
|
6107
|
-
exports.DetectStackSetDrift$ = DetectStackSetDrift$;
|
|
6108
2862
|
exports.DetectStackSetDriftCommand = DetectStackSetDriftCommand;
|
|
6109
|
-
exports.DetectStackSetDriftInput$ = DetectStackSetDriftInput$;
|
|
6110
|
-
exports.DetectStackSetDriftOutput$ = DetectStackSetDriftOutput$;
|
|
6111
2863
|
exports.DifferenceType = DifferenceType;
|
|
6112
2864
|
exports.DriftIgnoredReason = DriftIgnoredReason;
|
|
6113
|
-
exports.EstimateTemplateCost$ = EstimateTemplateCost$;
|
|
6114
2865
|
exports.EstimateTemplateCostCommand = EstimateTemplateCostCommand;
|
|
6115
|
-
exports.EstimateTemplateCostInput$ = EstimateTemplateCostInput$;
|
|
6116
|
-
exports.EstimateTemplateCostOutput$ = EstimateTemplateCostOutput$;
|
|
6117
2866
|
exports.EvaluationType = EvaluationType;
|
|
6118
|
-
exports.EventFilter$ = EventFilter$;
|
|
6119
2867
|
exports.EventType = EventType;
|
|
6120
|
-
exports.ExecuteChangeSet$ = ExecuteChangeSet$;
|
|
6121
2868
|
exports.ExecuteChangeSetCommand = ExecuteChangeSetCommand;
|
|
6122
|
-
exports.ExecuteChangeSetInput$ = ExecuteChangeSetInput$;
|
|
6123
|
-
exports.ExecuteChangeSetOutput$ = ExecuteChangeSetOutput$;
|
|
6124
|
-
exports.ExecuteStackRefactor$ = ExecuteStackRefactor$;
|
|
6125
2869
|
exports.ExecuteStackRefactorCommand = ExecuteStackRefactorCommand;
|
|
6126
|
-
exports.ExecuteStackRefactorInput$ = ExecuteStackRefactorInput$;
|
|
6127
2870
|
exports.ExecutionStatus = ExecutionStatus;
|
|
6128
|
-
exports.Export$ = Export$;
|
|
6129
2871
|
exports.GeneratedTemplateDeletionPolicy = GeneratedTemplateDeletionPolicy;
|
|
6130
|
-
exports.GeneratedTemplateNotFoundException = GeneratedTemplateNotFoundException;
|
|
6131
|
-
exports.GeneratedTemplateNotFoundException$ = GeneratedTemplateNotFoundException$;
|
|
6132
2872
|
exports.GeneratedTemplateResourceStatus = GeneratedTemplateResourceStatus;
|
|
6133
2873
|
exports.GeneratedTemplateStatus = GeneratedTemplateStatus;
|
|
6134
2874
|
exports.GeneratedTemplateUpdateReplacePolicy = GeneratedTemplateUpdateReplacePolicy;
|
|
6135
|
-
exports.GetGeneratedTemplate$ = GetGeneratedTemplate$;
|
|
6136
2875
|
exports.GetGeneratedTemplateCommand = GetGeneratedTemplateCommand;
|
|
6137
|
-
exports.GetGeneratedTemplateInput$ = GetGeneratedTemplateInput$;
|
|
6138
|
-
exports.GetGeneratedTemplateOutput$ = GetGeneratedTemplateOutput$;
|
|
6139
|
-
exports.GetHookResult$ = GetHookResult$;
|
|
6140
2876
|
exports.GetHookResultCommand = GetHookResultCommand;
|
|
6141
|
-
exports.GetHookResultInput$ = GetHookResultInput$;
|
|
6142
|
-
exports.GetHookResultOutput$ = GetHookResultOutput$;
|
|
6143
|
-
exports.GetStackPolicy$ = GetStackPolicy$;
|
|
6144
2877
|
exports.GetStackPolicyCommand = GetStackPolicyCommand;
|
|
6145
|
-
exports.GetStackPolicyInput$ = GetStackPolicyInput$;
|
|
6146
|
-
exports.GetStackPolicyOutput$ = GetStackPolicyOutput$;
|
|
6147
|
-
exports.GetTemplate$ = GetTemplate$;
|
|
6148
2878
|
exports.GetTemplateCommand = GetTemplateCommand;
|
|
6149
|
-
exports.GetTemplateInput$ = GetTemplateInput$;
|
|
6150
|
-
exports.GetTemplateOutput$ = GetTemplateOutput$;
|
|
6151
|
-
exports.GetTemplateSummary$ = GetTemplateSummary$;
|
|
6152
2879
|
exports.GetTemplateSummaryCommand = GetTemplateSummaryCommand;
|
|
6153
|
-
exports.GetTemplateSummaryInput$ = GetTemplateSummaryInput$;
|
|
6154
|
-
exports.GetTemplateSummaryOutput$ = GetTemplateSummaryOutput$;
|
|
6155
2880
|
exports.HandlerErrorCode = HandlerErrorCode;
|
|
6156
2881
|
exports.HookFailureMode = HookFailureMode;
|
|
6157
2882
|
exports.HookInvocationPoint = HookInvocationPoint;
|
|
6158
|
-
exports.HookResultNotFoundException = HookResultNotFoundException;
|
|
6159
|
-
exports.HookResultNotFoundException$ = HookResultNotFoundException$;
|
|
6160
|
-
exports.HookResultSummary$ = HookResultSummary$;
|
|
6161
2883
|
exports.HookStatus = HookStatus;
|
|
6162
|
-
exports.HookTarget$ = HookTarget$;
|
|
6163
2884
|
exports.HookTargetAction = HookTargetAction;
|
|
6164
2885
|
exports.HookTargetType = HookTargetType;
|
|
6165
2886
|
exports.IdentityProvider = IdentityProvider;
|
|
6166
|
-
exports.ImportStacksToStackSet$ = ImportStacksToStackSet$;
|
|
6167
2887
|
exports.ImportStacksToStackSetCommand = ImportStacksToStackSetCommand;
|
|
6168
|
-
exports.ImportStacksToStackSetInput$ = ImportStacksToStackSetInput$;
|
|
6169
|
-
exports.ImportStacksToStackSetOutput$ = ImportStacksToStackSetOutput$;
|
|
6170
|
-
exports.InsufficientCapabilitiesException = InsufficientCapabilitiesException;
|
|
6171
|
-
exports.InsufficientCapabilitiesException$ = InsufficientCapabilitiesException$;
|
|
6172
|
-
exports.InvalidChangeSetStatusException = InvalidChangeSetStatusException;
|
|
6173
|
-
exports.InvalidChangeSetStatusException$ = InvalidChangeSetStatusException$;
|
|
6174
|
-
exports.InvalidOperationException = InvalidOperationException;
|
|
6175
|
-
exports.InvalidOperationException$ = InvalidOperationException$;
|
|
6176
|
-
exports.InvalidStateTransitionException = InvalidStateTransitionException;
|
|
6177
|
-
exports.InvalidStateTransitionException$ = InvalidStateTransitionException$;
|
|
6178
|
-
exports.LimitExceededException = LimitExceededException;
|
|
6179
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
6180
|
-
exports.ListChangeSets$ = ListChangeSets$;
|
|
6181
2888
|
exports.ListChangeSetsCommand = ListChangeSetsCommand;
|
|
6182
|
-
exports.ListChangeSetsInput$ = ListChangeSetsInput$;
|
|
6183
|
-
exports.ListChangeSetsOutput$ = ListChangeSetsOutput$;
|
|
6184
|
-
exports.ListExports$ = ListExports$;
|
|
6185
2889
|
exports.ListExportsCommand = ListExportsCommand;
|
|
6186
|
-
exports.ListExportsInput$ = ListExportsInput$;
|
|
6187
|
-
exports.ListExportsOutput$ = ListExportsOutput$;
|
|
6188
|
-
exports.ListGeneratedTemplates$ = ListGeneratedTemplates$;
|
|
6189
2890
|
exports.ListGeneratedTemplatesCommand = ListGeneratedTemplatesCommand;
|
|
6190
|
-
exports.ListGeneratedTemplatesInput$ = ListGeneratedTemplatesInput$;
|
|
6191
|
-
exports.ListGeneratedTemplatesOutput$ = ListGeneratedTemplatesOutput$;
|
|
6192
|
-
exports.ListHookResults$ = ListHookResults$;
|
|
6193
2891
|
exports.ListHookResultsCommand = ListHookResultsCommand;
|
|
6194
|
-
exports.ListHookResultsInput$ = ListHookResultsInput$;
|
|
6195
|
-
exports.ListHookResultsOutput$ = ListHookResultsOutput$;
|
|
6196
2892
|
exports.ListHookResultsTargetType = ListHookResultsTargetType;
|
|
6197
|
-
exports.ListImports$ = ListImports$;
|
|
6198
2893
|
exports.ListImportsCommand = ListImportsCommand;
|
|
6199
|
-
exports.ListImportsInput$ = ListImportsInput$;
|
|
6200
|
-
exports.ListImportsOutput$ = ListImportsOutput$;
|
|
6201
|
-
exports.ListResourceScanRelatedResources$ = ListResourceScanRelatedResources$;
|
|
6202
2894
|
exports.ListResourceScanRelatedResourcesCommand = ListResourceScanRelatedResourcesCommand;
|
|
6203
|
-
exports.ListResourceScanRelatedResourcesInput$ = ListResourceScanRelatedResourcesInput$;
|
|
6204
|
-
exports.ListResourceScanRelatedResourcesOutput$ = ListResourceScanRelatedResourcesOutput$;
|
|
6205
|
-
exports.ListResourceScanResources$ = ListResourceScanResources$;
|
|
6206
2895
|
exports.ListResourceScanResourcesCommand = ListResourceScanResourcesCommand;
|
|
6207
|
-
exports.ListResourceScanResourcesInput$ = ListResourceScanResourcesInput$;
|
|
6208
|
-
exports.ListResourceScanResourcesOutput$ = ListResourceScanResourcesOutput$;
|
|
6209
|
-
exports.ListResourceScans$ = ListResourceScans$;
|
|
6210
2896
|
exports.ListResourceScansCommand = ListResourceScansCommand;
|
|
6211
|
-
exports.ListResourceScansInput$ = ListResourceScansInput$;
|
|
6212
|
-
exports.ListResourceScansOutput$ = ListResourceScansOutput$;
|
|
6213
|
-
exports.ListStackInstanceResourceDrifts$ = ListStackInstanceResourceDrifts$;
|
|
6214
2897
|
exports.ListStackInstanceResourceDriftsCommand = ListStackInstanceResourceDriftsCommand;
|
|
6215
|
-
exports.ListStackInstanceResourceDriftsInput$ = ListStackInstanceResourceDriftsInput$;
|
|
6216
|
-
exports.ListStackInstanceResourceDriftsOutput$ = ListStackInstanceResourceDriftsOutput$;
|
|
6217
|
-
exports.ListStackInstances$ = ListStackInstances$;
|
|
6218
2898
|
exports.ListStackInstancesCommand = ListStackInstancesCommand;
|
|
6219
|
-
exports.ListStackInstancesInput$ = ListStackInstancesInput$;
|
|
6220
|
-
exports.ListStackInstancesOutput$ = ListStackInstancesOutput$;
|
|
6221
|
-
exports.ListStackRefactorActions$ = ListStackRefactorActions$;
|
|
6222
2899
|
exports.ListStackRefactorActionsCommand = ListStackRefactorActionsCommand;
|
|
6223
|
-
exports.ListStackRefactorActionsInput$ = ListStackRefactorActionsInput$;
|
|
6224
|
-
exports.ListStackRefactorActionsOutput$ = ListStackRefactorActionsOutput$;
|
|
6225
|
-
exports.ListStackRefactors$ = ListStackRefactors$;
|
|
6226
2900
|
exports.ListStackRefactorsCommand = ListStackRefactorsCommand;
|
|
6227
|
-
exports.ListStackRefactorsInput$ = ListStackRefactorsInput$;
|
|
6228
|
-
exports.ListStackRefactorsOutput$ = ListStackRefactorsOutput$;
|
|
6229
|
-
exports.ListStackResources$ = ListStackResources$;
|
|
6230
2901
|
exports.ListStackResourcesCommand = ListStackResourcesCommand;
|
|
6231
|
-
exports.ListStackResourcesInput$ = ListStackResourcesInput$;
|
|
6232
|
-
exports.ListStackResourcesOutput$ = ListStackResourcesOutput$;
|
|
6233
|
-
exports.ListStackSetAutoDeploymentTargets$ = ListStackSetAutoDeploymentTargets$;
|
|
6234
2902
|
exports.ListStackSetAutoDeploymentTargetsCommand = ListStackSetAutoDeploymentTargetsCommand;
|
|
6235
|
-
exports.ListStackSetAutoDeploymentTargetsInput$ = ListStackSetAutoDeploymentTargetsInput$;
|
|
6236
|
-
exports.ListStackSetAutoDeploymentTargetsOutput$ = ListStackSetAutoDeploymentTargetsOutput$;
|
|
6237
|
-
exports.ListStackSetOperationResults$ = ListStackSetOperationResults$;
|
|
6238
2903
|
exports.ListStackSetOperationResultsCommand = ListStackSetOperationResultsCommand;
|
|
6239
|
-
exports.ListStackSetOperationResultsInput$ = ListStackSetOperationResultsInput$;
|
|
6240
|
-
exports.ListStackSetOperationResultsOutput$ = ListStackSetOperationResultsOutput$;
|
|
6241
|
-
exports.ListStackSetOperations$ = ListStackSetOperations$;
|
|
6242
2904
|
exports.ListStackSetOperationsCommand = ListStackSetOperationsCommand;
|
|
6243
|
-
exports.ListStackSetOperationsInput$ = ListStackSetOperationsInput$;
|
|
6244
|
-
exports.ListStackSetOperationsOutput$ = ListStackSetOperationsOutput$;
|
|
6245
|
-
exports.ListStackSets$ = ListStackSets$;
|
|
6246
2905
|
exports.ListStackSetsCommand = ListStackSetsCommand;
|
|
6247
|
-
exports.ListStackSetsInput$ = ListStackSetsInput$;
|
|
6248
|
-
exports.ListStackSetsOutput$ = ListStackSetsOutput$;
|
|
6249
|
-
exports.ListStacks$ = ListStacks$;
|
|
6250
2906
|
exports.ListStacksCommand = ListStacksCommand;
|
|
6251
|
-
exports.ListStacksInput$ = ListStacksInput$;
|
|
6252
|
-
exports.ListStacksOutput$ = ListStacksOutput$;
|
|
6253
|
-
exports.ListTypeRegistrations$ = ListTypeRegistrations$;
|
|
6254
2907
|
exports.ListTypeRegistrationsCommand = ListTypeRegistrationsCommand;
|
|
6255
|
-
exports.ListTypeRegistrationsInput$ = ListTypeRegistrationsInput$;
|
|
6256
|
-
exports.ListTypeRegistrationsOutput$ = ListTypeRegistrationsOutput$;
|
|
6257
|
-
exports.ListTypeVersions$ = ListTypeVersions$;
|
|
6258
2908
|
exports.ListTypeVersionsCommand = ListTypeVersionsCommand;
|
|
6259
|
-
exports.ListTypeVersionsInput$ = ListTypeVersionsInput$;
|
|
6260
|
-
exports.ListTypeVersionsOutput$ = ListTypeVersionsOutput$;
|
|
6261
|
-
exports.ListTypes$ = ListTypes$;
|
|
6262
2909
|
exports.ListTypesCommand = ListTypesCommand;
|
|
6263
|
-
exports.ListTypesInput$ = ListTypesInput$;
|
|
6264
|
-
exports.ListTypesOutput$ = ListTypesOutput$;
|
|
6265
|
-
exports.LiveResourceDrift$ = LiveResourceDrift$;
|
|
6266
|
-
exports.LoggingConfig$ = LoggingConfig$;
|
|
6267
|
-
exports.ManagedExecution$ = ManagedExecution$;
|
|
6268
|
-
exports.ModuleInfo$ = ModuleInfo$;
|
|
6269
|
-
exports.NameAlreadyExistsException = NameAlreadyExistsException;
|
|
6270
|
-
exports.NameAlreadyExistsException$ = NameAlreadyExistsException$;
|
|
6271
2910
|
exports.OnFailure = OnFailure;
|
|
6272
2911
|
exports.OnStackFailure = OnStackFailure;
|
|
6273
|
-
exports.OperationEntry$ = OperationEntry$;
|
|
6274
|
-
exports.OperationEvent$ = OperationEvent$;
|
|
6275
|
-
exports.OperationIdAlreadyExistsException = OperationIdAlreadyExistsException;
|
|
6276
|
-
exports.OperationIdAlreadyExistsException$ = OperationIdAlreadyExistsException$;
|
|
6277
|
-
exports.OperationInProgressException = OperationInProgressException;
|
|
6278
|
-
exports.OperationInProgressException$ = OperationInProgressException$;
|
|
6279
|
-
exports.OperationNotFoundException = OperationNotFoundException;
|
|
6280
|
-
exports.OperationNotFoundException$ = OperationNotFoundException$;
|
|
6281
|
-
exports.OperationResultFilter$ = OperationResultFilter$;
|
|
6282
2912
|
exports.OperationResultFilterName = OperationResultFilterName;
|
|
6283
2913
|
exports.OperationStatus = OperationStatus;
|
|
6284
|
-
exports.OperationStatusCheckFailedException = OperationStatusCheckFailedException;
|
|
6285
|
-
exports.OperationStatusCheckFailedException$ = OperationStatusCheckFailedException$;
|
|
6286
2914
|
exports.OperationType = OperationType;
|
|
6287
2915
|
exports.OrganizationStatus = OrganizationStatus;
|
|
6288
|
-
exports.Output$ = Output$;
|
|
6289
|
-
exports.Parameter$ = Parameter$;
|
|
6290
|
-
exports.ParameterConstraints$ = ParameterConstraints$;
|
|
6291
|
-
exports.ParameterDeclaration$ = ParameterDeclaration$;
|
|
6292
2916
|
exports.PermissionModels = PermissionModels;
|
|
6293
|
-
exports.PhysicalResourceIdContextKeyValuePair$ = PhysicalResourceIdContextKeyValuePair$;
|
|
6294
2917
|
exports.PolicyAction = PolicyAction;
|
|
6295
|
-
exports.PropertyDifference$ = PropertyDifference$;
|
|
6296
2918
|
exports.ProvisioningType = ProvisioningType;
|
|
6297
|
-
exports.PublishType$ = PublishType$;
|
|
6298
2919
|
exports.PublishTypeCommand = PublishTypeCommand;
|
|
6299
|
-
exports.PublishTypeInput$ = PublishTypeInput$;
|
|
6300
|
-
exports.PublishTypeOutput$ = PublishTypeOutput$;
|
|
6301
2920
|
exports.PublisherStatus = PublisherStatus;
|
|
6302
|
-
exports.RecordHandlerProgress$ = RecordHandlerProgress$;
|
|
6303
2921
|
exports.RecordHandlerProgressCommand = RecordHandlerProgressCommand;
|
|
6304
|
-
exports.RecordHandlerProgressInput$ = RecordHandlerProgressInput$;
|
|
6305
|
-
exports.RecordHandlerProgressOutput$ = RecordHandlerProgressOutput$;
|
|
6306
2922
|
exports.RegionConcurrencyType = RegionConcurrencyType;
|
|
6307
|
-
exports.RegisterPublisher$ = RegisterPublisher$;
|
|
6308
2923
|
exports.RegisterPublisherCommand = RegisterPublisherCommand;
|
|
6309
|
-
exports.RegisterPublisherInput$ = RegisterPublisherInput$;
|
|
6310
|
-
exports.RegisterPublisherOutput$ = RegisterPublisherOutput$;
|
|
6311
|
-
exports.RegisterType$ = RegisterType$;
|
|
6312
2924
|
exports.RegisterTypeCommand = RegisterTypeCommand;
|
|
6313
|
-
exports.RegisterTypeInput$ = RegisterTypeInput$;
|
|
6314
|
-
exports.RegisterTypeOutput$ = RegisterTypeOutput$;
|
|
6315
2925
|
exports.RegistrationStatus = RegistrationStatus;
|
|
6316
2926
|
exports.RegistryType = RegistryType;
|
|
6317
2927
|
exports.Replacement = Replacement;
|
|
6318
|
-
exports.RequiredActivatedType$ = RequiredActivatedType$;
|
|
6319
2928
|
exports.RequiresRecreation = RequiresRecreation;
|
|
6320
2929
|
exports.ResourceAttribute = ResourceAttribute;
|
|
6321
|
-
exports.ResourceChange$ = ResourceChange$;
|
|
6322
|
-
exports.ResourceChangeDetail$ = ResourceChangeDetail$;
|
|
6323
|
-
exports.ResourceDefinition$ = ResourceDefinition$;
|
|
6324
|
-
exports.ResourceDetail$ = ResourceDetail$;
|
|
6325
|
-
exports.ResourceDriftIgnoredAttribute$ = ResourceDriftIgnoredAttribute$;
|
|
6326
|
-
exports.ResourceIdentifierSummary$ = ResourceIdentifierSummary$;
|
|
6327
|
-
exports.ResourceLocation$ = ResourceLocation$;
|
|
6328
|
-
exports.ResourceMapping$ = ResourceMapping$;
|
|
6329
|
-
exports.ResourceScanInProgressException = ResourceScanInProgressException;
|
|
6330
|
-
exports.ResourceScanInProgressException$ = ResourceScanInProgressException$;
|
|
6331
|
-
exports.ResourceScanLimitExceededException = ResourceScanLimitExceededException;
|
|
6332
|
-
exports.ResourceScanLimitExceededException$ = ResourceScanLimitExceededException$;
|
|
6333
|
-
exports.ResourceScanNotFoundException = ResourceScanNotFoundException;
|
|
6334
|
-
exports.ResourceScanNotFoundException$ = ResourceScanNotFoundException$;
|
|
6335
2930
|
exports.ResourceScanStatus = ResourceScanStatus;
|
|
6336
|
-
exports.ResourceScanSummary$ = ResourceScanSummary$;
|
|
6337
2931
|
exports.ResourceSignalStatus = ResourceSignalStatus;
|
|
6338
2932
|
exports.ResourceStatus = ResourceStatus;
|
|
6339
|
-
exports.ResourceTargetDefinition$ = ResourceTargetDefinition$;
|
|
6340
|
-
exports.ResourceToImport$ = ResourceToImport$;
|
|
6341
|
-
exports.RollbackConfiguration$ = RollbackConfiguration$;
|
|
6342
|
-
exports.RollbackStack$ = RollbackStack$;
|
|
6343
2933
|
exports.RollbackStackCommand = RollbackStackCommand;
|
|
6344
|
-
exports.RollbackStackInput$ = RollbackStackInput$;
|
|
6345
|
-
exports.RollbackStackOutput$ = RollbackStackOutput$;
|
|
6346
|
-
exports.RollbackTrigger$ = RollbackTrigger$;
|
|
6347
|
-
exports.ScanFilter$ = ScanFilter$;
|
|
6348
2934
|
exports.ScanType = ScanType;
|
|
6349
|
-
exports.ScannedResource$ = ScannedResource$;
|
|
6350
|
-
exports.ScannedResourceIdentifier$ = ScannedResourceIdentifier$;
|
|
6351
|
-
exports.SetStackPolicy$ = SetStackPolicy$;
|
|
6352
2935
|
exports.SetStackPolicyCommand = SetStackPolicyCommand;
|
|
6353
|
-
exports.SetStackPolicyInput$ = SetStackPolicyInput$;
|
|
6354
|
-
exports.SetTypeConfiguration$ = SetTypeConfiguration$;
|
|
6355
2936
|
exports.SetTypeConfigurationCommand = SetTypeConfigurationCommand;
|
|
6356
|
-
exports.SetTypeConfigurationInput$ = SetTypeConfigurationInput$;
|
|
6357
|
-
exports.SetTypeConfigurationOutput$ = SetTypeConfigurationOutput$;
|
|
6358
|
-
exports.SetTypeDefaultVersion$ = SetTypeDefaultVersion$;
|
|
6359
2937
|
exports.SetTypeDefaultVersionCommand = SetTypeDefaultVersionCommand;
|
|
6360
|
-
exports.SetTypeDefaultVersionInput$ = SetTypeDefaultVersionInput$;
|
|
6361
|
-
exports.SetTypeDefaultVersionOutput$ = SetTypeDefaultVersionOutput$;
|
|
6362
|
-
exports.SignalResource$ = SignalResource$;
|
|
6363
2938
|
exports.SignalResourceCommand = SignalResourceCommand;
|
|
6364
|
-
exports.SignalResourceInput$ = SignalResourceInput$;
|
|
6365
|
-
exports.Stack$ = Stack$;
|
|
6366
|
-
exports.StackDefinition$ = StackDefinition$;
|
|
6367
2939
|
exports.StackDriftDetectionStatus = StackDriftDetectionStatus;
|
|
6368
|
-
exports.StackDriftInformation$ = StackDriftInformation$;
|
|
6369
|
-
exports.StackDriftInformationSummary$ = StackDriftInformationSummary$;
|
|
6370
2940
|
exports.StackDriftStatus = StackDriftStatus;
|
|
6371
|
-
exports.StackEvent$ = StackEvent$;
|
|
6372
|
-
exports.StackInstance$ = StackInstance$;
|
|
6373
|
-
exports.StackInstanceComprehensiveStatus$ = StackInstanceComprehensiveStatus$;
|
|
6374
2941
|
exports.StackInstanceDetailedStatus = StackInstanceDetailedStatus;
|
|
6375
|
-
exports.StackInstanceFilter$ = StackInstanceFilter$;
|
|
6376
2942
|
exports.StackInstanceFilterName = StackInstanceFilterName;
|
|
6377
|
-
exports.StackInstanceNotFoundException = StackInstanceNotFoundException;
|
|
6378
|
-
exports.StackInstanceNotFoundException$ = StackInstanceNotFoundException$;
|
|
6379
|
-
exports.StackInstanceResourceDriftsSummary$ = StackInstanceResourceDriftsSummary$;
|
|
6380
2943
|
exports.StackInstanceStatus = StackInstanceStatus;
|
|
6381
|
-
exports.StackInstanceSummary$ = StackInstanceSummary$;
|
|
6382
|
-
exports.StackNotFoundException = StackNotFoundException;
|
|
6383
|
-
exports.StackNotFoundException$ = StackNotFoundException$;
|
|
6384
|
-
exports.StackRefactorAction$ = StackRefactorAction$;
|
|
6385
2944
|
exports.StackRefactorActionEntity = StackRefactorActionEntity;
|
|
6386
2945
|
exports.StackRefactorActionType = StackRefactorActionType;
|
|
6387
2946
|
exports.StackRefactorDetection = StackRefactorDetection;
|
|
6388
2947
|
exports.StackRefactorExecutionStatus = StackRefactorExecutionStatus;
|
|
6389
|
-
exports.StackRefactorNotFoundException = StackRefactorNotFoundException;
|
|
6390
|
-
exports.StackRefactorNotFoundException$ = StackRefactorNotFoundException$;
|
|
6391
2948
|
exports.StackRefactorStatus = StackRefactorStatus;
|
|
6392
|
-
exports.StackRefactorSummary$ = StackRefactorSummary$;
|
|
6393
|
-
exports.StackResource$ = StackResource$;
|
|
6394
|
-
exports.StackResourceDetail$ = StackResourceDetail$;
|
|
6395
|
-
exports.StackResourceDrift$ = StackResourceDrift$;
|
|
6396
|
-
exports.StackResourceDriftInformation$ = StackResourceDriftInformation$;
|
|
6397
|
-
exports.StackResourceDriftInformationSummary$ = StackResourceDriftInformationSummary$;
|
|
6398
2949
|
exports.StackResourceDriftStatus = StackResourceDriftStatus;
|
|
6399
|
-
exports.StackResourceSummary$ = StackResourceSummary$;
|
|
6400
|
-
exports.StackSet$ = StackSet$;
|
|
6401
|
-
exports.StackSetAutoDeploymentTargetSummary$ = StackSetAutoDeploymentTargetSummary$;
|
|
6402
|
-
exports.StackSetDriftDetectionDetails$ = StackSetDriftDetectionDetails$;
|
|
6403
2950
|
exports.StackSetDriftDetectionStatus = StackSetDriftDetectionStatus;
|
|
6404
2951
|
exports.StackSetDriftStatus = StackSetDriftStatus;
|
|
6405
|
-
exports.StackSetNotEmptyException = StackSetNotEmptyException;
|
|
6406
|
-
exports.StackSetNotEmptyException$ = StackSetNotEmptyException$;
|
|
6407
|
-
exports.StackSetNotFoundException = StackSetNotFoundException;
|
|
6408
|
-
exports.StackSetNotFoundException$ = StackSetNotFoundException$;
|
|
6409
|
-
exports.StackSetOperation$ = StackSetOperation$;
|
|
6410
2952
|
exports.StackSetOperationAction = StackSetOperationAction;
|
|
6411
|
-
exports.StackSetOperationPreferences$ = StackSetOperationPreferences$;
|
|
6412
2953
|
exports.StackSetOperationResultStatus = StackSetOperationResultStatus;
|
|
6413
|
-
exports.StackSetOperationResultSummary$ = StackSetOperationResultSummary$;
|
|
6414
2954
|
exports.StackSetOperationStatus = StackSetOperationStatus;
|
|
6415
|
-
exports.StackSetOperationStatusDetails$ = StackSetOperationStatusDetails$;
|
|
6416
|
-
exports.StackSetOperationSummary$ = StackSetOperationSummary$;
|
|
6417
2955
|
exports.StackSetStatus = StackSetStatus;
|
|
6418
|
-
exports.StackSetSummary$ = StackSetSummary$;
|
|
6419
2956
|
exports.StackStatus = StackStatus;
|
|
6420
|
-
exports.StackSummary$ = StackSummary$;
|
|
6421
|
-
exports.StaleRequestException = StaleRequestException;
|
|
6422
|
-
exports.StaleRequestException$ = StaleRequestException$;
|
|
6423
|
-
exports.StartResourceScan$ = StartResourceScan$;
|
|
6424
2957
|
exports.StartResourceScanCommand = StartResourceScanCommand;
|
|
6425
|
-
exports.StartResourceScanInput$ = StartResourceScanInput$;
|
|
6426
|
-
exports.StartResourceScanOutput$ = StartResourceScanOutput$;
|
|
6427
|
-
exports.StopStackSetOperation$ = StopStackSetOperation$;
|
|
6428
2958
|
exports.StopStackSetOperationCommand = StopStackSetOperationCommand;
|
|
6429
|
-
exports.StopStackSetOperationInput$ = StopStackSetOperationInput$;
|
|
6430
|
-
exports.StopStackSetOperationOutput$ = StopStackSetOperationOutput$;
|
|
6431
|
-
exports.Tag$ = Tag$;
|
|
6432
|
-
exports.TemplateConfiguration$ = TemplateConfiguration$;
|
|
6433
2959
|
exports.TemplateFormat = TemplateFormat;
|
|
6434
|
-
exports.TemplateParameter$ = TemplateParameter$;
|
|
6435
|
-
exports.TemplateProgress$ = TemplateProgress$;
|
|
6436
2960
|
exports.TemplateStage = TemplateStage;
|
|
6437
|
-
exports.TemplateSummary$ = TemplateSummary$;
|
|
6438
|
-
exports.TemplateSummaryConfig$ = TemplateSummaryConfig$;
|
|
6439
|
-
exports.TestType$ = TestType$;
|
|
6440
2961
|
exports.TestTypeCommand = TestTypeCommand;
|
|
6441
|
-
exports.TestTypeInput$ = TestTypeInput$;
|
|
6442
|
-
exports.TestTypeOutput$ = TestTypeOutput$;
|
|
6443
2962
|
exports.ThirdPartyType = ThirdPartyType;
|
|
6444
|
-
exports.TokenAlreadyExistsException = TokenAlreadyExistsException;
|
|
6445
|
-
exports.TokenAlreadyExistsException$ = TokenAlreadyExistsException$;
|
|
6446
|
-
exports.TypeConfigurationDetails$ = TypeConfigurationDetails$;
|
|
6447
|
-
exports.TypeConfigurationIdentifier$ = TypeConfigurationIdentifier$;
|
|
6448
|
-
exports.TypeConfigurationNotFoundException = TypeConfigurationNotFoundException;
|
|
6449
|
-
exports.TypeConfigurationNotFoundException$ = TypeConfigurationNotFoundException$;
|
|
6450
|
-
exports.TypeFilters$ = TypeFilters$;
|
|
6451
|
-
exports.TypeNotFoundException = TypeNotFoundException;
|
|
6452
|
-
exports.TypeNotFoundException$ = TypeNotFoundException$;
|
|
6453
|
-
exports.TypeSummary$ = TypeSummary$;
|
|
6454
2963
|
exports.TypeTestsStatus = TypeTestsStatus;
|
|
6455
|
-
exports.TypeVersionSummary$ = TypeVersionSummary$;
|
|
6456
|
-
exports.UpdateGeneratedTemplate$ = UpdateGeneratedTemplate$;
|
|
6457
2964
|
exports.UpdateGeneratedTemplateCommand = UpdateGeneratedTemplateCommand;
|
|
6458
|
-
exports.UpdateGeneratedTemplateInput$ = UpdateGeneratedTemplateInput$;
|
|
6459
|
-
exports.UpdateGeneratedTemplateOutput$ = UpdateGeneratedTemplateOutput$;
|
|
6460
|
-
exports.UpdateStack$ = UpdateStack$;
|
|
6461
2965
|
exports.UpdateStackCommand = UpdateStackCommand;
|
|
6462
|
-
exports.UpdateStackInput$ = UpdateStackInput$;
|
|
6463
|
-
exports.UpdateStackInstances$ = UpdateStackInstances$;
|
|
6464
2966
|
exports.UpdateStackInstancesCommand = UpdateStackInstancesCommand;
|
|
6465
|
-
exports.UpdateStackInstancesInput$ = UpdateStackInstancesInput$;
|
|
6466
|
-
exports.UpdateStackInstancesOutput$ = UpdateStackInstancesOutput$;
|
|
6467
|
-
exports.UpdateStackOutput$ = UpdateStackOutput$;
|
|
6468
|
-
exports.UpdateStackSet$ = UpdateStackSet$;
|
|
6469
2967
|
exports.UpdateStackSetCommand = UpdateStackSetCommand;
|
|
6470
|
-
exports.UpdateStackSetInput$ = UpdateStackSetInput$;
|
|
6471
|
-
exports.UpdateStackSetOutput$ = UpdateStackSetOutput$;
|
|
6472
|
-
exports.UpdateTerminationProtection$ = UpdateTerminationProtection$;
|
|
6473
2968
|
exports.UpdateTerminationProtectionCommand = UpdateTerminationProtectionCommand;
|
|
6474
|
-
exports.UpdateTerminationProtectionInput$ = UpdateTerminationProtectionInput$;
|
|
6475
|
-
exports.UpdateTerminationProtectionOutput$ = UpdateTerminationProtectionOutput$;
|
|
6476
|
-
exports.ValidateTemplate$ = ValidateTemplate$;
|
|
6477
2969
|
exports.ValidateTemplateCommand = ValidateTemplateCommand;
|
|
6478
|
-
exports.ValidateTemplateInput$ = ValidateTemplateInput$;
|
|
6479
|
-
exports.ValidateTemplateOutput$ = ValidateTemplateOutput$;
|
|
6480
2970
|
exports.ValidationStatus = ValidationStatus;
|
|
6481
2971
|
exports.VersionBump = VersionBump;
|
|
6482
2972
|
exports.Visibility = Visibility;
|
|
6483
|
-
exports.WarningDetail$ = WarningDetail$;
|
|
6484
|
-
exports.WarningProperty$ = WarningProperty$;
|
|
6485
2973
|
exports.WarningType = WarningType;
|
|
6486
|
-
exports.Warnings$ = Warnings$;
|
|
6487
2974
|
exports.paginateDescribeAccountLimits = paginateDescribeAccountLimits;
|
|
6488
2975
|
exports.paginateDescribeChangeSet = paginateDescribeChangeSet;
|
|
6489
2976
|
exports.paginateDescribeEvents = paginateDescribeEvents;
|
|
@@ -6528,3 +3015,15 @@ exports.waitUntilStackRefactorExecuteComplete = waitUntilStackRefactorExecuteCom
|
|
|
6528
3015
|
exports.waitUntilStackRollbackComplete = waitUntilStackRollbackComplete;
|
|
6529
3016
|
exports.waitUntilStackUpdateComplete = waitUntilStackUpdateComplete;
|
|
6530
3017
|
exports.waitUntilTypeRegistrationComplete = waitUntilTypeRegistrationComplete;
|
|
3018
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
3019
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
3020
|
+
enumerable: true,
|
|
3021
|
+
get: function () { return schemas_0[k]; }
|
|
3022
|
+
});
|
|
3023
|
+
});
|
|
3024
|
+
Object.keys(errors).forEach(function (k) {
|
|
3025
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
3026
|
+
enumerable: true,
|
|
3027
|
+
get: function () { return errors[k]; }
|
|
3028
|
+
});
|
|
3029
|
+
});
|