@aws-sdk/client-elasticache 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 +94 -4122
- package/dist-cjs/models/ElastiCacheServiceException.js +12 -0
- package/dist-cjs/models/errors.js +993 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2724 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +503 -497
- package/dist-types/schemas/schemas_0.d.ts +84 -77
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +79 -77
- 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 ElastiCacheServiceException = require('./models/ElastiCacheServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,3616 +114,6 @@ class ElastiCacheClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class ElastiCacheServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, ElastiCacheServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class CacheClusterNotFoundFault extends ElastiCacheServiceException {
|
|
122
|
-
name = "CacheClusterNotFoundFault";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "CacheClusterNotFoundFault",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, CacheClusterNotFoundFault.prototype);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
class CacheParameterGroupNotFoundFault extends ElastiCacheServiceException {
|
|
134
|
-
name = "CacheParameterGroupNotFoundFault";
|
|
135
|
-
$fault = "client";
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "CacheParameterGroupNotFoundFault",
|
|
139
|
-
$fault: "client",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, CacheParameterGroupNotFoundFault.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class CacheSecurityGroupNotFoundFault extends ElastiCacheServiceException {
|
|
146
|
-
name = "CacheSecurityGroupNotFoundFault";
|
|
147
|
-
$fault = "client";
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "CacheSecurityGroupNotFoundFault",
|
|
151
|
-
$fault: "client",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, CacheSecurityGroupNotFoundFault.prototype);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
class CacheSubnetGroupNotFoundFault extends ElastiCacheServiceException {
|
|
158
|
-
name = "CacheSubnetGroupNotFoundFault";
|
|
159
|
-
$fault = "client";
|
|
160
|
-
constructor(opts) {
|
|
161
|
-
super({
|
|
162
|
-
name: "CacheSubnetGroupNotFoundFault",
|
|
163
|
-
$fault: "client",
|
|
164
|
-
...opts,
|
|
165
|
-
});
|
|
166
|
-
Object.setPrototypeOf(this, CacheSubnetGroupNotFoundFault.prototype);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
class InvalidARNFault extends ElastiCacheServiceException {
|
|
170
|
-
name = "InvalidARNFault";
|
|
171
|
-
$fault = "client";
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "InvalidARNFault",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, InvalidARNFault.prototype);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
class InvalidReplicationGroupStateFault extends ElastiCacheServiceException {
|
|
182
|
-
name = "InvalidReplicationGroupStateFault";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "InvalidReplicationGroupStateFault",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, InvalidReplicationGroupStateFault.prototype);
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
class InvalidServerlessCacheSnapshotStateFault extends ElastiCacheServiceException {
|
|
194
|
-
name = "InvalidServerlessCacheSnapshotStateFault";
|
|
195
|
-
$fault = "client";
|
|
196
|
-
constructor(opts) {
|
|
197
|
-
super({
|
|
198
|
-
name: "InvalidServerlessCacheSnapshotStateFault",
|
|
199
|
-
$fault: "client",
|
|
200
|
-
...opts,
|
|
201
|
-
});
|
|
202
|
-
Object.setPrototypeOf(this, InvalidServerlessCacheSnapshotStateFault.prototype);
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
class InvalidServerlessCacheStateFault extends ElastiCacheServiceException {
|
|
206
|
-
name = "InvalidServerlessCacheStateFault";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "InvalidServerlessCacheStateFault",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, InvalidServerlessCacheStateFault.prototype);
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
class ReplicationGroupNotFoundFault extends ElastiCacheServiceException {
|
|
218
|
-
name = "ReplicationGroupNotFoundFault";
|
|
219
|
-
$fault = "client";
|
|
220
|
-
constructor(opts) {
|
|
221
|
-
super({
|
|
222
|
-
name: "ReplicationGroupNotFoundFault",
|
|
223
|
-
$fault: "client",
|
|
224
|
-
...opts,
|
|
225
|
-
});
|
|
226
|
-
Object.setPrototypeOf(this, ReplicationGroupNotFoundFault.prototype);
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
class ReservedCacheNodeNotFoundFault extends ElastiCacheServiceException {
|
|
230
|
-
name = "ReservedCacheNodeNotFoundFault";
|
|
231
|
-
$fault = "client";
|
|
232
|
-
constructor(opts) {
|
|
233
|
-
super({
|
|
234
|
-
name: "ReservedCacheNodeNotFoundFault",
|
|
235
|
-
$fault: "client",
|
|
236
|
-
...opts,
|
|
237
|
-
});
|
|
238
|
-
Object.setPrototypeOf(this, ReservedCacheNodeNotFoundFault.prototype);
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
class ServerlessCacheNotFoundFault extends ElastiCacheServiceException {
|
|
242
|
-
name = "ServerlessCacheNotFoundFault";
|
|
243
|
-
$fault = "client";
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "ServerlessCacheNotFoundFault",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, ServerlessCacheNotFoundFault.prototype);
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
class ServerlessCacheSnapshotNotFoundFault extends ElastiCacheServiceException {
|
|
254
|
-
name = "ServerlessCacheSnapshotNotFoundFault";
|
|
255
|
-
$fault = "client";
|
|
256
|
-
constructor(opts) {
|
|
257
|
-
super({
|
|
258
|
-
name: "ServerlessCacheSnapshotNotFoundFault",
|
|
259
|
-
$fault: "client",
|
|
260
|
-
...opts,
|
|
261
|
-
});
|
|
262
|
-
Object.setPrototypeOf(this, ServerlessCacheSnapshotNotFoundFault.prototype);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
class SnapshotNotFoundFault extends ElastiCacheServiceException {
|
|
266
|
-
name = "SnapshotNotFoundFault";
|
|
267
|
-
$fault = "client";
|
|
268
|
-
constructor(opts) {
|
|
269
|
-
super({
|
|
270
|
-
name: "SnapshotNotFoundFault",
|
|
271
|
-
$fault: "client",
|
|
272
|
-
...opts,
|
|
273
|
-
});
|
|
274
|
-
Object.setPrototypeOf(this, SnapshotNotFoundFault.prototype);
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
class TagQuotaPerResourceExceeded extends ElastiCacheServiceException {
|
|
278
|
-
name = "TagQuotaPerResourceExceeded";
|
|
279
|
-
$fault = "client";
|
|
280
|
-
constructor(opts) {
|
|
281
|
-
super({
|
|
282
|
-
name: "TagQuotaPerResourceExceeded",
|
|
283
|
-
$fault: "client",
|
|
284
|
-
...opts,
|
|
285
|
-
});
|
|
286
|
-
Object.setPrototypeOf(this, TagQuotaPerResourceExceeded.prototype);
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
class UserGroupNotFoundFault extends ElastiCacheServiceException {
|
|
290
|
-
name = "UserGroupNotFoundFault";
|
|
291
|
-
$fault = "client";
|
|
292
|
-
constructor(opts) {
|
|
293
|
-
super({
|
|
294
|
-
name: "UserGroupNotFoundFault",
|
|
295
|
-
$fault: "client",
|
|
296
|
-
...opts,
|
|
297
|
-
});
|
|
298
|
-
Object.setPrototypeOf(this, UserGroupNotFoundFault.prototype);
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
class UserNotFoundFault extends ElastiCacheServiceException {
|
|
302
|
-
name = "UserNotFoundFault";
|
|
303
|
-
$fault = "client";
|
|
304
|
-
constructor(opts) {
|
|
305
|
-
super({
|
|
306
|
-
name: "UserNotFoundFault",
|
|
307
|
-
$fault: "client",
|
|
308
|
-
...opts,
|
|
309
|
-
});
|
|
310
|
-
Object.setPrototypeOf(this, UserNotFoundFault.prototype);
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
class AuthorizationAlreadyExistsFault extends ElastiCacheServiceException {
|
|
314
|
-
name = "AuthorizationAlreadyExistsFault";
|
|
315
|
-
$fault = "client";
|
|
316
|
-
constructor(opts) {
|
|
317
|
-
super({
|
|
318
|
-
name: "AuthorizationAlreadyExistsFault",
|
|
319
|
-
$fault: "client",
|
|
320
|
-
...opts,
|
|
321
|
-
});
|
|
322
|
-
Object.setPrototypeOf(this, AuthorizationAlreadyExistsFault.prototype);
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
class InvalidCacheSecurityGroupStateFault extends ElastiCacheServiceException {
|
|
326
|
-
name = "InvalidCacheSecurityGroupStateFault";
|
|
327
|
-
$fault = "client";
|
|
328
|
-
constructor(opts) {
|
|
329
|
-
super({
|
|
330
|
-
name: "InvalidCacheSecurityGroupStateFault",
|
|
331
|
-
$fault: "client",
|
|
332
|
-
...opts,
|
|
333
|
-
});
|
|
334
|
-
Object.setPrototypeOf(this, InvalidCacheSecurityGroupStateFault.prototype);
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
class InvalidParameterCombinationException extends ElastiCacheServiceException {
|
|
338
|
-
name = "InvalidParameterCombinationException";
|
|
339
|
-
$fault = "client";
|
|
340
|
-
constructor(opts) {
|
|
341
|
-
super({
|
|
342
|
-
name: "InvalidParameterCombinationException",
|
|
343
|
-
$fault: "client",
|
|
344
|
-
...opts,
|
|
345
|
-
});
|
|
346
|
-
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
class InvalidParameterValueException extends ElastiCacheServiceException {
|
|
350
|
-
name = "InvalidParameterValueException";
|
|
351
|
-
$fault = "client";
|
|
352
|
-
constructor(opts) {
|
|
353
|
-
super({
|
|
354
|
-
name: "InvalidParameterValueException",
|
|
355
|
-
$fault: "client",
|
|
356
|
-
...opts,
|
|
357
|
-
});
|
|
358
|
-
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
class ServiceUpdateNotFoundFault extends ElastiCacheServiceException {
|
|
362
|
-
name = "ServiceUpdateNotFoundFault";
|
|
363
|
-
$fault = "client";
|
|
364
|
-
constructor(opts) {
|
|
365
|
-
super({
|
|
366
|
-
name: "ServiceUpdateNotFoundFault",
|
|
367
|
-
$fault: "client",
|
|
368
|
-
...opts,
|
|
369
|
-
});
|
|
370
|
-
Object.setPrototypeOf(this, ServiceUpdateNotFoundFault.prototype);
|
|
371
|
-
}
|
|
372
|
-
}
|
|
373
|
-
class ReplicationGroupNotUnderMigrationFault extends ElastiCacheServiceException {
|
|
374
|
-
name = "ReplicationGroupNotUnderMigrationFault";
|
|
375
|
-
$fault = "client";
|
|
376
|
-
constructor(opts) {
|
|
377
|
-
super({
|
|
378
|
-
name: "ReplicationGroupNotUnderMigrationFault",
|
|
379
|
-
$fault: "client",
|
|
380
|
-
...opts,
|
|
381
|
-
});
|
|
382
|
-
Object.setPrototypeOf(this, ReplicationGroupNotUnderMigrationFault.prototype);
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
class ServerlessCacheSnapshotAlreadyExistsFault extends ElastiCacheServiceException {
|
|
386
|
-
name = "ServerlessCacheSnapshotAlreadyExistsFault";
|
|
387
|
-
$fault = "client";
|
|
388
|
-
constructor(opts) {
|
|
389
|
-
super({
|
|
390
|
-
name: "ServerlessCacheSnapshotAlreadyExistsFault",
|
|
391
|
-
$fault: "client",
|
|
392
|
-
...opts,
|
|
393
|
-
});
|
|
394
|
-
Object.setPrototypeOf(this, ServerlessCacheSnapshotAlreadyExistsFault.prototype);
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
class ServerlessCacheSnapshotQuotaExceededFault extends ElastiCacheServiceException {
|
|
398
|
-
name = "ServerlessCacheSnapshotQuotaExceededFault";
|
|
399
|
-
$fault = "client";
|
|
400
|
-
constructor(opts) {
|
|
401
|
-
super({
|
|
402
|
-
name: "ServerlessCacheSnapshotQuotaExceededFault",
|
|
403
|
-
$fault: "client",
|
|
404
|
-
...opts,
|
|
405
|
-
});
|
|
406
|
-
Object.setPrototypeOf(this, ServerlessCacheSnapshotQuotaExceededFault.prototype);
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
|
-
class ServiceLinkedRoleNotFoundFault extends ElastiCacheServiceException {
|
|
410
|
-
name = "ServiceLinkedRoleNotFoundFault";
|
|
411
|
-
$fault = "client";
|
|
412
|
-
constructor(opts) {
|
|
413
|
-
super({
|
|
414
|
-
name: "ServiceLinkedRoleNotFoundFault",
|
|
415
|
-
$fault: "client",
|
|
416
|
-
...opts,
|
|
417
|
-
});
|
|
418
|
-
Object.setPrototypeOf(this, ServiceLinkedRoleNotFoundFault.prototype);
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
class InvalidSnapshotStateFault extends ElastiCacheServiceException {
|
|
422
|
-
name = "InvalidSnapshotStateFault";
|
|
423
|
-
$fault = "client";
|
|
424
|
-
constructor(opts) {
|
|
425
|
-
super({
|
|
426
|
-
name: "InvalidSnapshotStateFault",
|
|
427
|
-
$fault: "client",
|
|
428
|
-
...opts,
|
|
429
|
-
});
|
|
430
|
-
Object.setPrototypeOf(this, InvalidSnapshotStateFault.prototype);
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
class SnapshotAlreadyExistsFault extends ElastiCacheServiceException {
|
|
434
|
-
name = "SnapshotAlreadyExistsFault";
|
|
435
|
-
$fault = "client";
|
|
436
|
-
constructor(opts) {
|
|
437
|
-
super({
|
|
438
|
-
name: "SnapshotAlreadyExistsFault",
|
|
439
|
-
$fault: "client",
|
|
440
|
-
...opts,
|
|
441
|
-
});
|
|
442
|
-
Object.setPrototypeOf(this, SnapshotAlreadyExistsFault.prototype);
|
|
443
|
-
}
|
|
444
|
-
}
|
|
445
|
-
class SnapshotQuotaExceededFault extends ElastiCacheServiceException {
|
|
446
|
-
name = "SnapshotQuotaExceededFault";
|
|
447
|
-
$fault = "client";
|
|
448
|
-
constructor(opts) {
|
|
449
|
-
super({
|
|
450
|
-
name: "SnapshotQuotaExceededFault",
|
|
451
|
-
$fault: "client",
|
|
452
|
-
...opts,
|
|
453
|
-
});
|
|
454
|
-
Object.setPrototypeOf(this, SnapshotQuotaExceededFault.prototype);
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
class CacheClusterAlreadyExistsFault extends ElastiCacheServiceException {
|
|
458
|
-
name = "CacheClusterAlreadyExistsFault";
|
|
459
|
-
$fault = "client";
|
|
460
|
-
constructor(opts) {
|
|
461
|
-
super({
|
|
462
|
-
name: "CacheClusterAlreadyExistsFault",
|
|
463
|
-
$fault: "client",
|
|
464
|
-
...opts,
|
|
465
|
-
});
|
|
466
|
-
Object.setPrototypeOf(this, CacheClusterAlreadyExistsFault.prototype);
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
class ClusterQuotaForCustomerExceededFault extends ElastiCacheServiceException {
|
|
470
|
-
name = "ClusterQuotaForCustomerExceededFault";
|
|
471
|
-
$fault = "client";
|
|
472
|
-
constructor(opts) {
|
|
473
|
-
super({
|
|
474
|
-
name: "ClusterQuotaForCustomerExceededFault",
|
|
475
|
-
$fault: "client",
|
|
476
|
-
...opts,
|
|
477
|
-
});
|
|
478
|
-
Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
class InsufficientCacheClusterCapacityFault extends ElastiCacheServiceException {
|
|
482
|
-
name = "InsufficientCacheClusterCapacityFault";
|
|
483
|
-
$fault = "client";
|
|
484
|
-
constructor(opts) {
|
|
485
|
-
super({
|
|
486
|
-
name: "InsufficientCacheClusterCapacityFault",
|
|
487
|
-
$fault: "client",
|
|
488
|
-
...opts,
|
|
489
|
-
});
|
|
490
|
-
Object.setPrototypeOf(this, InsufficientCacheClusterCapacityFault.prototype);
|
|
491
|
-
}
|
|
492
|
-
}
|
|
493
|
-
class InvalidVPCNetworkStateFault extends ElastiCacheServiceException {
|
|
494
|
-
name = "InvalidVPCNetworkStateFault";
|
|
495
|
-
$fault = "client";
|
|
496
|
-
constructor(opts) {
|
|
497
|
-
super({
|
|
498
|
-
name: "InvalidVPCNetworkStateFault",
|
|
499
|
-
$fault: "client",
|
|
500
|
-
...opts,
|
|
501
|
-
});
|
|
502
|
-
Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
class NodeQuotaForClusterExceededFault extends ElastiCacheServiceException {
|
|
506
|
-
name = "NodeQuotaForClusterExceededFault";
|
|
507
|
-
$fault = "client";
|
|
508
|
-
constructor(opts) {
|
|
509
|
-
super({
|
|
510
|
-
name: "NodeQuotaForClusterExceededFault",
|
|
511
|
-
$fault: "client",
|
|
512
|
-
...opts,
|
|
513
|
-
});
|
|
514
|
-
Object.setPrototypeOf(this, NodeQuotaForClusterExceededFault.prototype);
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
class NodeQuotaForCustomerExceededFault extends ElastiCacheServiceException {
|
|
518
|
-
name = "NodeQuotaForCustomerExceededFault";
|
|
519
|
-
$fault = "client";
|
|
520
|
-
constructor(opts) {
|
|
521
|
-
super({
|
|
522
|
-
name: "NodeQuotaForCustomerExceededFault",
|
|
523
|
-
$fault: "client",
|
|
524
|
-
...opts,
|
|
525
|
-
});
|
|
526
|
-
Object.setPrototypeOf(this, NodeQuotaForCustomerExceededFault.prototype);
|
|
527
|
-
}
|
|
528
|
-
}
|
|
529
|
-
class CacheParameterGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
530
|
-
name = "CacheParameterGroupAlreadyExistsFault";
|
|
531
|
-
$fault = "client";
|
|
532
|
-
constructor(opts) {
|
|
533
|
-
super({
|
|
534
|
-
name: "CacheParameterGroupAlreadyExistsFault",
|
|
535
|
-
$fault: "client",
|
|
536
|
-
...opts,
|
|
537
|
-
});
|
|
538
|
-
Object.setPrototypeOf(this, CacheParameterGroupAlreadyExistsFault.prototype);
|
|
539
|
-
}
|
|
540
|
-
}
|
|
541
|
-
class CacheParameterGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
542
|
-
name = "CacheParameterGroupQuotaExceededFault";
|
|
543
|
-
$fault = "client";
|
|
544
|
-
constructor(opts) {
|
|
545
|
-
super({
|
|
546
|
-
name: "CacheParameterGroupQuotaExceededFault",
|
|
547
|
-
$fault: "client",
|
|
548
|
-
...opts,
|
|
549
|
-
});
|
|
550
|
-
Object.setPrototypeOf(this, CacheParameterGroupQuotaExceededFault.prototype);
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
class InvalidCacheParameterGroupStateFault extends ElastiCacheServiceException {
|
|
554
|
-
name = "InvalidCacheParameterGroupStateFault";
|
|
555
|
-
$fault = "client";
|
|
556
|
-
constructor(opts) {
|
|
557
|
-
super({
|
|
558
|
-
name: "InvalidCacheParameterGroupStateFault",
|
|
559
|
-
$fault: "client",
|
|
560
|
-
...opts,
|
|
561
|
-
});
|
|
562
|
-
Object.setPrototypeOf(this, InvalidCacheParameterGroupStateFault.prototype);
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
class CacheSecurityGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
566
|
-
name = "CacheSecurityGroupAlreadyExistsFault";
|
|
567
|
-
$fault = "client";
|
|
568
|
-
constructor(opts) {
|
|
569
|
-
super({
|
|
570
|
-
name: "CacheSecurityGroupAlreadyExistsFault",
|
|
571
|
-
$fault: "client",
|
|
572
|
-
...opts,
|
|
573
|
-
});
|
|
574
|
-
Object.setPrototypeOf(this, CacheSecurityGroupAlreadyExistsFault.prototype);
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
|
-
class CacheSecurityGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
578
|
-
name = "CacheSecurityGroupQuotaExceededFault";
|
|
579
|
-
$fault = "client";
|
|
580
|
-
constructor(opts) {
|
|
581
|
-
super({
|
|
582
|
-
name: "CacheSecurityGroupQuotaExceededFault",
|
|
583
|
-
$fault: "client",
|
|
584
|
-
...opts,
|
|
585
|
-
});
|
|
586
|
-
Object.setPrototypeOf(this, CacheSecurityGroupQuotaExceededFault.prototype);
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
class CacheSubnetGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
590
|
-
name = "CacheSubnetGroupAlreadyExistsFault";
|
|
591
|
-
$fault = "client";
|
|
592
|
-
constructor(opts) {
|
|
593
|
-
super({
|
|
594
|
-
name: "CacheSubnetGroupAlreadyExistsFault",
|
|
595
|
-
$fault: "client",
|
|
596
|
-
...opts,
|
|
597
|
-
});
|
|
598
|
-
Object.setPrototypeOf(this, CacheSubnetGroupAlreadyExistsFault.prototype);
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
class CacheSubnetGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
602
|
-
name = "CacheSubnetGroupQuotaExceededFault";
|
|
603
|
-
$fault = "client";
|
|
604
|
-
constructor(opts) {
|
|
605
|
-
super({
|
|
606
|
-
name: "CacheSubnetGroupQuotaExceededFault",
|
|
607
|
-
$fault: "client",
|
|
608
|
-
...opts,
|
|
609
|
-
});
|
|
610
|
-
Object.setPrototypeOf(this, CacheSubnetGroupQuotaExceededFault.prototype);
|
|
611
|
-
}
|
|
612
|
-
}
|
|
613
|
-
class CacheSubnetQuotaExceededFault extends ElastiCacheServiceException {
|
|
614
|
-
name = "CacheSubnetQuotaExceededFault";
|
|
615
|
-
$fault = "client";
|
|
616
|
-
constructor(opts) {
|
|
617
|
-
super({
|
|
618
|
-
name: "CacheSubnetQuotaExceededFault",
|
|
619
|
-
$fault: "client",
|
|
620
|
-
...opts,
|
|
621
|
-
});
|
|
622
|
-
Object.setPrototypeOf(this, CacheSubnetQuotaExceededFault.prototype);
|
|
623
|
-
}
|
|
624
|
-
}
|
|
625
|
-
class InvalidSubnet extends ElastiCacheServiceException {
|
|
626
|
-
name = "InvalidSubnet";
|
|
627
|
-
$fault = "client";
|
|
628
|
-
constructor(opts) {
|
|
629
|
-
super({
|
|
630
|
-
name: "InvalidSubnet",
|
|
631
|
-
$fault: "client",
|
|
632
|
-
...opts,
|
|
633
|
-
});
|
|
634
|
-
Object.setPrototypeOf(this, InvalidSubnet.prototype);
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
class SubnetNotAllowedFault extends ElastiCacheServiceException {
|
|
638
|
-
name = "SubnetNotAllowedFault";
|
|
639
|
-
$fault = "client";
|
|
640
|
-
constructor(opts) {
|
|
641
|
-
super({
|
|
642
|
-
name: "SubnetNotAllowedFault",
|
|
643
|
-
$fault: "client",
|
|
644
|
-
...opts,
|
|
645
|
-
});
|
|
646
|
-
Object.setPrototypeOf(this, SubnetNotAllowedFault.prototype);
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
class GlobalReplicationGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
650
|
-
name = "GlobalReplicationGroupAlreadyExistsFault";
|
|
651
|
-
$fault = "client";
|
|
652
|
-
constructor(opts) {
|
|
653
|
-
super({
|
|
654
|
-
name: "GlobalReplicationGroupAlreadyExistsFault",
|
|
655
|
-
$fault: "client",
|
|
656
|
-
...opts,
|
|
657
|
-
});
|
|
658
|
-
Object.setPrototypeOf(this, GlobalReplicationGroupAlreadyExistsFault.prototype);
|
|
659
|
-
}
|
|
660
|
-
}
|
|
661
|
-
class GlobalReplicationGroupNotFoundFault extends ElastiCacheServiceException {
|
|
662
|
-
name = "GlobalReplicationGroupNotFoundFault";
|
|
663
|
-
$fault = "client";
|
|
664
|
-
constructor(opts) {
|
|
665
|
-
super({
|
|
666
|
-
name: "GlobalReplicationGroupNotFoundFault",
|
|
667
|
-
$fault: "client",
|
|
668
|
-
...opts,
|
|
669
|
-
});
|
|
670
|
-
Object.setPrototypeOf(this, GlobalReplicationGroupNotFoundFault.prototype);
|
|
671
|
-
}
|
|
672
|
-
}
|
|
673
|
-
class InvalidCacheClusterStateFault extends ElastiCacheServiceException {
|
|
674
|
-
name = "InvalidCacheClusterStateFault";
|
|
675
|
-
$fault = "client";
|
|
676
|
-
constructor(opts) {
|
|
677
|
-
super({
|
|
678
|
-
name: "InvalidCacheClusterStateFault",
|
|
679
|
-
$fault: "client",
|
|
680
|
-
...opts,
|
|
681
|
-
});
|
|
682
|
-
Object.setPrototypeOf(this, InvalidCacheClusterStateFault.prototype);
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
class InvalidGlobalReplicationGroupStateFault extends ElastiCacheServiceException {
|
|
686
|
-
name = "InvalidGlobalReplicationGroupStateFault";
|
|
687
|
-
$fault = "client";
|
|
688
|
-
constructor(opts) {
|
|
689
|
-
super({
|
|
690
|
-
name: "InvalidGlobalReplicationGroupStateFault",
|
|
691
|
-
$fault: "client",
|
|
692
|
-
...opts,
|
|
693
|
-
});
|
|
694
|
-
Object.setPrototypeOf(this, InvalidGlobalReplicationGroupStateFault.prototype);
|
|
695
|
-
}
|
|
696
|
-
}
|
|
697
|
-
class InvalidUserGroupStateFault extends ElastiCacheServiceException {
|
|
698
|
-
name = "InvalidUserGroupStateFault";
|
|
699
|
-
$fault = "client";
|
|
700
|
-
constructor(opts) {
|
|
701
|
-
super({
|
|
702
|
-
name: "InvalidUserGroupStateFault",
|
|
703
|
-
$fault: "client",
|
|
704
|
-
...opts,
|
|
705
|
-
});
|
|
706
|
-
Object.setPrototypeOf(this, InvalidUserGroupStateFault.prototype);
|
|
707
|
-
}
|
|
708
|
-
}
|
|
709
|
-
class NodeGroupsPerReplicationGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
710
|
-
name = "NodeGroupsPerReplicationGroupQuotaExceededFault";
|
|
711
|
-
$fault = "client";
|
|
712
|
-
constructor(opts) {
|
|
713
|
-
super({
|
|
714
|
-
name: "NodeGroupsPerReplicationGroupQuotaExceededFault",
|
|
715
|
-
$fault: "client",
|
|
716
|
-
...opts,
|
|
717
|
-
});
|
|
718
|
-
Object.setPrototypeOf(this, NodeGroupsPerReplicationGroupQuotaExceededFault.prototype);
|
|
719
|
-
}
|
|
720
|
-
}
|
|
721
|
-
class ReplicationGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
722
|
-
name = "ReplicationGroupAlreadyExistsFault";
|
|
723
|
-
$fault = "client";
|
|
724
|
-
constructor(opts) {
|
|
725
|
-
super({
|
|
726
|
-
name: "ReplicationGroupAlreadyExistsFault",
|
|
727
|
-
$fault: "client",
|
|
728
|
-
...opts,
|
|
729
|
-
});
|
|
730
|
-
Object.setPrototypeOf(this, ReplicationGroupAlreadyExistsFault.prototype);
|
|
731
|
-
}
|
|
732
|
-
}
|
|
733
|
-
class InvalidCredentialsException extends ElastiCacheServiceException {
|
|
734
|
-
name = "InvalidCredentialsException";
|
|
735
|
-
$fault = "client";
|
|
736
|
-
constructor(opts) {
|
|
737
|
-
super({
|
|
738
|
-
name: "InvalidCredentialsException",
|
|
739
|
-
$fault: "client",
|
|
740
|
-
...opts,
|
|
741
|
-
});
|
|
742
|
-
Object.setPrototypeOf(this, InvalidCredentialsException.prototype);
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
class ServerlessCacheAlreadyExistsFault extends ElastiCacheServiceException {
|
|
746
|
-
name = "ServerlessCacheAlreadyExistsFault";
|
|
747
|
-
$fault = "client";
|
|
748
|
-
constructor(opts) {
|
|
749
|
-
super({
|
|
750
|
-
name: "ServerlessCacheAlreadyExistsFault",
|
|
751
|
-
$fault: "client",
|
|
752
|
-
...opts,
|
|
753
|
-
});
|
|
754
|
-
Object.setPrototypeOf(this, ServerlessCacheAlreadyExistsFault.prototype);
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
class ServerlessCacheQuotaForCustomerExceededFault extends ElastiCacheServiceException {
|
|
758
|
-
name = "ServerlessCacheQuotaForCustomerExceededFault";
|
|
759
|
-
$fault = "client";
|
|
760
|
-
constructor(opts) {
|
|
761
|
-
super({
|
|
762
|
-
name: "ServerlessCacheQuotaForCustomerExceededFault",
|
|
763
|
-
$fault: "client",
|
|
764
|
-
...opts,
|
|
765
|
-
});
|
|
766
|
-
Object.setPrototypeOf(this, ServerlessCacheQuotaForCustomerExceededFault.prototype);
|
|
767
|
-
}
|
|
768
|
-
}
|
|
769
|
-
class SnapshotFeatureNotSupportedFault extends ElastiCacheServiceException {
|
|
770
|
-
name = "SnapshotFeatureNotSupportedFault";
|
|
771
|
-
$fault = "client";
|
|
772
|
-
constructor(opts) {
|
|
773
|
-
super({
|
|
774
|
-
name: "SnapshotFeatureNotSupportedFault",
|
|
775
|
-
$fault: "client",
|
|
776
|
-
...opts,
|
|
777
|
-
});
|
|
778
|
-
Object.setPrototypeOf(this, SnapshotFeatureNotSupportedFault.prototype);
|
|
779
|
-
}
|
|
780
|
-
}
|
|
781
|
-
class DuplicateUserNameFault extends ElastiCacheServiceException {
|
|
782
|
-
name = "DuplicateUserNameFault";
|
|
783
|
-
$fault = "client";
|
|
784
|
-
constructor(opts) {
|
|
785
|
-
super({
|
|
786
|
-
name: "DuplicateUserNameFault",
|
|
787
|
-
$fault: "client",
|
|
788
|
-
...opts,
|
|
789
|
-
});
|
|
790
|
-
Object.setPrototypeOf(this, DuplicateUserNameFault.prototype);
|
|
791
|
-
}
|
|
792
|
-
}
|
|
793
|
-
class UserAlreadyExistsFault extends ElastiCacheServiceException {
|
|
794
|
-
name = "UserAlreadyExistsFault";
|
|
795
|
-
$fault = "client";
|
|
796
|
-
constructor(opts) {
|
|
797
|
-
super({
|
|
798
|
-
name: "UserAlreadyExistsFault",
|
|
799
|
-
$fault: "client",
|
|
800
|
-
...opts,
|
|
801
|
-
});
|
|
802
|
-
Object.setPrototypeOf(this, UserAlreadyExistsFault.prototype);
|
|
803
|
-
}
|
|
804
|
-
}
|
|
805
|
-
class UserQuotaExceededFault extends ElastiCacheServiceException {
|
|
806
|
-
name = "UserQuotaExceededFault";
|
|
807
|
-
$fault = "client";
|
|
808
|
-
constructor(opts) {
|
|
809
|
-
super({
|
|
810
|
-
name: "UserQuotaExceededFault",
|
|
811
|
-
$fault: "client",
|
|
812
|
-
...opts,
|
|
813
|
-
});
|
|
814
|
-
Object.setPrototypeOf(this, UserQuotaExceededFault.prototype);
|
|
815
|
-
}
|
|
816
|
-
}
|
|
817
|
-
class DefaultUserRequired extends ElastiCacheServiceException {
|
|
818
|
-
name = "DefaultUserRequired";
|
|
819
|
-
$fault = "client";
|
|
820
|
-
constructor(opts) {
|
|
821
|
-
super({
|
|
822
|
-
name: "DefaultUserRequired",
|
|
823
|
-
$fault: "client",
|
|
824
|
-
...opts,
|
|
825
|
-
});
|
|
826
|
-
Object.setPrototypeOf(this, DefaultUserRequired.prototype);
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
class UserGroupAlreadyExistsFault extends ElastiCacheServiceException {
|
|
830
|
-
name = "UserGroupAlreadyExistsFault";
|
|
831
|
-
$fault = "client";
|
|
832
|
-
constructor(opts) {
|
|
833
|
-
super({
|
|
834
|
-
name: "UserGroupAlreadyExistsFault",
|
|
835
|
-
$fault: "client",
|
|
836
|
-
...opts,
|
|
837
|
-
});
|
|
838
|
-
Object.setPrototypeOf(this, UserGroupAlreadyExistsFault.prototype);
|
|
839
|
-
}
|
|
840
|
-
}
|
|
841
|
-
class UserGroupQuotaExceededFault extends ElastiCacheServiceException {
|
|
842
|
-
name = "UserGroupQuotaExceededFault";
|
|
843
|
-
$fault = "client";
|
|
844
|
-
constructor(opts) {
|
|
845
|
-
super({
|
|
846
|
-
name: "UserGroupQuotaExceededFault",
|
|
847
|
-
$fault: "client",
|
|
848
|
-
...opts,
|
|
849
|
-
});
|
|
850
|
-
Object.setPrototypeOf(this, UserGroupQuotaExceededFault.prototype);
|
|
851
|
-
}
|
|
852
|
-
}
|
|
853
|
-
class NoOperationFault extends ElastiCacheServiceException {
|
|
854
|
-
name = "NoOperationFault";
|
|
855
|
-
$fault = "client";
|
|
856
|
-
constructor(opts) {
|
|
857
|
-
super({
|
|
858
|
-
name: "NoOperationFault",
|
|
859
|
-
$fault: "client",
|
|
860
|
-
...opts,
|
|
861
|
-
});
|
|
862
|
-
Object.setPrototypeOf(this, NoOperationFault.prototype);
|
|
863
|
-
}
|
|
864
|
-
}
|
|
865
|
-
class CacheSubnetGroupInUse extends ElastiCacheServiceException {
|
|
866
|
-
name = "CacheSubnetGroupInUse";
|
|
867
|
-
$fault = "client";
|
|
868
|
-
constructor(opts) {
|
|
869
|
-
super({
|
|
870
|
-
name: "CacheSubnetGroupInUse",
|
|
871
|
-
$fault: "client",
|
|
872
|
-
...opts,
|
|
873
|
-
});
|
|
874
|
-
Object.setPrototypeOf(this, CacheSubnetGroupInUse.prototype);
|
|
875
|
-
}
|
|
876
|
-
}
|
|
877
|
-
class DefaultUserAssociatedToUserGroupFault extends ElastiCacheServiceException {
|
|
878
|
-
name = "DefaultUserAssociatedToUserGroupFault";
|
|
879
|
-
$fault = "client";
|
|
880
|
-
constructor(opts) {
|
|
881
|
-
super({
|
|
882
|
-
name: "DefaultUserAssociatedToUserGroupFault",
|
|
883
|
-
$fault: "client",
|
|
884
|
-
...opts,
|
|
885
|
-
});
|
|
886
|
-
Object.setPrototypeOf(this, DefaultUserAssociatedToUserGroupFault.prototype);
|
|
887
|
-
}
|
|
888
|
-
}
|
|
889
|
-
class InvalidUserStateFault extends ElastiCacheServiceException {
|
|
890
|
-
name = "InvalidUserStateFault";
|
|
891
|
-
$fault = "client";
|
|
892
|
-
constructor(opts) {
|
|
893
|
-
super({
|
|
894
|
-
name: "InvalidUserStateFault",
|
|
895
|
-
$fault: "client",
|
|
896
|
-
...opts,
|
|
897
|
-
});
|
|
898
|
-
Object.setPrototypeOf(this, InvalidUserStateFault.prototype);
|
|
899
|
-
}
|
|
900
|
-
}
|
|
901
|
-
class ReservedCacheNodesOfferingNotFoundFault extends ElastiCacheServiceException {
|
|
902
|
-
name = "ReservedCacheNodesOfferingNotFoundFault";
|
|
903
|
-
$fault = "client";
|
|
904
|
-
constructor(opts) {
|
|
905
|
-
super({
|
|
906
|
-
name: "ReservedCacheNodesOfferingNotFoundFault",
|
|
907
|
-
$fault: "client",
|
|
908
|
-
...opts,
|
|
909
|
-
});
|
|
910
|
-
Object.setPrototypeOf(this, ReservedCacheNodesOfferingNotFoundFault.prototype);
|
|
911
|
-
}
|
|
912
|
-
}
|
|
913
|
-
class InvalidKMSKeyFault extends ElastiCacheServiceException {
|
|
914
|
-
name = "InvalidKMSKeyFault";
|
|
915
|
-
$fault = "client";
|
|
916
|
-
constructor(opts) {
|
|
917
|
-
super({
|
|
918
|
-
name: "InvalidKMSKeyFault",
|
|
919
|
-
$fault: "client",
|
|
920
|
-
...opts,
|
|
921
|
-
});
|
|
922
|
-
Object.setPrototypeOf(this, InvalidKMSKeyFault.prototype);
|
|
923
|
-
}
|
|
924
|
-
}
|
|
925
|
-
class SubnetInUse extends ElastiCacheServiceException {
|
|
926
|
-
name = "SubnetInUse";
|
|
927
|
-
$fault = "client";
|
|
928
|
-
constructor(opts) {
|
|
929
|
-
super({
|
|
930
|
-
name: "SubnetInUse",
|
|
931
|
-
$fault: "client",
|
|
932
|
-
...opts,
|
|
933
|
-
});
|
|
934
|
-
Object.setPrototypeOf(this, SubnetInUse.prototype);
|
|
935
|
-
}
|
|
936
|
-
}
|
|
937
|
-
class ReservedCacheNodeAlreadyExistsFault extends ElastiCacheServiceException {
|
|
938
|
-
name = "ReservedCacheNodeAlreadyExistsFault";
|
|
939
|
-
$fault = "client";
|
|
940
|
-
constructor(opts) {
|
|
941
|
-
super({
|
|
942
|
-
name: "ReservedCacheNodeAlreadyExistsFault",
|
|
943
|
-
$fault: "client",
|
|
944
|
-
...opts,
|
|
945
|
-
});
|
|
946
|
-
Object.setPrototypeOf(this, ReservedCacheNodeAlreadyExistsFault.prototype);
|
|
947
|
-
}
|
|
948
|
-
}
|
|
949
|
-
class ReservedCacheNodeQuotaExceededFault extends ElastiCacheServiceException {
|
|
950
|
-
name = "ReservedCacheNodeQuotaExceededFault";
|
|
951
|
-
$fault = "client";
|
|
952
|
-
constructor(opts) {
|
|
953
|
-
super({
|
|
954
|
-
name: "ReservedCacheNodeQuotaExceededFault",
|
|
955
|
-
$fault: "client",
|
|
956
|
-
...opts,
|
|
957
|
-
});
|
|
958
|
-
Object.setPrototypeOf(this, ReservedCacheNodeQuotaExceededFault.prototype);
|
|
959
|
-
}
|
|
960
|
-
}
|
|
961
|
-
class TagNotFoundFault extends ElastiCacheServiceException {
|
|
962
|
-
name = "TagNotFoundFault";
|
|
963
|
-
$fault = "client";
|
|
964
|
-
constructor(opts) {
|
|
965
|
-
super({
|
|
966
|
-
name: "TagNotFoundFault",
|
|
967
|
-
$fault: "client",
|
|
968
|
-
...opts,
|
|
969
|
-
});
|
|
970
|
-
Object.setPrototypeOf(this, TagNotFoundFault.prototype);
|
|
971
|
-
}
|
|
972
|
-
}
|
|
973
|
-
class AuthorizationNotFoundFault extends ElastiCacheServiceException {
|
|
974
|
-
name = "AuthorizationNotFoundFault";
|
|
975
|
-
$fault = "client";
|
|
976
|
-
constructor(opts) {
|
|
977
|
-
super({
|
|
978
|
-
name: "AuthorizationNotFoundFault",
|
|
979
|
-
$fault: "client",
|
|
980
|
-
...opts,
|
|
981
|
-
});
|
|
982
|
-
Object.setPrototypeOf(this, AuthorizationNotFoundFault.prototype);
|
|
983
|
-
}
|
|
984
|
-
}
|
|
985
|
-
class ReplicationGroupAlreadyUnderMigrationFault extends ElastiCacheServiceException {
|
|
986
|
-
name = "ReplicationGroupAlreadyUnderMigrationFault";
|
|
987
|
-
$fault = "client";
|
|
988
|
-
constructor(opts) {
|
|
989
|
-
super({
|
|
990
|
-
name: "ReplicationGroupAlreadyUnderMigrationFault",
|
|
991
|
-
$fault: "client",
|
|
992
|
-
...opts,
|
|
993
|
-
});
|
|
994
|
-
Object.setPrototypeOf(this, ReplicationGroupAlreadyUnderMigrationFault.prototype);
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
class APICallRateForCustomerExceededFault extends ElastiCacheServiceException {
|
|
998
|
-
name = "APICallRateForCustomerExceededFault";
|
|
999
|
-
$fault = "client";
|
|
1000
|
-
constructor(opts) {
|
|
1001
|
-
super({
|
|
1002
|
-
name: "APICallRateForCustomerExceededFault",
|
|
1003
|
-
$fault: "client",
|
|
1004
|
-
...opts,
|
|
1005
|
-
});
|
|
1006
|
-
Object.setPrototypeOf(this, APICallRateForCustomerExceededFault.prototype);
|
|
1007
|
-
}
|
|
1008
|
-
}
|
|
1009
|
-
class NodeGroupNotFoundFault extends ElastiCacheServiceException {
|
|
1010
|
-
name = "NodeGroupNotFoundFault";
|
|
1011
|
-
$fault = "client";
|
|
1012
|
-
constructor(opts) {
|
|
1013
|
-
super({
|
|
1014
|
-
name: "NodeGroupNotFoundFault",
|
|
1015
|
-
$fault: "client",
|
|
1016
|
-
...opts,
|
|
1017
|
-
});
|
|
1018
|
-
Object.setPrototypeOf(this, NodeGroupNotFoundFault.prototype);
|
|
1019
|
-
}
|
|
1020
|
-
}
|
|
1021
|
-
class TestFailoverNotAvailableFault extends ElastiCacheServiceException {
|
|
1022
|
-
name = "TestFailoverNotAvailableFault";
|
|
1023
|
-
$fault = "client";
|
|
1024
|
-
constructor(opts) {
|
|
1025
|
-
super({
|
|
1026
|
-
name: "TestFailoverNotAvailableFault",
|
|
1027
|
-
$fault: "client",
|
|
1028
|
-
...opts,
|
|
1029
|
-
});
|
|
1030
|
-
Object.setPrototypeOf(this, TestFailoverNotAvailableFault.prototype);
|
|
1031
|
-
}
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
const _A = "Authentication";
|
|
1035
|
-
const _AAEF = "AuthorizationAlreadyExistsFault";
|
|
1036
|
-
const _AAS = "AppendAccessString";
|
|
1037
|
-
const _ACSGI = "AuthorizeCacheSecurityGroupIngress";
|
|
1038
|
-
const _ACSGIM = "AuthorizeCacheSecurityGroupIngressMessage";
|
|
1039
|
-
const _ACSGIR = "AuthorizeCacheSecurityGroupIngressResult";
|
|
1040
|
-
const _AF = "AutomaticFailover";
|
|
1041
|
-
const _AFE = "AutomaticFailoverEnabled";
|
|
1042
|
-
const _AFS = "AutomaticFailoverStatus";
|
|
1043
|
-
const _AI = "ApplyImmediately";
|
|
1044
|
-
const _AM = "AuthenticationMode";
|
|
1045
|
-
const _AMVU = "AutoMinorVersionUpgrade";
|
|
1046
|
-
const _ANFF = "AuthorizationNotFoundFault";
|
|
1047
|
-
const _ANTMM = "AllowedNodeTypeModificationsMessage";
|
|
1048
|
-
const _APICRFCEF = "APICallRateForCustomerExceededFault";
|
|
1049
|
-
const _AREE = "AtRestEncryptionEnabled";
|
|
1050
|
-
const _ARN = "ARN";
|
|
1051
|
-
const _AS = "AccessString";
|
|
1052
|
-
const _AT = "AuthToken";
|
|
1053
|
-
const _ATE = "AuthTokenEnabled";
|
|
1054
|
-
const _ATLMD = "AuthTokenLastModifiedDate";
|
|
1055
|
-
const _ATS = "AuthTokenStatus";
|
|
1056
|
-
const _ATTR = "AddTagsToResource";
|
|
1057
|
-
const _ATTRM = "AddTagsToResourceMessage";
|
|
1058
|
-
const _ATUS = "AuthTokenUpdateStrategy";
|
|
1059
|
-
const _AUARABD = "AutoUpdateAfterRecommendedApplyByDate";
|
|
1060
|
-
const _AV = "AllowedValues";
|
|
1061
|
-
const _AZ = "AvailabilityZone";
|
|
1062
|
-
const _AZL = "AvailabilityZonesList";
|
|
1063
|
-
const _AZM = "AZMode";
|
|
1064
|
-
const _Ad = "Address";
|
|
1065
|
-
const _BAUA = "BatchApplyUpdateAction";
|
|
1066
|
-
const _BAUAM = "BatchApplyUpdateActionMessage";
|
|
1067
|
-
const _BSUA = "BatchStopUpdateAction";
|
|
1068
|
-
const _BSUAM = "BatchStopUpdateActionMessage";
|
|
1069
|
-
const _BUFC = "BytesUsedForCache";
|
|
1070
|
-
const _CAZ = "CustomerAvailabilityZone";
|
|
1071
|
-
const _CC = "CacheCluster";
|
|
1072
|
-
const _CCAEF = "CacheClusterAlreadyExistsFault";
|
|
1073
|
-
const _CCC = "CreateCacheCluster";
|
|
1074
|
-
const _CCCM = "CreateCacheClusterMessage";
|
|
1075
|
-
const _CCCR = "CreateCacheClusterResult";
|
|
1076
|
-
const _CCCT = "CacheClusterCreateTime";
|
|
1077
|
-
const _CCI = "CacheClusterIds";
|
|
1078
|
-
const _CCIa = "CacheClusterId";
|
|
1079
|
-
const _CCL = "CacheClusterList";
|
|
1080
|
-
const _CCM = "CacheClusterMessage";
|
|
1081
|
-
const _CCNFF = "CacheClusterNotFoundFault";
|
|
1082
|
-
const _CCPG = "CreateCacheParameterGroup";
|
|
1083
|
-
const _CCPGM = "CreateCacheParameterGroupMessage";
|
|
1084
|
-
const _CCPGR = "CreateCacheParameterGroupResult";
|
|
1085
|
-
const _CCS = "CacheClusterStatus";
|
|
1086
|
-
const _CCSG = "CreateCacheSecurityGroup";
|
|
1087
|
-
const _CCSGM = "CreateCacheSecurityGroupMessage";
|
|
1088
|
-
const _CCSGMr = "CreateCacheSubnetGroupMessage";
|
|
1089
|
-
const _CCSGR = "CreateCacheSecurityGroupResult";
|
|
1090
|
-
const _CCSGRr = "CreateCacheSubnetGroupResult";
|
|
1091
|
-
const _CCSGr = "CreateCacheSubnetGroup";
|
|
1092
|
-
const _CCa = "CacheClusters";
|
|
1093
|
-
const _CDLP = "ClientDownloadLandingPage";
|
|
1094
|
-
const _CE = "ConfigurationEndpoint";
|
|
1095
|
-
const _CED = "CacheEngineDescription";
|
|
1096
|
-
const _CEV = "CacheEngineVersion";
|
|
1097
|
-
const _CEVD = "CacheEngineVersionDescription";
|
|
1098
|
-
const _CEVL = "CacheEngineVersionList";
|
|
1099
|
-
const _CEVM = "CacheEngineVersionMessage";
|
|
1100
|
-
const _CEVa = "CacheEngineVersions";
|
|
1101
|
-
const _CEl = "ClusterEnabled";
|
|
1102
|
-
const _CGRG = "CreateGlobalReplicationGroup";
|
|
1103
|
-
const _CGRGM = "CreateGlobalReplicationGroupMessage";
|
|
1104
|
-
const _CGRGR = "CreateGlobalReplicationGroupResult";
|
|
1105
|
-
const _CI = "ClusterId";
|
|
1106
|
-
const _CIL = "ClusterIdList";
|
|
1107
|
-
const _CM = "ClusterMode";
|
|
1108
|
-
const _CMM = "CompleteMigrationMessage";
|
|
1109
|
-
const _CMR = "CompleteMigrationResponse";
|
|
1110
|
-
const _CMo = "CompleteMigration";
|
|
1111
|
-
const _CN = "CacheNodes";
|
|
1112
|
-
const _CNC = "CacheNodeCount";
|
|
1113
|
-
const _CNCT = "CacheNodeCreateTime";
|
|
1114
|
-
const _CNE = "CustomerNodeEndpoint";
|
|
1115
|
-
const _CNEL = "CustomerNodeEndpointList";
|
|
1116
|
-
const _CNI = "CacheNodeId";
|
|
1117
|
-
const _CNIL = "CacheNodeIdsList";
|
|
1118
|
-
const _CNITR = "CacheNodeIdsToReboot";
|
|
1119
|
-
const _CNITRa = "CacheNodeIdsToRemove";
|
|
1120
|
-
const _CNL = "CacheNodeList";
|
|
1121
|
-
const _CNS = "CacheNodeStatus";
|
|
1122
|
-
const _CNT = "CacheNodeType";
|
|
1123
|
-
const _CNTSP = "CacheNodeTypeSpecificParameter";
|
|
1124
|
-
const _CNTSPL = "CacheNodeTypeSpecificParametersList";
|
|
1125
|
-
const _CNTSPa = "CacheNodeTypeSpecificParameters";
|
|
1126
|
-
const _CNTSV = "CacheNodeTypeSpecificValues";
|
|
1127
|
-
const _CNTSVL = "CacheNodeTypeSpecificValueList";
|
|
1128
|
-
const _CNTSVa = "CacheNodeTypeSpecificValue";
|
|
1129
|
-
const _CNUS = "CacheNodeUpdateStatus";
|
|
1130
|
-
const _CNUSL = "CacheNodeUpdateStatusList";
|
|
1131
|
-
const _CNa = "CacheNode";
|
|
1132
|
-
const _COA = "CustomerOutpostArn";
|
|
1133
|
-
const _CPG = "CacheParameterGroup";
|
|
1134
|
-
const _CPGAEF = "CacheParameterGroupAlreadyExistsFault";
|
|
1135
|
-
const _CPGD = "CacheParameterGroupDetails";
|
|
1136
|
-
const _CPGF = "CacheParameterGroupFamily";
|
|
1137
|
-
const _CPGL = "CacheParameterGroupList";
|
|
1138
|
-
const _CPGM = "CacheParameterGroupsMessage";
|
|
1139
|
-
const _CPGN = "CacheParameterGroupName";
|
|
1140
|
-
const _CPGNFF = "CacheParameterGroupNotFoundFault";
|
|
1141
|
-
const _CPGNM = "CacheParameterGroupNameMessage";
|
|
1142
|
-
const _CPGQEF = "CacheParameterGroupQuotaExceededFault";
|
|
1143
|
-
const _CPGS = "CacheParameterGroupStatus";
|
|
1144
|
-
const _CPGa = "CacheParameterGroups";
|
|
1145
|
-
const _CQFCEF = "ClusterQuotaForCustomerExceededFault";
|
|
1146
|
-
const _CR = "CurrentRole";
|
|
1147
|
-
const _CRG = "CreateReplicationGroup";
|
|
1148
|
-
const _CRGM = "CreateReplicationGroupMessage";
|
|
1149
|
-
const _CRGR = "CreateReplicationGroupResult";
|
|
1150
|
-
const _CS = "ConfigureShard";
|
|
1151
|
-
const _CSC = "CreateServerlessCache";
|
|
1152
|
-
const _CSCR = "CreateServerlessCacheRequest";
|
|
1153
|
-
const _CSCRr = "CreateServerlessCacheResponse";
|
|
1154
|
-
const _CSCS = "CopyServerlessCacheSnapshot";
|
|
1155
|
-
const _CSCSR = "CopyServerlessCacheSnapshotRequest";
|
|
1156
|
-
const _CSCSRo = "CopyServerlessCacheSnapshotResponse";
|
|
1157
|
-
const _CSCSRr = "CreateServerlessCacheSnapshotRequest";
|
|
1158
|
-
const _CSCSRre = "CreateServerlessCacheSnapshotResponse";
|
|
1159
|
-
const _CSCSr = "CreateServerlessCacheSnapshot";
|
|
1160
|
-
const _CSG = "CacheSecurityGroup";
|
|
1161
|
-
const _CSGAEF = "CacheSecurityGroupAlreadyExistsFault";
|
|
1162
|
-
const _CSGAEFa = "CacheSubnetGroupAlreadyExistsFault";
|
|
1163
|
-
const _CSGD = "CacheSubnetGroupDescription";
|
|
1164
|
-
const _CSGIU = "CacheSubnetGroupInUse";
|
|
1165
|
-
const _CSGM = "CacheSecurityGroupMembership";
|
|
1166
|
-
const _CSGML = "CacheSecurityGroupMembershipList";
|
|
1167
|
-
const _CSGMa = "CacheSecurityGroupMessage";
|
|
1168
|
-
const _CSGMac = "CacheSubnetGroupMessage";
|
|
1169
|
-
const _CSGN = "CacheSecurityGroupName";
|
|
1170
|
-
const _CSGNFF = "CacheSecurityGroupNotFoundFault";
|
|
1171
|
-
const _CSGNFFa = "CacheSubnetGroupNotFoundFault";
|
|
1172
|
-
const _CSGNL = "CacheSecurityGroupNameList";
|
|
1173
|
-
const _CSGNa = "CacheSubnetGroupName";
|
|
1174
|
-
const _CSGNac = "CacheSecurityGroupNames";
|
|
1175
|
-
const _CSGQEF = "CacheSecurityGroupQuotaExceededFault";
|
|
1176
|
-
const _CSGQEFa = "CacheSubnetGroupQuotaExceededFault";
|
|
1177
|
-
const _CSGa = "CacheSecurityGroups";
|
|
1178
|
-
const _CSGac = "CacheSubnetGroup";
|
|
1179
|
-
const _CSGach = "CacheSubnetGroups";
|
|
1180
|
-
const _CSM = "CopySnapshotMessage";
|
|
1181
|
-
const _CSMr = "CreateSnapshotMessage";
|
|
1182
|
-
const _CSQEF = "CacheSubnetQuotaExceededFault";
|
|
1183
|
-
const _CSR = "CopySnapshotResult";
|
|
1184
|
-
const _CSRr = "CreateSnapshotResult";
|
|
1185
|
-
const _CSa = "CacheSize";
|
|
1186
|
-
const _CSo = "CopySnapshot";
|
|
1187
|
-
const _CSr = "CreateSnapshot";
|
|
1188
|
-
const _CT = "ChangeType";
|
|
1189
|
-
const _CTr = "CreateTime";
|
|
1190
|
-
const _CU = "CreateUser";
|
|
1191
|
-
const _CUG = "CreateUserGroup";
|
|
1192
|
-
const _CUGM = "CreateUserGroupMessage";
|
|
1193
|
-
const _CUL = "CacheUsageLimits";
|
|
1194
|
-
const _CUM = "CreateUserMessage";
|
|
1195
|
-
const _CWLD = "CloudWatchLogsDetails";
|
|
1196
|
-
const _CWLDD = "CloudWatchLogsDestinationDetails";
|
|
1197
|
-
const _D = "Description";
|
|
1198
|
-
const _DCC = "DeleteCacheCluster";
|
|
1199
|
-
const _DCCM = "DeleteCacheClusterMessage";
|
|
1200
|
-
const _DCCMe = "DescribeCacheClustersMessage";
|
|
1201
|
-
const _DCCR = "DeleteCacheClusterResult";
|
|
1202
|
-
const _DCCe = "DescribeCacheClusters";
|
|
1203
|
-
const _DCEV = "DescribeCacheEngineVersions";
|
|
1204
|
-
const _DCEVM = "DescribeCacheEngineVersionsMessage";
|
|
1205
|
-
const _DCP = "DescribeCacheParameters";
|
|
1206
|
-
const _DCPG = "DeleteCacheParameterGroup";
|
|
1207
|
-
const _DCPGM = "DeleteCacheParameterGroupMessage";
|
|
1208
|
-
const _DCPGMe = "DescribeCacheParameterGroupsMessage";
|
|
1209
|
-
const _DCPGe = "DescribeCacheParameterGroups";
|
|
1210
|
-
const _DCPM = "DescribeCacheParametersMessage";
|
|
1211
|
-
const _DCSG = "DeleteCacheSecurityGroup";
|
|
1212
|
-
const _DCSGM = "DeleteCacheSecurityGroupMessage";
|
|
1213
|
-
const _DCSGMe = "DeleteCacheSubnetGroupMessage";
|
|
1214
|
-
const _DCSGMes = "DescribeCacheSecurityGroupsMessage";
|
|
1215
|
-
const _DCSGMesc = "DescribeCacheSubnetGroupsMessage";
|
|
1216
|
-
const _DCSGe = "DeleteCacheSubnetGroup";
|
|
1217
|
-
const _DCSGes = "DescribeCacheSecurityGroups";
|
|
1218
|
-
const _DCSGesc = "DescribeCacheSubnetGroups";
|
|
1219
|
-
const _DD = "DestinationDetails";
|
|
1220
|
-
const _DE = "DescribeEvents";
|
|
1221
|
-
const _DEDP = "DescribeEngineDefaultParameters";
|
|
1222
|
-
const _DEDPM = "DescribeEngineDefaultParametersMessage";
|
|
1223
|
-
const _DEDPR = "DescribeEngineDefaultParametersResult";
|
|
1224
|
-
const _DEM = "DescribeEventsMessage";
|
|
1225
|
-
const _DGRG = "DeleteGlobalReplicationGroup";
|
|
1226
|
-
const _DGRGM = "DeleteGlobalReplicationGroupMessage";
|
|
1227
|
-
const _DGRGMe = "DescribeGlobalReplicationGroupsMessage";
|
|
1228
|
-
const _DGRGMi = "DisassociateGlobalReplicationGroupMessage";
|
|
1229
|
-
const _DGRGR = "DeleteGlobalReplicationGroupResult";
|
|
1230
|
-
const _DGRGRe = "DescribeGlobalReplicationGroupsResult";
|
|
1231
|
-
const _DGRGRi = "DisassociateGlobalReplicationGroupResult";
|
|
1232
|
-
const _DGRGe = "DescribeGlobalReplicationGroups";
|
|
1233
|
-
const _DGRGi = "DisassociateGlobalReplicationGroup";
|
|
1234
|
-
const _DNGIGRG = "DecreaseNodeGroupsInGlobalReplicationGroup";
|
|
1235
|
-
const _DNGIGRGM = "DecreaseNodeGroupsInGlobalReplicationGroupMessage";
|
|
1236
|
-
const _DNGIGRGR = "DecreaseNodeGroupsInGlobalReplicationGroupResult";
|
|
1237
|
-
const _DO = "DefaultOnly";
|
|
1238
|
-
const _DRC = "DecreaseReplicaCount";
|
|
1239
|
-
const _DRCM = "DecreaseReplicaCountMessage";
|
|
1240
|
-
const _DRCN = "DescribeReservedCacheNodes";
|
|
1241
|
-
const _DRCNM = "DescribeReservedCacheNodesMessage";
|
|
1242
|
-
const _DRCNO = "DescribeReservedCacheNodesOfferings";
|
|
1243
|
-
const _DRCNOM = "DescribeReservedCacheNodesOfferingsMessage";
|
|
1244
|
-
const _DRCR = "DecreaseReplicaCountResult";
|
|
1245
|
-
const _DRG = "DeleteReplicationGroup";
|
|
1246
|
-
const _DRGM = "DeleteReplicationGroupMessage";
|
|
1247
|
-
const _DRGMe = "DescribeReplicationGroupsMessage";
|
|
1248
|
-
const _DRGR = "DeleteReplicationGroupResult";
|
|
1249
|
-
const _DRGe = "DescribeReplicationGroups";
|
|
1250
|
-
const _DS = "DataStorage";
|
|
1251
|
-
const _DSC = "DeleteServerlessCache";
|
|
1252
|
-
const _DSCR = "DeleteServerlessCacheRequest";
|
|
1253
|
-
const _DSCRe = "DeleteServerlessCacheResponse";
|
|
1254
|
-
const _DSCRes = "DescribeServerlessCachesRequest";
|
|
1255
|
-
const _DSCResc = "DescribeServerlessCachesResponse";
|
|
1256
|
-
const _DSCS = "DeleteServerlessCacheSnapshot";
|
|
1257
|
-
const _DSCSR = "DeleteServerlessCacheSnapshotRequest";
|
|
1258
|
-
const _DSCSRe = "DeleteServerlessCacheSnapshotResponse";
|
|
1259
|
-
const _DSCSRes = "DescribeServerlessCacheSnapshotsRequest";
|
|
1260
|
-
const _DSCSResc = "DescribeServerlessCacheSnapshotsResponse";
|
|
1261
|
-
const _DSCSe = "DescribeServerlessCacheSnapshots";
|
|
1262
|
-
const _DSCe = "DescribeServerlessCaches";
|
|
1263
|
-
const _DSLM = "DescribeSnapshotsListMessage";
|
|
1264
|
-
const _DSM = "DeleteSnapshotMessage";
|
|
1265
|
-
const _DSMe = "DescribeSnapshotsMessage";
|
|
1266
|
-
const _DSR = "DeleteSnapshotResult";
|
|
1267
|
-
const _DST = "DailySnapshotTime";
|
|
1268
|
-
const _DSU = "DescribeServiceUpdates";
|
|
1269
|
-
const _DSUM = "DescribeServiceUpdatesMessage";
|
|
1270
|
-
const _DSe = "DeliveryStream";
|
|
1271
|
-
const _DSel = "DeleteSnapshot";
|
|
1272
|
-
const _DSes = "DescribeSnapshots";
|
|
1273
|
-
const _DT = "DataType";
|
|
1274
|
-
const _DTE = "DataTieringEnabled";
|
|
1275
|
-
const _DTa = "DataTiering";
|
|
1276
|
-
const _DTe = "DestinationType";
|
|
1277
|
-
const _DU = "DeleteUser";
|
|
1278
|
-
const _DUA = "DescribeUpdateActions";
|
|
1279
|
-
const _DUAM = "DescribeUpdateActionsMessage";
|
|
1280
|
-
const _DUATUGF = "DefaultUserAssociatedToUserGroupFault";
|
|
1281
|
-
const _DUG = "DeleteUserGroup";
|
|
1282
|
-
const _DUGM = "DeleteUserGroupMessage";
|
|
1283
|
-
const _DUGMe = "DescribeUserGroupsMessage";
|
|
1284
|
-
const _DUGR = "DescribeUserGroupsResult";
|
|
1285
|
-
const _DUGe = "DescribeUserGroups";
|
|
1286
|
-
const _DUM = "DeleteUserMessage";
|
|
1287
|
-
const _DUMe = "DescribeUsersMessage";
|
|
1288
|
-
const _DUNF = "DuplicateUserNameFault";
|
|
1289
|
-
const _DUR = "DefaultUserRequired";
|
|
1290
|
-
const _DURe = "DescribeUsersResult";
|
|
1291
|
-
const _DUe = "DescribeUsers";
|
|
1292
|
-
const _Da = "Date";
|
|
1293
|
-
const _Du = "Duration";
|
|
1294
|
-
const _E = "Engine";
|
|
1295
|
-
const _ECPUPS = "ECPUPerSecond";
|
|
1296
|
-
const _ECSG = "EC2SecurityGroups";
|
|
1297
|
-
const _ECSGL = "EC2SecurityGroupList";
|
|
1298
|
-
const _ECSGN = "EC2SecurityGroupName";
|
|
1299
|
-
const _ECSGOI = "EC2SecurityGroupOwnerId";
|
|
1300
|
-
const _ECSGe = "EC2SecurityGroup";
|
|
1301
|
-
const _ED = "EngineDefaults";
|
|
1302
|
-
const _EL = "EventList";
|
|
1303
|
-
const _EM = "EventsMessage";
|
|
1304
|
-
const _EMr = "ErrorMessage";
|
|
1305
|
-
const _ESCS = "ExportServerlessCacheSnapshot";
|
|
1306
|
-
const _ESCSR = "ExportServerlessCacheSnapshotRequest";
|
|
1307
|
-
const _ESCSRx = "ExportServerlessCacheSnapshotResponse";
|
|
1308
|
-
const _ET = "EndTime";
|
|
1309
|
-
const _ETr = "ErrorType";
|
|
1310
|
-
const _ETx = "ExpiryTime";
|
|
1311
|
-
const _EUT = "EstimatedUpdateTime";
|
|
1312
|
-
const _EV = "EngineVersion";
|
|
1313
|
-
const _En = "Endpoint";
|
|
1314
|
-
const _Ena = "Enabled";
|
|
1315
|
-
const _Ev = "Event";
|
|
1316
|
-
const _Eve = "Events";
|
|
1317
|
-
const _F = "Force";
|
|
1318
|
-
const _FEV = "FullEngineVersion";
|
|
1319
|
-
const _FGRG = "FailoverGlobalReplicationGroup";
|
|
1320
|
-
const _FGRGM = "FailoverGlobalReplicationGroupMessage";
|
|
1321
|
-
const _FGRGR = "FailoverGlobalReplicationGroupResult";
|
|
1322
|
-
const _FL = "FilterList";
|
|
1323
|
-
const _FP = "FixedPrice";
|
|
1324
|
-
const _FSI = "FinalSnapshotIdentifier";
|
|
1325
|
-
const _FSN = "FinalSnapshotName";
|
|
1326
|
-
const _Fi = "Filters";
|
|
1327
|
-
const _Fil = "Filter";
|
|
1328
|
-
const _GNG = "GlobalNodeGroup";
|
|
1329
|
-
const _GNGI = "GlobalNodeGroupId";
|
|
1330
|
-
const _GNGIL = "GlobalNodeGroupIdList";
|
|
1331
|
-
const _GNGL = "GlobalNodeGroupList";
|
|
1332
|
-
const _GNGTR = "GlobalNodeGroupsToRemove";
|
|
1333
|
-
const _GNGTRl = "GlobalNodeGroupsToRetain";
|
|
1334
|
-
const _GNGl = "GlobalNodeGroups";
|
|
1335
|
-
const _GRG = "GlobalReplicationGroup";
|
|
1336
|
-
const _GRGAEF = "GlobalReplicationGroupAlreadyExistsFault";
|
|
1337
|
-
const _GRGD = "GlobalReplicationGroupDescription";
|
|
1338
|
-
const _GRGI = "GlobalReplicationGroupId";
|
|
1339
|
-
const _GRGIS = "GlobalReplicationGroupIdSuffix";
|
|
1340
|
-
const _GRGIl = "GlobalReplicationGroupInfo";
|
|
1341
|
-
const _GRGL = "GlobalReplicationGroupList";
|
|
1342
|
-
const _GRGM = "GlobalReplicationGroupMember";
|
|
1343
|
-
const _GRGML = "GlobalReplicationGroupMemberList";
|
|
1344
|
-
const _GRGMR = "GlobalReplicationGroupMemberRole";
|
|
1345
|
-
const _GRGNFF = "GlobalReplicationGroupNotFoundFault";
|
|
1346
|
-
const _GRGl = "GlobalReplicationGroups";
|
|
1347
|
-
const _IARNF = "InvalidARNFault";
|
|
1348
|
-
const _ICCCF = "InsufficientCacheClusterCapacityFault";
|
|
1349
|
-
const _ICCSF = "InvalidCacheClusterStateFault";
|
|
1350
|
-
const _ICE = "InvalidCredentialsException";
|
|
1351
|
-
const _ICPGSF = "InvalidCacheParameterGroupStateFault";
|
|
1352
|
-
const _ICSGSF = "InvalidCacheSecurityGroupStateFault";
|
|
1353
|
-
const _ID = "IpDiscovery";
|
|
1354
|
-
const _IG = "IsGlobal";
|
|
1355
|
-
const _IGRGSF = "InvalidGlobalReplicationGroupStateFault";
|
|
1356
|
-
const _IKMSKF = "InvalidKMSKeyFault";
|
|
1357
|
-
const _IM = "IsModifiable";
|
|
1358
|
-
const _INGIGRG = "IncreaseNodeGroupsInGlobalReplicationGroup";
|
|
1359
|
-
const _INGIGRGM = "IncreaseNodeGroupsInGlobalReplicationGroupMessage";
|
|
1360
|
-
const _INGIGRGR = "IncreaseNodeGroupsInGlobalReplicationGroupResult";
|
|
1361
|
-
const _IPCE = "InvalidParameterCombinationException";
|
|
1362
|
-
const _IPVE = "InvalidParameterValueException";
|
|
1363
|
-
const _IRC = "IncreaseReplicaCount";
|
|
1364
|
-
const _IRCM = "IncreaseReplicaCountMessage";
|
|
1365
|
-
const _IRCR = "IncreaseReplicaCountResult";
|
|
1366
|
-
const _IRGSF = "InvalidReplicationGroupStateFault";
|
|
1367
|
-
const _IS = "InvalidSubnet";
|
|
1368
|
-
const _ISCSF = "InvalidServerlessCacheStateFault";
|
|
1369
|
-
const _ISCSSF = "InvalidServerlessCacheSnapshotStateFault";
|
|
1370
|
-
const _ISSF = "InvalidSnapshotStateFault";
|
|
1371
|
-
const _IUGSF = "InvalidUserGroupStateFault";
|
|
1372
|
-
const _IUSF = "InvalidUserStateFault";
|
|
1373
|
-
const _IVPCNSF = "InvalidVPCNetworkStateFault";
|
|
1374
|
-
const _K = "Key";
|
|
1375
|
-
const _KFD = "KinesisFirehoseDetails";
|
|
1376
|
-
const _KFDD = "KinesisFirehoseDestinationDetails";
|
|
1377
|
-
const _KKI = "KmsKeyId";
|
|
1378
|
-
const _LANTM = "ListAllowedNodeTypeModifications";
|
|
1379
|
-
const _LANTMM = "ListAllowedNodeTypeModificationsMessage";
|
|
1380
|
-
const _LDC = "LogDeliveryConfigurations";
|
|
1381
|
-
const _LDCL = "LogDeliveryConfigurationList";
|
|
1382
|
-
const _LDCR = "LogDeliveryConfigurationRequest";
|
|
1383
|
-
const _LDCRL = "LogDeliveryConfigurationRequestList";
|
|
1384
|
-
const _LDCo = "LogDeliveryConfiguration";
|
|
1385
|
-
const _LF = "LogFormat";
|
|
1386
|
-
const _LG = "LogGroup";
|
|
1387
|
-
const _LT = "LogType";
|
|
1388
|
-
const _LTFR = "ListTagsForResource";
|
|
1389
|
-
const _LTFRM = "ListTagsForResourceMessage";
|
|
1390
|
-
const _M = "Marker";
|
|
1391
|
-
const _MAZ = "MultiAZ";
|
|
1392
|
-
const _MAZE = "MultiAZEnabled";
|
|
1393
|
-
const _MC = "MemberClusters";
|
|
1394
|
-
const _MCC = "ModifyCacheCluster";
|
|
1395
|
-
const _MCCM = "ModifyCacheClusterMessage";
|
|
1396
|
-
const _MCCR = "ModifyCacheClusterResult";
|
|
1397
|
-
const _MCOA = "MemberClustersOutpostArns";
|
|
1398
|
-
const _MCPG = "ModifyCacheParameterGroup";
|
|
1399
|
-
const _MCPGM = "ModifyCacheParameterGroupMessage";
|
|
1400
|
-
const _MCSG = "ModifyCacheSubnetGroup";
|
|
1401
|
-
const _MCSGM = "ModifyCacheSubnetGroupMessage";
|
|
1402
|
-
const _MCSGR = "ModifyCacheSubnetGroupResult";
|
|
1403
|
-
const _MEV = "MinimumEngineVersion";
|
|
1404
|
-
const _MEVa = "MajorEngineVersion";
|
|
1405
|
-
const _MGRG = "ModifyGlobalReplicationGroup";
|
|
1406
|
-
const _MGRGM = "ModifyGlobalReplicationGroupMessage";
|
|
1407
|
-
const _MGRGR = "ModifyGlobalReplicationGroupResult";
|
|
1408
|
-
const _MR = "MaxRecords";
|
|
1409
|
-
const _MRG = "ModifyReplicationGroup";
|
|
1410
|
-
const _MRGM = "ModifyReplicationGroupMessage";
|
|
1411
|
-
const _MRGR = "ModifyReplicationGroupResult";
|
|
1412
|
-
const _MRGSC = "ModifyReplicationGroupShardConfiguration";
|
|
1413
|
-
const _MRGSCM = "ModifyReplicationGroupShardConfigurationMessage";
|
|
1414
|
-
const _MRGSCR = "ModifyReplicationGroupShardConfigurationResult";
|
|
1415
|
-
const _MRa = "MaxResults";
|
|
1416
|
-
const _MSC = "ModifyServerlessCache";
|
|
1417
|
-
const _MSCR = "ModifyServerlessCacheRequest";
|
|
1418
|
-
const _MSCRo = "ModifyServerlessCacheResponse";
|
|
1419
|
-
const _MU = "ModifyUser";
|
|
1420
|
-
const _MUG = "ModifyUserGroup";
|
|
1421
|
-
const _MUGM = "ModifyUserGroupMessage";
|
|
1422
|
-
const _MUM = "ModifyUserMessage";
|
|
1423
|
-
const _Ma = "Maximum";
|
|
1424
|
-
const _Me = "Message";
|
|
1425
|
-
const _Mem = "Members";
|
|
1426
|
-
const _Mi = "Minimum";
|
|
1427
|
-
const _N = "Name";
|
|
1428
|
-
const _NAZ = "NewAvailabilityZones";
|
|
1429
|
-
const _NC = "NotificationConfiguration";
|
|
1430
|
-
const _NCC = "NumCacheClusters";
|
|
1431
|
-
const _NCN = "NumCacheNodes";
|
|
1432
|
-
const _NDD = "NodeDeletionDate";
|
|
1433
|
-
const _NG = "NodeGroup";
|
|
1434
|
-
const _NGC = "NodeGroupConfiguration";
|
|
1435
|
-
const _NGCL = "NodeGroupConfigurationList";
|
|
1436
|
-
const _NGCo = "NodeGroupCount";
|
|
1437
|
-
const _NGI = "NodeGroupId";
|
|
1438
|
-
const _NGL = "NodeGroupList";
|
|
1439
|
-
const _NGM = "NodeGroupMembers";
|
|
1440
|
-
const _NGML = "NodeGroupMemberList";
|
|
1441
|
-
const _NGMUS = "NodeGroupMemberUpdateStatus";
|
|
1442
|
-
const _NGMUSL = "NodeGroupMemberUpdateStatusList";
|
|
1443
|
-
const _NGMo = "NodeGroupMember";
|
|
1444
|
-
const _NGNFF = "NodeGroupNotFoundFault";
|
|
1445
|
-
const _NGPRGQEF = "NodeGroupsPerReplicationGroupQuotaExceededFault";
|
|
1446
|
-
const _NGTR = "NodeGroupsToRemove";
|
|
1447
|
-
const _NGTRL = "NodeGroupsToRemoveList";
|
|
1448
|
-
const _NGTRLo = "NodeGroupsToRetainList";
|
|
1449
|
-
const _NGTRo = "NodeGroupsToRetain";
|
|
1450
|
-
const _NGTRod = "NodeGroupToRemove";
|
|
1451
|
-
const _NGTRode = "NodeGroupToRetain";
|
|
1452
|
-
const _NGUS = "NodeGroupUpdateStatus";
|
|
1453
|
-
const _NGUSL = "NodeGroupUpdateStatusList";
|
|
1454
|
-
const _NGo = "NodeGroups";
|
|
1455
|
-
const _NNG = "NumNodeGroups";
|
|
1456
|
-
const _NOF = "NoOperationFault";
|
|
1457
|
-
const _NPR = "NoPasswordRequired";
|
|
1458
|
-
const _NQFCEF = "NodeQuotaForClusterExceededFault";
|
|
1459
|
-
const _NQFCEFo = "NodeQuotaForCustomerExceededFault";
|
|
1460
|
-
const _NRC = "NewReplicaCount";
|
|
1461
|
-
const _NS = "NodeSnapshot";
|
|
1462
|
-
const _NSL = "NodeSnapshotList";
|
|
1463
|
-
const _NSo = "NodeSnapshots";
|
|
1464
|
-
const _NT = "NetworkType";
|
|
1465
|
-
const _NTA = "NotificationTopicArn";
|
|
1466
|
-
const _NTS = "NotificationTopicStatus";
|
|
1467
|
-
const _NTe = "NextToken";
|
|
1468
|
-
const _NU = "NodesUpdated";
|
|
1469
|
-
const _NUED = "NodeUpdateEndDate";
|
|
1470
|
-
const _NUIB = "NodeUpdateInitiatedBy";
|
|
1471
|
-
const _NUID = "NodeUpdateInitiatedDate";
|
|
1472
|
-
const _NUS = "NodeUpdateStatus";
|
|
1473
|
-
const _NUSD = "NodeUpdateStartDate";
|
|
1474
|
-
const _NUSMD = "NodeUpdateStatusModifiedDate";
|
|
1475
|
-
const _OA = "OutpostArn";
|
|
1476
|
-
const _OAL = "OutpostArnsList";
|
|
1477
|
-
const _OI = "OwnerId";
|
|
1478
|
-
const _OM = "OutpostMode";
|
|
1479
|
-
const _OT = "OfferingType";
|
|
1480
|
-
const _P = "Passwords";
|
|
1481
|
-
const _PAS = "ParameterApplyStatus";
|
|
1482
|
-
const _PAZ = "PreferredAvailabilityZone";
|
|
1483
|
-
const _PAZL = "PreferredAvailabilityZoneList";
|
|
1484
|
-
const _PAZr = "PreferredAvailabilityZones";
|
|
1485
|
-
const _PAZri = "PrimaryAvailabilityZone";
|
|
1486
|
-
const _PC = "PasswordCount";
|
|
1487
|
-
const _PCCAZ = "PreferredCacheClusterAZs";
|
|
1488
|
-
const _PCI = "PrimaryClusterId";
|
|
1489
|
-
const _PCe = "PendingChanges";
|
|
1490
|
-
const _PD = "ProductDescription";
|
|
1491
|
-
const _PE = "PrimaryEndpoint";
|
|
1492
|
-
const _PGS = "ParameterGroupStatus";
|
|
1493
|
-
const _PL = "ParametersList";
|
|
1494
|
-
const _PLDC = "PendingLogDeliveryConfiguration";
|
|
1495
|
-
const _PLDCL = "PendingLogDeliveryConfigurationList";
|
|
1496
|
-
const _PMV = "PendingModifiedValues";
|
|
1497
|
-
const _PMW = "PreferredMaintenanceWindow";
|
|
1498
|
-
const _PN = "ParameterName";
|
|
1499
|
-
const _PNV = "ParameterNameValues";
|
|
1500
|
-
const _PNVL = "ParameterNameValueList";
|
|
1501
|
-
const _PNVa = "ParameterNameValue";
|
|
1502
|
-
const _POA = "PreferredOutpostArn";
|
|
1503
|
-
const _POAL = "PreferredOutpostArnList";
|
|
1504
|
-
const _POAr = "PreferredOutpostArns";
|
|
1505
|
-
const _POAri = "PrimaryOutpostArn";
|
|
1506
|
-
const _PP = "ProgressPercentage";
|
|
1507
|
-
const _PR = "PrimaryRegion";
|
|
1508
|
-
const _PRCNO = "PurchaseReservedCacheNodesOffering";
|
|
1509
|
-
const _PRCNOM = "PurchaseReservedCacheNodesOfferingMessage";
|
|
1510
|
-
const _PRCNOR = "PurchaseReservedCacheNodesOfferingResult";
|
|
1511
|
-
const _PRGI = "PrimaryReplicationGroupId";
|
|
1512
|
-
const _PUA = "ProcessedUpdateAction";
|
|
1513
|
-
const _PUAL = "ProcessedUpdateActionList";
|
|
1514
|
-
const _PUAr = "ProcessedUpdateActions";
|
|
1515
|
-
const _PV = "ParameterValue";
|
|
1516
|
-
const _Pa = "Parameters";
|
|
1517
|
-
const _Par = "Parameter";
|
|
1518
|
-
const _Po = "Port";
|
|
1519
|
-
const _R = "Role";
|
|
1520
|
-
const _RAP = "ResetAllParameters";
|
|
1521
|
-
const _RARN = "ReservationARN";
|
|
1522
|
-
const _RAZ = "ReplicaAvailabilityZones";
|
|
1523
|
-
const _RC = "ReplicaConfiguration";
|
|
1524
|
-
const _RCA = "RecurringChargeAmount";
|
|
1525
|
-
const _RCC = "RebootCacheCluster";
|
|
1526
|
-
const _RCCM = "RebootCacheClusterMessage";
|
|
1527
|
-
const _RCCR = "RebootCacheClusterResult";
|
|
1528
|
-
const _RCF = "RecurringChargeFrequency";
|
|
1529
|
-
const _RCL = "RecurringChargeList";
|
|
1530
|
-
const _RCLe = "RegionalConfigurationList";
|
|
1531
|
-
const _RCLep = "ReplicaConfigurationList";
|
|
1532
|
-
const _RCLes = "ReshardingConfigurationList";
|
|
1533
|
-
const _RCN = "ReservedCacheNode";
|
|
1534
|
-
const _RCNAEF = "ReservedCacheNodeAlreadyExistsFault";
|
|
1535
|
-
const _RCNI = "ReservedCacheNodeId";
|
|
1536
|
-
const _RCNL = "ReservedCacheNodeList";
|
|
1537
|
-
const _RCNM = "ReservedCacheNodeMessage";
|
|
1538
|
-
const _RCNNFF = "ReservedCacheNodeNotFoundFault";
|
|
1539
|
-
const _RCNO = "ReservedCacheNodesOffering";
|
|
1540
|
-
const _RCNOI = "ReservedCacheNodesOfferingId";
|
|
1541
|
-
const _RCNOL = "ReservedCacheNodesOfferingList";
|
|
1542
|
-
const _RCNOM = "ReservedCacheNodesOfferingMessage";
|
|
1543
|
-
const _RCNONFF = "ReservedCacheNodesOfferingNotFoundFault";
|
|
1544
|
-
const _RCNOe = "ReservedCacheNodesOfferings";
|
|
1545
|
-
const _RCNQEF = "ReservedCacheNodeQuotaExceededFault";
|
|
1546
|
-
const _RCNe = "ReservedCacheNodes";
|
|
1547
|
-
const _RCPG = "ResetCacheParameterGroup";
|
|
1548
|
-
const _RCPGM = "ResetCacheParameterGroupMessage";
|
|
1549
|
-
const _RCSGI = "RevokeCacheSecurityGroupIngress";
|
|
1550
|
-
const _RCSGIM = "RevokeCacheSecurityGroupIngressMessage";
|
|
1551
|
-
const _RCSGIR = "RevokeCacheSecurityGroupIngressResult";
|
|
1552
|
-
const _RCe = "RegionalConfigurations";
|
|
1553
|
-
const _RCec = "RecurringCharge";
|
|
1554
|
-
const _RCecu = "RecurringCharges";
|
|
1555
|
-
const _RCeg = "RegionalConfiguration";
|
|
1556
|
-
const _RCep = "ReplicaCount";
|
|
1557
|
-
const _RCes = "ReshardingConfiguration";
|
|
1558
|
-
const _RE = "ReaderEndpoint";
|
|
1559
|
-
const _REe = "ReadEndpoint";
|
|
1560
|
-
const _RG = "ReplicationGroup";
|
|
1561
|
-
const _RGAEF = "ReplicationGroupAlreadyExistsFault";
|
|
1562
|
-
const _RGAUMF = "ReplicationGroupAlreadyUnderMigrationFault";
|
|
1563
|
-
const _RGCT = "ReplicationGroupCreateTime";
|
|
1564
|
-
const _RGD = "ReplicationGroupDescription";
|
|
1565
|
-
const _RGI = "ReplicationGroupIds";
|
|
1566
|
-
const _RGIe = "ReplicationGroupId";
|
|
1567
|
-
const _RGL = "ReplicationGroupList";
|
|
1568
|
-
const _RGLDE = "ReplicationGroupLogDeliveryEnabled";
|
|
1569
|
-
const _RGM = "ReplicationGroupMessage";
|
|
1570
|
-
const _RGNFF = "ReplicationGroupNotFoundFault";
|
|
1571
|
-
const _RGNUMF = "ReplicationGroupNotUnderMigrationFault";
|
|
1572
|
-
const _RGOA = "ReplicationGroupOutpostArn";
|
|
1573
|
-
const _RGOAL = "ReplicationGroupOutpostArnList";
|
|
1574
|
-
const _RGPMV = "ReplicationGroupPendingModifiedValues";
|
|
1575
|
-
const _RGR = "ReplicationGroupRegion";
|
|
1576
|
-
const _RGe = "ReplicationGroups";
|
|
1577
|
-
const _RN = "ResourceName";
|
|
1578
|
-
const _ROA = "ReplicaOutpostArns";
|
|
1579
|
-
const _RPC = "RetainPrimaryCluster";
|
|
1580
|
-
const _RPNG = "ReplicasPerNodeGroup";
|
|
1581
|
-
const _RPRG = "RetainPrimaryReplicationGroup";
|
|
1582
|
-
const _RS = "ReshardingStatus";
|
|
1583
|
-
const _RSIGRG = "RebalanceSlotsInGlobalReplicationGroup";
|
|
1584
|
-
const _RSIGRGM = "RebalanceSlotsInGlobalReplicationGroupMessage";
|
|
1585
|
-
const _RSIGRGR = "RebalanceSlotsInGlobalReplicationGroupResult";
|
|
1586
|
-
const _RTFR = "RemoveTagsFromResource";
|
|
1587
|
-
const _RTFRM = "RemoveTagsFromResourceMessage";
|
|
1588
|
-
const _RTR = "ReplicasToRemove";
|
|
1589
|
-
const _RUG = "RemoveUserGroups";
|
|
1590
|
-
const _RUGe = "RemoveUserGroup";
|
|
1591
|
-
const _Re = "Resharding";
|
|
1592
|
-
const _S = "Source";
|
|
1593
|
-
const _SA = "SnapshotArns";
|
|
1594
|
-
const _SAEF = "SnapshotAlreadyExistsFault";
|
|
1595
|
-
const _SAL = "SnapshotArnsList";
|
|
1596
|
-
const _SATR = "SnapshotArnsToRestore";
|
|
1597
|
-
const _SAZ = "SubnetAvailabilityZone";
|
|
1598
|
-
const _SAn = "SnapshotArn";
|
|
1599
|
-
const _SBN = "S3BucketName";
|
|
1600
|
-
const _SC = "ServerlessCache";
|
|
1601
|
-
const _SCAEF = "ServerlessCacheAlreadyExistsFault";
|
|
1602
|
-
const _SCC = "ServerlessCacheConfiguration";
|
|
1603
|
-
const _SCCNIRG = "ShowCacheClustersNotInReplicationGroups";
|
|
1604
|
-
const _SCI = "SnapshottingClusterId";
|
|
1605
|
-
const _SCL = "ServerlessCacheList";
|
|
1606
|
-
const _SCN = "ServerlessCacheName";
|
|
1607
|
-
const _SCNFF = "ServerlessCacheNotFoundFault";
|
|
1608
|
-
const _SCNI = "SourceCacheNodeId";
|
|
1609
|
-
const _SCNIh = "ShowCacheNodeInfo";
|
|
1610
|
-
const _SCQFCEF = "ServerlessCacheQuotaForCustomerExceededFault";
|
|
1611
|
-
const _SCS = "ServerlessCacheSnapshot";
|
|
1612
|
-
const _SCSAEF = "ServerlessCacheSnapshotAlreadyExistsFault";
|
|
1613
|
-
const _SCSL = "ServerlessCacheSnapshotList";
|
|
1614
|
-
const _SCSN = "ServerlessCacheSnapshotName";
|
|
1615
|
-
const _SCSNFF = "ServerlessCacheSnapshotNotFoundFault";
|
|
1616
|
-
const _SCSQEF = "ServerlessCacheSnapshotQuotaExceededFault";
|
|
1617
|
-
const _SCSe = "ServerlessCacheSnapshots";
|
|
1618
|
-
const _SCT = "SnapshotCreateTime";
|
|
1619
|
-
const _SCc = "ScaleConfig";
|
|
1620
|
-
const _SCe = "ServerlessCaches";
|
|
1621
|
-
const _SDM = "ScaleDownModifications";
|
|
1622
|
-
const _SFNSF = "SnapshotFeatureNotSupportedFault";
|
|
1623
|
-
const _SG = "SecurityGroups";
|
|
1624
|
-
const _SGI = "SecurityGroupIds";
|
|
1625
|
-
const _SGIL = "SecurityGroupIdsList";
|
|
1626
|
-
const _SGIe = "SecurityGroupId";
|
|
1627
|
-
const _SGM = "SecurityGroupMembership";
|
|
1628
|
-
const _SGML = "SecurityGroupMembershipList";
|
|
1629
|
-
const _SI = "SubnetIds";
|
|
1630
|
-
const _SIL = "SubnetIdentifierList";
|
|
1631
|
-
const _SILu = "SubnetIdsList";
|
|
1632
|
-
const _SIM = "ScaleIntervalMinutes";
|
|
1633
|
-
const _SIU = "SubnetInUse";
|
|
1634
|
-
const _SIo = "SourceIdentifier";
|
|
1635
|
-
const _SIu = "SubnetIdentifier";
|
|
1636
|
-
const _SIub = "SubnetId";
|
|
1637
|
-
const _SL = "SnapshotList";
|
|
1638
|
-
const _SLRNFF = "ServiceLinkedRoleNotFoundFault";
|
|
1639
|
-
const _SLu = "SubnetList";
|
|
1640
|
-
const _SM = "SlotMigration";
|
|
1641
|
-
const _SMI = "ShowMemberInfo";
|
|
1642
|
-
const _SMM = "StartMigrationMessage";
|
|
1643
|
-
const _SMR = "StartMigrationResponse";
|
|
1644
|
-
const _SMl = "SlaMet";
|
|
1645
|
-
const _SMt = "StartMigration";
|
|
1646
|
-
const _SN = "SnapshotName";
|
|
1647
|
-
const _SNAF = "SubnetNotAllowedFault";
|
|
1648
|
-
const _SNFF = "SnapshotNotFoundFault";
|
|
1649
|
-
const _SNGC = "ShowNodeGroupConfig";
|
|
1650
|
-
const _SNLUS = "ShowNodeLevelUpdateStatus";
|
|
1651
|
-
const _SNT = "SupportedNetworkTypes";
|
|
1652
|
-
const _SO = "SubnetOutpost";
|
|
1653
|
-
const _SOA = "SubnetOutpostArn";
|
|
1654
|
-
const _SP = "ScalePercentage";
|
|
1655
|
-
const _SQEF = "SnapshotQuotaExceededFault";
|
|
1656
|
-
const _SRL = "SnapshotRetentionLimit";
|
|
1657
|
-
const _SS = "SnapshotSource";
|
|
1658
|
-
const _SSCSN = "SourceServerlessCacheSnapshotName";
|
|
1659
|
-
const _SSN = "SourceSnapshotName";
|
|
1660
|
-
const _SSn = "SnapshotStatus";
|
|
1661
|
-
const _ST = "SourceType";
|
|
1662
|
-
const _STn = "SnapshotType";
|
|
1663
|
-
const _STt = "StartTime";
|
|
1664
|
-
const _SU = "ServiceUpdate";
|
|
1665
|
-
const _SUD = "ServiceUpdateDescription";
|
|
1666
|
-
const _SUED = "ServiceUpdateEndDate";
|
|
1667
|
-
const _SUL = "ServiceUpdateList";
|
|
1668
|
-
const _SUM = "ScaleUpModifications";
|
|
1669
|
-
const _SUMe = "ServiceUpdatesMessage";
|
|
1670
|
-
const _SUN = "ServiceUpdateName";
|
|
1671
|
-
const _SUNFF = "ServiceUpdateNotFoundFault";
|
|
1672
|
-
const _SURABD = "ServiceUpdateRecommendedApplyByDate";
|
|
1673
|
-
const _SURD = "ServiceUpdateReleaseDate";
|
|
1674
|
-
const _SUS = "ServiceUpdateStatus";
|
|
1675
|
-
const _SUSe = "ServiceUpdateSeverity";
|
|
1676
|
-
const _SUT = "ServiceUpdateType";
|
|
1677
|
-
const _SUTR = "ServiceUpdateTimeRange";
|
|
1678
|
-
const _SUe = "ServiceUpdates";
|
|
1679
|
-
const _SW = "SnapshotWindow";
|
|
1680
|
-
const _Sl = "Slots";
|
|
1681
|
-
const _Sn = "Snapshot";
|
|
1682
|
-
const _Sna = "Snapshots";
|
|
1683
|
-
const _St = "Status";
|
|
1684
|
-
const _Sta = "State";
|
|
1685
|
-
const _Su = "Subnets";
|
|
1686
|
-
const _Sub = "Subnet";
|
|
1687
|
-
const _T = "Tags";
|
|
1688
|
-
const _TA = "TopicArn";
|
|
1689
|
-
const _TB = "TargetBucket";
|
|
1690
|
-
const _TEE = "TransitEncryptionEnabled";
|
|
1691
|
-
const _TEM = "TransitEncryptionMode";
|
|
1692
|
-
const _TF = "TestFailover";
|
|
1693
|
-
const _TFM = "TestFailoverMessage";
|
|
1694
|
-
const _TFNAF = "TestFailoverNotAvailableFault";
|
|
1695
|
-
const _TFR = "TestFailoverResult";
|
|
1696
|
-
const _TK = "TagKeys";
|
|
1697
|
-
const _TL = "TagList";
|
|
1698
|
-
const _TLM = "TagListMessage";
|
|
1699
|
-
const _TM = "TestMigration";
|
|
1700
|
-
const _TMM = "TestMigrationMessage";
|
|
1701
|
-
const _TMR = "TestMigrationResponse";
|
|
1702
|
-
const _TNFF = "TagNotFoundFault";
|
|
1703
|
-
const _TQPRE = "TagQuotaPerResourceExceeded";
|
|
1704
|
-
const _TRF = "TimeRangeFilter";
|
|
1705
|
-
const _TS = "TopicStatus";
|
|
1706
|
-
const _TSCSN = "TargetServerlessCacheSnapshotName";
|
|
1707
|
-
const _TSN = "TargetSnapshotName";
|
|
1708
|
-
const _Ta = "Tag";
|
|
1709
|
-
const _Ty = "Type";
|
|
1710
|
-
const _U = "Unit";
|
|
1711
|
-
const _UA = "UpdateAction";
|
|
1712
|
-
const _UAAD = "UpdateActionAvailableDate";
|
|
1713
|
-
const _UAEF = "UserAlreadyExistsFault";
|
|
1714
|
-
const _UAL = "UpdateActionList";
|
|
1715
|
-
const _UAM = "UpdateActionsMessage";
|
|
1716
|
-
const _UARM = "UpdateActionResultsMessage";
|
|
1717
|
-
const _UAS = "UpdateActionStatus";
|
|
1718
|
-
const _UASMD = "UpdateActionStatusModifiedDate";
|
|
1719
|
-
const _UAp = "UpdateActions";
|
|
1720
|
-
const _UG = "UserGroups";
|
|
1721
|
-
const _UGAEF = "UserGroupAlreadyExistsFault";
|
|
1722
|
-
const _UGI = "UserGroupIds";
|
|
1723
|
-
const _UGITA = "UserGroupIdsToAdd";
|
|
1724
|
-
const _UGITR = "UserGroupIdsToRemove";
|
|
1725
|
-
const _UGIs = "UserGroupId";
|
|
1726
|
-
const _UGL = "UserGroupList";
|
|
1727
|
-
const _UGNFF = "UserGroupNotFoundFault";
|
|
1728
|
-
const _UGPC = "UserGroupPendingChanges";
|
|
1729
|
-
const _UGQEF = "UserGroupQuotaExceededFault";
|
|
1730
|
-
const _UGUS = "UserGroupsUpdateStatus";
|
|
1731
|
-
const _UGs = "UserGroup";
|
|
1732
|
-
const _UI = "UserIds";
|
|
1733
|
-
const _UITA = "UserIdsToAdd";
|
|
1734
|
-
const _UITR = "UserIdsToRemove";
|
|
1735
|
-
const _UIs = "UserId";
|
|
1736
|
-
const _UL = "UserList";
|
|
1737
|
-
const _UN = "UserName";
|
|
1738
|
-
const _UNFF = "UserNotFoundFault";
|
|
1739
|
-
const _UP = "UsagePrice";
|
|
1740
|
-
const _UQEF = "UserQuotaExceededFault";
|
|
1741
|
-
const _UUA = "UnprocessedUpdateAction";
|
|
1742
|
-
const _UUAL = "UnprocessedUpdateActionList";
|
|
1743
|
-
const _UUAn = "UnprocessedUpdateActions";
|
|
1744
|
-
const _Us = "Users";
|
|
1745
|
-
const _Use = "User";
|
|
1746
|
-
const _V = "Value";
|
|
1747
|
-
const _VI = "VpcId";
|
|
1748
|
-
const _Va = "Values";
|
|
1749
|
-
const _aQE = "awsQueryError";
|
|
1750
|
-
const _c = "client";
|
|
1751
|
-
const _e = "error";
|
|
1752
|
-
const _hE = "httpError";
|
|
1753
|
-
const _m = "message";
|
|
1754
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.elasticache";
|
|
1755
|
-
const _xN = "xmlName";
|
|
1756
|
-
const n0 = "com.amazonaws.elasticache";
|
|
1757
|
-
var AddTagsToResourceMessage$ = [3, n0, _ATTRM,
|
|
1758
|
-
0,
|
|
1759
|
-
[_RN, _T],
|
|
1760
|
-
[0, [() => TagList, 0]], 2
|
|
1761
|
-
];
|
|
1762
|
-
var AllowedNodeTypeModificationsMessage$ = [3, n0, _ANTMM,
|
|
1763
|
-
0,
|
|
1764
|
-
[_SUM, _SDM],
|
|
1765
|
-
[64 | 0, 64 | 0]
|
|
1766
|
-
];
|
|
1767
|
-
var APICallRateForCustomerExceededFault$ = [-3, n0, _APICRFCEF,
|
|
1768
|
-
{ [_aQE]: [`APICallRateForCustomerExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1769
|
-
[_m],
|
|
1770
|
-
[0]
|
|
1771
|
-
];
|
|
1772
|
-
schema.TypeRegistry.for(n0).registerError(APICallRateForCustomerExceededFault$, APICallRateForCustomerExceededFault);
|
|
1773
|
-
var Authentication$ = [3, n0, _A,
|
|
1774
|
-
0,
|
|
1775
|
-
[_Ty, _PC],
|
|
1776
|
-
[0, 1]
|
|
1777
|
-
];
|
|
1778
|
-
var AuthenticationMode$ = [3, n0, _AM,
|
|
1779
|
-
0,
|
|
1780
|
-
[_Ty, _P],
|
|
1781
|
-
[0, 64 | 0]
|
|
1782
|
-
];
|
|
1783
|
-
var AuthorizationAlreadyExistsFault$ = [-3, n0, _AAEF,
|
|
1784
|
-
{ [_aQE]: [`AuthorizationAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1785
|
-
[_m],
|
|
1786
|
-
[0]
|
|
1787
|
-
];
|
|
1788
|
-
schema.TypeRegistry.for(n0).registerError(AuthorizationAlreadyExistsFault$, AuthorizationAlreadyExistsFault);
|
|
1789
|
-
var AuthorizationNotFoundFault$ = [-3, n0, _ANFF,
|
|
1790
|
-
{ [_aQE]: [`AuthorizationNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1791
|
-
[_m],
|
|
1792
|
-
[0]
|
|
1793
|
-
];
|
|
1794
|
-
schema.TypeRegistry.for(n0).registerError(AuthorizationNotFoundFault$, AuthorizationNotFoundFault);
|
|
1795
|
-
var AuthorizeCacheSecurityGroupIngressMessage$ = [3, n0, _ACSGIM,
|
|
1796
|
-
0,
|
|
1797
|
-
[_CSGN, _ECSGN, _ECSGOI],
|
|
1798
|
-
[0, 0, 0], 3
|
|
1799
|
-
];
|
|
1800
|
-
var AuthorizeCacheSecurityGroupIngressResult$ = [3, n0, _ACSGIR,
|
|
1801
|
-
0,
|
|
1802
|
-
[_CSG],
|
|
1803
|
-
[[() => CacheSecurityGroup$, 0]]
|
|
1804
|
-
];
|
|
1805
|
-
var AvailabilityZone$ = [3, n0, _AZ,
|
|
1806
|
-
0,
|
|
1807
|
-
[_N],
|
|
1808
|
-
[0]
|
|
1809
|
-
];
|
|
1810
|
-
var BatchApplyUpdateActionMessage$ = [3, n0, _BAUAM,
|
|
1811
|
-
0,
|
|
1812
|
-
[_SUN, _RGI, _CCI],
|
|
1813
|
-
[0, 64 | 0, 64 | 0], 1
|
|
1814
|
-
];
|
|
1815
|
-
var BatchStopUpdateActionMessage$ = [3, n0, _BSUAM,
|
|
1816
|
-
0,
|
|
1817
|
-
[_SUN, _RGI, _CCI],
|
|
1818
|
-
[0, 64 | 0, 64 | 0], 1
|
|
1819
|
-
];
|
|
1820
|
-
var CacheCluster$ = [3, n0, _CC,
|
|
1821
|
-
0,
|
|
1822
|
-
[_CCIa, _CE, _CDLP, _CNT, _E, _EV, _CCS, _NCN, _PAZ, _POA, _CCCT, _PMW, _PMV, _NC, _CSGa, _CPG, _CSGNa, _CN, _AMVU, _SG, _RGIe, _SRL, _SW, _ATE, _ATLMD, _TEE, _AREE, _ARN, _RGLDE, _LDC, _NT, _ID, _TEM],
|
|
1823
|
-
[0, () => Endpoint$, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, [() => PendingModifiedValues$, 0], () => NotificationConfiguration$, [() => CacheSecurityGroupMembershipList, 0], [() => CacheParameterGroupStatus$, 0], 0, [() => CacheNodeList, 0], 2, () => SecurityGroupMembershipList, 0, 1, 0, 2, 4, 2, 2, 0, 2, [() => LogDeliveryConfigurationList, 0], 0, 0, 0]
|
|
1824
|
-
];
|
|
1825
|
-
var CacheClusterAlreadyExistsFault$ = [-3, n0, _CCAEF,
|
|
1826
|
-
{ [_aQE]: [`CacheClusterAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1827
|
-
[_m],
|
|
1828
|
-
[0]
|
|
1829
|
-
];
|
|
1830
|
-
schema.TypeRegistry.for(n0).registerError(CacheClusterAlreadyExistsFault$, CacheClusterAlreadyExistsFault);
|
|
1831
|
-
var CacheClusterMessage$ = [3, n0, _CCM,
|
|
1832
|
-
0,
|
|
1833
|
-
[_M, _CCa],
|
|
1834
|
-
[0, [() => CacheClusterList, 0]]
|
|
1835
|
-
];
|
|
1836
|
-
var CacheClusterNotFoundFault$ = [-3, n0, _CCNFF,
|
|
1837
|
-
{ [_aQE]: [`CacheClusterNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1838
|
-
[_m],
|
|
1839
|
-
[0]
|
|
1840
|
-
];
|
|
1841
|
-
schema.TypeRegistry.for(n0).registerError(CacheClusterNotFoundFault$, CacheClusterNotFoundFault);
|
|
1842
|
-
var CacheEngineVersion$ = [3, n0, _CEV,
|
|
1843
|
-
0,
|
|
1844
|
-
[_E, _EV, _CPGF, _CED, _CEVD],
|
|
1845
|
-
[0, 0, 0, 0, 0]
|
|
1846
|
-
];
|
|
1847
|
-
var CacheEngineVersionMessage$ = [3, n0, _CEVM,
|
|
1848
|
-
0,
|
|
1849
|
-
[_M, _CEVa],
|
|
1850
|
-
[0, [() => CacheEngineVersionList, 0]]
|
|
1851
|
-
];
|
|
1852
|
-
var CacheNode$ = [3, n0, _CNa,
|
|
1853
|
-
0,
|
|
1854
|
-
[_CNI, _CNS, _CNCT, _En, _PGS, _SCNI, _CAZ, _COA],
|
|
1855
|
-
[0, 0, 4, () => Endpoint$, 0, 0, 0, 0]
|
|
1856
|
-
];
|
|
1857
|
-
var CacheNodeTypeSpecificParameter$ = [3, n0, _CNTSP,
|
|
1858
|
-
0,
|
|
1859
|
-
[_PN, _D, _S, _DT, _AV, _IM, _MEV, _CNTSV, _CT],
|
|
1860
|
-
[0, 0, 0, 0, 0, 2, 0, [() => CacheNodeTypeSpecificValueList, 0], 0]
|
|
1861
|
-
];
|
|
1862
|
-
var CacheNodeTypeSpecificValue$ = [3, n0, _CNTSVa,
|
|
1863
|
-
0,
|
|
1864
|
-
[_CNT, _V],
|
|
1865
|
-
[0, 0]
|
|
1866
|
-
];
|
|
1867
|
-
var CacheNodeUpdateStatus$ = [3, n0, _CNUS,
|
|
1868
|
-
0,
|
|
1869
|
-
[_CNI, _NUS, _NDD, _NUSD, _NUED, _NUIB, _NUID, _NUSMD],
|
|
1870
|
-
[0, 0, 4, 4, 4, 0, 4, 4]
|
|
1871
|
-
];
|
|
1872
|
-
var CacheParameterGroup$ = [3, n0, _CPG,
|
|
1873
|
-
0,
|
|
1874
|
-
[_CPGN, _CPGF, _D, _IG, _ARN],
|
|
1875
|
-
[0, 0, 0, 2, 0]
|
|
1876
|
-
];
|
|
1877
|
-
var CacheParameterGroupAlreadyExistsFault$ = [-3, n0, _CPGAEF,
|
|
1878
|
-
{ [_aQE]: [`CacheParameterGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1879
|
-
[_m],
|
|
1880
|
-
[0]
|
|
1881
|
-
];
|
|
1882
|
-
schema.TypeRegistry.for(n0).registerError(CacheParameterGroupAlreadyExistsFault$, CacheParameterGroupAlreadyExistsFault);
|
|
1883
|
-
var CacheParameterGroupDetails$ = [3, n0, _CPGD,
|
|
1884
|
-
0,
|
|
1885
|
-
[_M, _Pa, _CNTSPa],
|
|
1886
|
-
[0, [() => ParametersList, 0], [() => CacheNodeTypeSpecificParametersList, 0]]
|
|
1887
|
-
];
|
|
1888
|
-
var CacheParameterGroupNameMessage$ = [3, n0, _CPGNM,
|
|
1889
|
-
0,
|
|
1890
|
-
[_CPGN],
|
|
1891
|
-
[0]
|
|
1892
|
-
];
|
|
1893
|
-
var CacheParameterGroupNotFoundFault$ = [-3, n0, _CPGNFF,
|
|
1894
|
-
{ [_aQE]: [`CacheParameterGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1895
|
-
[_m],
|
|
1896
|
-
[0]
|
|
1897
|
-
];
|
|
1898
|
-
schema.TypeRegistry.for(n0).registerError(CacheParameterGroupNotFoundFault$, CacheParameterGroupNotFoundFault);
|
|
1899
|
-
var CacheParameterGroupQuotaExceededFault$ = [-3, n0, _CPGQEF,
|
|
1900
|
-
{ [_aQE]: [`CacheParameterGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1901
|
-
[_m],
|
|
1902
|
-
[0]
|
|
1903
|
-
];
|
|
1904
|
-
schema.TypeRegistry.for(n0).registerError(CacheParameterGroupQuotaExceededFault$, CacheParameterGroupQuotaExceededFault);
|
|
1905
|
-
var CacheParameterGroupsMessage$ = [3, n0, _CPGM,
|
|
1906
|
-
0,
|
|
1907
|
-
[_M, _CPGa],
|
|
1908
|
-
[0, [() => CacheParameterGroupList, 0]]
|
|
1909
|
-
];
|
|
1910
|
-
var CacheParameterGroupStatus$ = [3, n0, _CPGS,
|
|
1911
|
-
0,
|
|
1912
|
-
[_CPGN, _PAS, _CNITR],
|
|
1913
|
-
[0, 0, [() => CacheNodeIdsList, 0]]
|
|
1914
|
-
];
|
|
1915
|
-
var CacheSecurityGroup$ = [3, n0, _CSG,
|
|
1916
|
-
0,
|
|
1917
|
-
[_OI, _CSGN, _D, _ECSG, _ARN],
|
|
1918
|
-
[0, 0, 0, [() => EC2SecurityGroupList, 0], 0]
|
|
1919
|
-
];
|
|
1920
|
-
var CacheSecurityGroupAlreadyExistsFault$ = [-3, n0, _CSGAEF,
|
|
1921
|
-
{ [_aQE]: [`CacheSecurityGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1922
|
-
[_m],
|
|
1923
|
-
[0]
|
|
1924
|
-
];
|
|
1925
|
-
schema.TypeRegistry.for(n0).registerError(CacheSecurityGroupAlreadyExistsFault$, CacheSecurityGroupAlreadyExistsFault);
|
|
1926
|
-
var CacheSecurityGroupMembership$ = [3, n0, _CSGM,
|
|
1927
|
-
0,
|
|
1928
|
-
[_CSGN, _St],
|
|
1929
|
-
[0, 0]
|
|
1930
|
-
];
|
|
1931
|
-
var CacheSecurityGroupMessage$ = [3, n0, _CSGMa,
|
|
1932
|
-
0,
|
|
1933
|
-
[_M, _CSGa],
|
|
1934
|
-
[0, [() => CacheSecurityGroups, 0]]
|
|
1935
|
-
];
|
|
1936
|
-
var CacheSecurityGroupNotFoundFault$ = [-3, n0, _CSGNFF,
|
|
1937
|
-
{ [_aQE]: [`CacheSecurityGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
1938
|
-
[_m],
|
|
1939
|
-
[0]
|
|
1940
|
-
];
|
|
1941
|
-
schema.TypeRegistry.for(n0).registerError(CacheSecurityGroupNotFoundFault$, CacheSecurityGroupNotFoundFault);
|
|
1942
|
-
var CacheSecurityGroupQuotaExceededFault$ = [-3, n0, _CSGQEF,
|
|
1943
|
-
{ [_aQE]: [`QuotaExceeded.CacheSecurityGroup`, 400], [_e]: _c, [_hE]: 400 },
|
|
1944
|
-
[_m],
|
|
1945
|
-
[0]
|
|
1946
|
-
];
|
|
1947
|
-
schema.TypeRegistry.for(n0).registerError(CacheSecurityGroupQuotaExceededFault$, CacheSecurityGroupQuotaExceededFault);
|
|
1948
|
-
var CacheSubnetGroup$ = [3, n0, _CSGac,
|
|
1949
|
-
0,
|
|
1950
|
-
[_CSGNa, _CSGD, _VI, _Su, _ARN, _SNT],
|
|
1951
|
-
[0, 0, 0, [() => SubnetList, 0], 0, 64 | 0]
|
|
1952
|
-
];
|
|
1953
|
-
var CacheSubnetGroupAlreadyExistsFault$ = [-3, n0, _CSGAEFa,
|
|
1954
|
-
{ [_aQE]: [`CacheSubnetGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1955
|
-
[_m],
|
|
1956
|
-
[0]
|
|
1957
|
-
];
|
|
1958
|
-
schema.TypeRegistry.for(n0).registerError(CacheSubnetGroupAlreadyExistsFault$, CacheSubnetGroupAlreadyExistsFault);
|
|
1959
|
-
var CacheSubnetGroupInUse$ = [-3, n0, _CSGIU,
|
|
1960
|
-
{ [_aQE]: [`CacheSubnetGroupInUse`, 400], [_e]: _c, [_hE]: 400 },
|
|
1961
|
-
[_m],
|
|
1962
|
-
[0]
|
|
1963
|
-
];
|
|
1964
|
-
schema.TypeRegistry.for(n0).registerError(CacheSubnetGroupInUse$, CacheSubnetGroupInUse);
|
|
1965
|
-
var CacheSubnetGroupMessage$ = [3, n0, _CSGMac,
|
|
1966
|
-
0,
|
|
1967
|
-
[_M, _CSGach],
|
|
1968
|
-
[0, [() => CacheSubnetGroups, 0]]
|
|
1969
|
-
];
|
|
1970
|
-
var CacheSubnetGroupNotFoundFault$ = [-3, n0, _CSGNFFa,
|
|
1971
|
-
{ [_aQE]: [`CacheSubnetGroupNotFoundFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1972
|
-
[_m],
|
|
1973
|
-
[0]
|
|
1974
|
-
];
|
|
1975
|
-
schema.TypeRegistry.for(n0).registerError(CacheSubnetGroupNotFoundFault$, CacheSubnetGroupNotFoundFault);
|
|
1976
|
-
var CacheSubnetGroupQuotaExceededFault$ = [-3, n0, _CSGQEFa,
|
|
1977
|
-
{ [_aQE]: [`CacheSubnetGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1978
|
-
[_m],
|
|
1979
|
-
[0]
|
|
1980
|
-
];
|
|
1981
|
-
schema.TypeRegistry.for(n0).registerError(CacheSubnetGroupQuotaExceededFault$, CacheSubnetGroupQuotaExceededFault);
|
|
1982
|
-
var CacheSubnetQuotaExceededFault$ = [-3, n0, _CSQEF,
|
|
1983
|
-
{ [_aQE]: [`CacheSubnetQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
1984
|
-
[_m],
|
|
1985
|
-
[0]
|
|
1986
|
-
];
|
|
1987
|
-
schema.TypeRegistry.for(n0).registerError(CacheSubnetQuotaExceededFault$, CacheSubnetQuotaExceededFault);
|
|
1988
|
-
var CacheUsageLimits$ = [3, n0, _CUL,
|
|
1989
|
-
0,
|
|
1990
|
-
[_DS, _ECPUPS],
|
|
1991
|
-
[() => DataStorage$, () => ECPUPerSecond$]
|
|
1992
|
-
];
|
|
1993
|
-
var CloudWatchLogsDestinationDetails$ = [3, n0, _CWLDD,
|
|
1994
|
-
0,
|
|
1995
|
-
[_LG],
|
|
1996
|
-
[0]
|
|
1997
|
-
];
|
|
1998
|
-
var ClusterQuotaForCustomerExceededFault$ = [-3, n0, _CQFCEF,
|
|
1999
|
-
{ [_aQE]: [`ClusterQuotaForCustomerExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2000
|
-
[_m],
|
|
2001
|
-
[0]
|
|
2002
|
-
];
|
|
2003
|
-
schema.TypeRegistry.for(n0).registerError(ClusterQuotaForCustomerExceededFault$, ClusterQuotaForCustomerExceededFault);
|
|
2004
|
-
var CompleteMigrationMessage$ = [3, n0, _CMM,
|
|
2005
|
-
0,
|
|
2006
|
-
[_RGIe, _F],
|
|
2007
|
-
[0, 2], 1
|
|
2008
|
-
];
|
|
2009
|
-
var CompleteMigrationResponse$ = [3, n0, _CMR,
|
|
2010
|
-
0,
|
|
2011
|
-
[_RG],
|
|
2012
|
-
[[() => ReplicationGroup$, 0]]
|
|
2013
|
-
];
|
|
2014
|
-
var ConfigureShard$ = [3, n0, _CS,
|
|
2015
|
-
0,
|
|
2016
|
-
[_NGI, _NRC, _PAZr, _POAr],
|
|
2017
|
-
[0, 1, [() => PreferredAvailabilityZoneList, 0], [() => PreferredOutpostArnList, 0]], 2
|
|
2018
|
-
];
|
|
2019
|
-
var CopyServerlessCacheSnapshotRequest$ = [3, n0, _CSCSR,
|
|
2020
|
-
0,
|
|
2021
|
-
[_SSCSN, _TSCSN, _KKI, _T],
|
|
2022
|
-
[0, 0, 0, [() => TagList, 0]], 2
|
|
2023
|
-
];
|
|
2024
|
-
var CopyServerlessCacheSnapshotResponse$ = [3, n0, _CSCSRo,
|
|
2025
|
-
0,
|
|
2026
|
-
[_SCS],
|
|
2027
|
-
[() => ServerlessCacheSnapshot$]
|
|
2028
|
-
];
|
|
2029
|
-
var CopySnapshotMessage$ = [3, n0, _CSM,
|
|
2030
|
-
0,
|
|
2031
|
-
[_SSN, _TSN, _TB, _KKI, _T],
|
|
2032
|
-
[0, 0, 0, 0, [() => TagList, 0]], 2
|
|
2033
|
-
];
|
|
2034
|
-
var CopySnapshotResult$ = [3, n0, _CSR,
|
|
2035
|
-
0,
|
|
2036
|
-
[_Sn],
|
|
2037
|
-
[[() => Snapshot$, 0]]
|
|
2038
|
-
];
|
|
2039
|
-
var CreateCacheClusterMessage$ = [3, n0, _CCCM,
|
|
2040
|
-
0,
|
|
2041
|
-
[_CCIa, _RGIe, _AZM, _PAZ, _PAZr, _NCN, _CNT, _E, _EV, _CPGN, _CSGNa, _CSGNac, _SGI, _T, _SA, _SN, _PMW, _Po, _NTA, _AMVU, _SRL, _SW, _AT, _OM, _POA, _POAr, _LDC, _TEE, _NT, _ID],
|
|
2042
|
-
[0, 0, 0, 0, [() => PreferredAvailabilityZoneList, 0], 1, 0, 0, 0, 0, 0, [() => CacheSecurityGroupNameList, 0], [() => SecurityGroupIdsList, 0], [() => TagList, 0], [() => SnapshotArnsList, 0], 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, [() => PreferredOutpostArnList, 0], [() => LogDeliveryConfigurationRequestList, 0], 2, 0, 0], 1
|
|
2043
|
-
];
|
|
2044
|
-
var CreateCacheClusterResult$ = [3, n0, _CCCR,
|
|
2045
|
-
0,
|
|
2046
|
-
[_CC],
|
|
2047
|
-
[[() => CacheCluster$, 0]]
|
|
2048
|
-
];
|
|
2049
|
-
var CreateCacheParameterGroupMessage$ = [3, n0, _CCPGM,
|
|
2050
|
-
0,
|
|
2051
|
-
[_CPGN, _CPGF, _D, _T],
|
|
2052
|
-
[0, 0, 0, [() => TagList, 0]], 3
|
|
2053
|
-
];
|
|
2054
|
-
var CreateCacheParameterGroupResult$ = [3, n0, _CCPGR,
|
|
2055
|
-
0,
|
|
2056
|
-
[_CPG],
|
|
2057
|
-
[() => CacheParameterGroup$]
|
|
2058
|
-
];
|
|
2059
|
-
var CreateCacheSecurityGroupMessage$ = [3, n0, _CCSGM,
|
|
2060
|
-
0,
|
|
2061
|
-
[_CSGN, _D, _T],
|
|
2062
|
-
[0, 0, [() => TagList, 0]], 2
|
|
2063
|
-
];
|
|
2064
|
-
var CreateCacheSecurityGroupResult$ = [3, n0, _CCSGR,
|
|
2065
|
-
0,
|
|
2066
|
-
[_CSG],
|
|
2067
|
-
[[() => CacheSecurityGroup$, 0]]
|
|
2068
|
-
];
|
|
2069
|
-
var CreateCacheSubnetGroupMessage$ = [3, n0, _CCSGMr,
|
|
2070
|
-
0,
|
|
2071
|
-
[_CSGNa, _CSGD, _SI, _T],
|
|
2072
|
-
[0, 0, [() => SubnetIdentifierList, 0], [() => TagList, 0]], 3
|
|
2073
|
-
];
|
|
2074
|
-
var CreateCacheSubnetGroupResult$ = [3, n0, _CCSGRr,
|
|
2075
|
-
0,
|
|
2076
|
-
[_CSGac],
|
|
2077
|
-
[[() => CacheSubnetGroup$, 0]]
|
|
2078
|
-
];
|
|
2079
|
-
var CreateGlobalReplicationGroupMessage$ = [3, n0, _CGRGM,
|
|
2080
|
-
0,
|
|
2081
|
-
[_GRGIS, _PRGI, _GRGD],
|
|
2082
|
-
[0, 0, 0], 2
|
|
2083
|
-
];
|
|
2084
|
-
var CreateGlobalReplicationGroupResult$ = [3, n0, _CGRGR,
|
|
2085
|
-
0,
|
|
2086
|
-
[_GRG],
|
|
2087
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2088
|
-
];
|
|
2089
|
-
var CreateReplicationGroupMessage$ = [3, n0, _CRGM,
|
|
2090
|
-
0,
|
|
2091
|
-
[_RGIe, _RGD, _GRGI, _PCI, _AFE, _MAZE, _NCC, _PCCAZ, _NNG, _RPNG, _NGC, _CNT, _E, _EV, _CPGN, _CSGNa, _CSGNac, _SGI, _T, _SA, _SN, _PMW, _Po, _NTA, _AMVU, _SRL, _SW, _AT, _TEE, _AREE, _KKI, _UGI, _LDC, _DTE, _NT, _ID, _TEM, _CM, _SCSN],
|
|
2092
|
-
[0, 0, 0, 0, 2, 2, 1, [() => AvailabilityZonesList, 0], 1, 1, [() => NodeGroupConfigurationList, 0], 0, 0, 0, 0, 0, [() => CacheSecurityGroupNameList, 0], [() => SecurityGroupIdsList, 0], [() => TagList, 0], [() => SnapshotArnsList, 0], 0, 0, 1, 0, 2, 1, 0, 0, 2, 2, 0, 64 | 0, [() => LogDeliveryConfigurationRequestList, 0], 2, 0, 0, 0, 0, 0], 2
|
|
2093
|
-
];
|
|
2094
|
-
var CreateReplicationGroupResult$ = [3, n0, _CRGR,
|
|
2095
|
-
0,
|
|
2096
|
-
[_RG],
|
|
2097
|
-
[[() => ReplicationGroup$, 0]]
|
|
2098
|
-
];
|
|
2099
|
-
var CreateServerlessCacheRequest$ = [3, n0, _CSCR,
|
|
2100
|
-
0,
|
|
2101
|
-
[_SCN, _E, _D, _MEVa, _CUL, _KKI, _SGI, _SATR, _T, _UGIs, _SI, _SRL, _DST],
|
|
2102
|
-
[0, 0, 0, 0, () => CacheUsageLimits$, 0, [() => SecurityGroupIdsList, 0], [() => SnapshotArnsList, 0], [() => TagList, 0], 0, [() => SubnetIdsList, 0], 1, 0], 2
|
|
2103
|
-
];
|
|
2104
|
-
var CreateServerlessCacheResponse$ = [3, n0, _CSCRr,
|
|
2105
|
-
0,
|
|
2106
|
-
[_SC],
|
|
2107
|
-
[[() => ServerlessCache$, 0]]
|
|
2108
|
-
];
|
|
2109
|
-
var CreateServerlessCacheSnapshotRequest$ = [3, n0, _CSCSRr,
|
|
2110
|
-
0,
|
|
2111
|
-
[_SCSN, _SCN, _KKI, _T],
|
|
2112
|
-
[0, 0, 0, [() => TagList, 0]], 2
|
|
2113
|
-
];
|
|
2114
|
-
var CreateServerlessCacheSnapshotResponse$ = [3, n0, _CSCSRre,
|
|
2115
|
-
0,
|
|
2116
|
-
[_SCS],
|
|
2117
|
-
[() => ServerlessCacheSnapshot$]
|
|
2118
|
-
];
|
|
2119
|
-
var CreateSnapshotMessage$ = [3, n0, _CSMr,
|
|
2120
|
-
0,
|
|
2121
|
-
[_SN, _RGIe, _CCIa, _KKI, _T],
|
|
2122
|
-
[0, 0, 0, 0, [() => TagList, 0]], 1
|
|
2123
|
-
];
|
|
2124
|
-
var CreateSnapshotResult$ = [3, n0, _CSRr,
|
|
2125
|
-
0,
|
|
2126
|
-
[_Sn],
|
|
2127
|
-
[[() => Snapshot$, 0]]
|
|
2128
|
-
];
|
|
2129
|
-
var CreateUserGroupMessage$ = [3, n0, _CUGM,
|
|
2130
|
-
0,
|
|
2131
|
-
[_UGIs, _E, _UI, _T],
|
|
2132
|
-
[0, 0, 64 | 0, [() => TagList, 0]], 2
|
|
2133
|
-
];
|
|
2134
|
-
var CreateUserMessage$ = [3, n0, _CUM,
|
|
2135
|
-
0,
|
|
2136
|
-
[_UIs, _UN, _E, _AS, _P, _NPR, _T, _AM],
|
|
2137
|
-
[0, 0, 0, 0, 64 | 0, 2, [() => TagList, 0], () => AuthenticationMode$], 4
|
|
2138
|
-
];
|
|
2139
|
-
var CustomerNodeEndpoint$ = [3, n0, _CNE,
|
|
2140
|
-
0,
|
|
2141
|
-
[_Ad, _Po],
|
|
2142
|
-
[0, 1]
|
|
2143
|
-
];
|
|
2144
|
-
var DataStorage$ = [3, n0, _DS,
|
|
2145
|
-
0,
|
|
2146
|
-
[_U, _Ma, _Mi],
|
|
2147
|
-
[0, 1, 1], 1
|
|
2148
|
-
];
|
|
2149
|
-
var DecreaseNodeGroupsInGlobalReplicationGroupMessage$ = [3, n0, _DNGIGRGM,
|
|
2150
|
-
0,
|
|
2151
|
-
[_GRGI, _NGCo, _AI, _GNGTR, _GNGTRl],
|
|
2152
|
-
[0, 1, 2, [() => GlobalNodeGroupIdList, 0], [() => GlobalNodeGroupIdList, 0]], 3
|
|
2153
|
-
];
|
|
2154
|
-
var DecreaseNodeGroupsInGlobalReplicationGroupResult$ = [3, n0, _DNGIGRGR,
|
|
2155
|
-
0,
|
|
2156
|
-
[_GRG],
|
|
2157
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2158
|
-
];
|
|
2159
|
-
var DecreaseReplicaCountMessage$ = [3, n0, _DRCM,
|
|
2160
|
-
0,
|
|
2161
|
-
[_RGIe, _AI, _NRC, _RC, _RTR],
|
|
2162
|
-
[0, 2, 1, [() => ReplicaConfigurationList, 0], 64 | 0], 2
|
|
2163
|
-
];
|
|
2164
|
-
var DecreaseReplicaCountResult$ = [3, n0, _DRCR,
|
|
2165
|
-
0,
|
|
2166
|
-
[_RG],
|
|
2167
|
-
[[() => ReplicationGroup$, 0]]
|
|
2168
|
-
];
|
|
2169
|
-
var DefaultUserAssociatedToUserGroupFault$ = [-3, n0, _DUATUGF,
|
|
2170
|
-
{ [_aQE]: [`DefaultUserAssociatedToUserGroup`, 400], [_e]: _c, [_hE]: 400 },
|
|
2171
|
-
[_m],
|
|
2172
|
-
[0]
|
|
2173
|
-
];
|
|
2174
|
-
schema.TypeRegistry.for(n0).registerError(DefaultUserAssociatedToUserGroupFault$, DefaultUserAssociatedToUserGroupFault);
|
|
2175
|
-
var DefaultUserRequired$ = [-3, n0, _DUR,
|
|
2176
|
-
{ [_aQE]: [`DefaultUserRequired`, 400], [_e]: _c, [_hE]: 400 },
|
|
2177
|
-
[_m],
|
|
2178
|
-
[0]
|
|
2179
|
-
];
|
|
2180
|
-
schema.TypeRegistry.for(n0).registerError(DefaultUserRequired$, DefaultUserRequired);
|
|
2181
|
-
var DeleteCacheClusterMessage$ = [3, n0, _DCCM,
|
|
2182
|
-
0,
|
|
2183
|
-
[_CCIa, _FSI],
|
|
2184
|
-
[0, 0], 1
|
|
2185
|
-
];
|
|
2186
|
-
var DeleteCacheClusterResult$ = [3, n0, _DCCR,
|
|
2187
|
-
0,
|
|
2188
|
-
[_CC],
|
|
2189
|
-
[[() => CacheCluster$, 0]]
|
|
2190
|
-
];
|
|
2191
|
-
var DeleteCacheParameterGroupMessage$ = [3, n0, _DCPGM,
|
|
2192
|
-
0,
|
|
2193
|
-
[_CPGN],
|
|
2194
|
-
[0], 1
|
|
2195
|
-
];
|
|
2196
|
-
var DeleteCacheSecurityGroupMessage$ = [3, n0, _DCSGM,
|
|
2197
|
-
0,
|
|
2198
|
-
[_CSGN],
|
|
2199
|
-
[0], 1
|
|
2200
|
-
];
|
|
2201
|
-
var DeleteCacheSubnetGroupMessage$ = [3, n0, _DCSGMe,
|
|
2202
|
-
0,
|
|
2203
|
-
[_CSGNa],
|
|
2204
|
-
[0], 1
|
|
2205
|
-
];
|
|
2206
|
-
var DeleteGlobalReplicationGroupMessage$ = [3, n0, _DGRGM,
|
|
2207
|
-
0,
|
|
2208
|
-
[_GRGI, _RPRG],
|
|
2209
|
-
[0, 2], 2
|
|
2210
|
-
];
|
|
2211
|
-
var DeleteGlobalReplicationGroupResult$ = [3, n0, _DGRGR,
|
|
2212
|
-
0,
|
|
2213
|
-
[_GRG],
|
|
2214
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2215
|
-
];
|
|
2216
|
-
var DeleteReplicationGroupMessage$ = [3, n0, _DRGM,
|
|
2217
|
-
0,
|
|
2218
|
-
[_RGIe, _RPC, _FSI],
|
|
2219
|
-
[0, 2, 0], 1
|
|
2220
|
-
];
|
|
2221
|
-
var DeleteReplicationGroupResult$ = [3, n0, _DRGR,
|
|
2222
|
-
0,
|
|
2223
|
-
[_RG],
|
|
2224
|
-
[[() => ReplicationGroup$, 0]]
|
|
2225
|
-
];
|
|
2226
|
-
var DeleteServerlessCacheRequest$ = [3, n0, _DSCR,
|
|
2227
|
-
0,
|
|
2228
|
-
[_SCN, _FSN],
|
|
2229
|
-
[0, 0], 1
|
|
2230
|
-
];
|
|
2231
|
-
var DeleteServerlessCacheResponse$ = [3, n0, _DSCRe,
|
|
2232
|
-
0,
|
|
2233
|
-
[_SC],
|
|
2234
|
-
[[() => ServerlessCache$, 0]]
|
|
2235
|
-
];
|
|
2236
|
-
var DeleteServerlessCacheSnapshotRequest$ = [3, n0, _DSCSR,
|
|
2237
|
-
0,
|
|
2238
|
-
[_SCSN],
|
|
2239
|
-
[0], 1
|
|
2240
|
-
];
|
|
2241
|
-
var DeleteServerlessCacheSnapshotResponse$ = [3, n0, _DSCSRe,
|
|
2242
|
-
0,
|
|
2243
|
-
[_SCS],
|
|
2244
|
-
[() => ServerlessCacheSnapshot$]
|
|
2245
|
-
];
|
|
2246
|
-
var DeleteSnapshotMessage$ = [3, n0, _DSM,
|
|
2247
|
-
0,
|
|
2248
|
-
[_SN],
|
|
2249
|
-
[0], 1
|
|
2250
|
-
];
|
|
2251
|
-
var DeleteSnapshotResult$ = [3, n0, _DSR,
|
|
2252
|
-
0,
|
|
2253
|
-
[_Sn],
|
|
2254
|
-
[[() => Snapshot$, 0]]
|
|
2255
|
-
];
|
|
2256
|
-
var DeleteUserGroupMessage$ = [3, n0, _DUGM,
|
|
2257
|
-
0,
|
|
2258
|
-
[_UGIs],
|
|
2259
|
-
[0], 1
|
|
2260
|
-
];
|
|
2261
|
-
var DeleteUserMessage$ = [3, n0, _DUM,
|
|
2262
|
-
0,
|
|
2263
|
-
[_UIs],
|
|
2264
|
-
[0], 1
|
|
2265
|
-
];
|
|
2266
|
-
var DescribeCacheClustersMessage$ = [3, n0, _DCCMe,
|
|
2267
|
-
0,
|
|
2268
|
-
[_CCIa, _MR, _M, _SCNIh, _SCCNIRG],
|
|
2269
|
-
[0, 1, 0, 2, 2]
|
|
2270
|
-
];
|
|
2271
|
-
var DescribeCacheEngineVersionsMessage$ = [3, n0, _DCEVM,
|
|
2272
|
-
0,
|
|
2273
|
-
[_E, _EV, _CPGF, _MR, _M, _DO],
|
|
2274
|
-
[0, 0, 0, 1, 0, 2]
|
|
2275
|
-
];
|
|
2276
|
-
var DescribeCacheParameterGroupsMessage$ = [3, n0, _DCPGMe,
|
|
2277
|
-
0,
|
|
2278
|
-
[_CPGN, _MR, _M],
|
|
2279
|
-
[0, 1, 0]
|
|
2280
|
-
];
|
|
2281
|
-
var DescribeCacheParametersMessage$ = [3, n0, _DCPM,
|
|
2282
|
-
0,
|
|
2283
|
-
[_CPGN, _S, _MR, _M],
|
|
2284
|
-
[0, 0, 1, 0], 1
|
|
2285
|
-
];
|
|
2286
|
-
var DescribeCacheSecurityGroupsMessage$ = [3, n0, _DCSGMes,
|
|
2287
|
-
0,
|
|
2288
|
-
[_CSGN, _MR, _M],
|
|
2289
|
-
[0, 1, 0]
|
|
2290
|
-
];
|
|
2291
|
-
var DescribeCacheSubnetGroupsMessage$ = [3, n0, _DCSGMesc,
|
|
2292
|
-
0,
|
|
2293
|
-
[_CSGNa, _MR, _M],
|
|
2294
|
-
[0, 1, 0]
|
|
2295
|
-
];
|
|
2296
|
-
var DescribeEngineDefaultParametersMessage$ = [3, n0, _DEDPM,
|
|
2297
|
-
0,
|
|
2298
|
-
[_CPGF, _MR, _M],
|
|
2299
|
-
[0, 1, 0], 1
|
|
2300
|
-
];
|
|
2301
|
-
var DescribeEngineDefaultParametersResult$ = [3, n0, _DEDPR,
|
|
2302
|
-
0,
|
|
2303
|
-
[_ED],
|
|
2304
|
-
[[() => EngineDefaults$, 0]]
|
|
2305
|
-
];
|
|
2306
|
-
var DescribeEventsMessage$ = [3, n0, _DEM,
|
|
2307
|
-
0,
|
|
2308
|
-
[_SIo, _ST, _STt, _ET, _Du, _MR, _M],
|
|
2309
|
-
[0, 0, 4, 4, 1, 1, 0]
|
|
2310
|
-
];
|
|
2311
|
-
var DescribeGlobalReplicationGroupsMessage$ = [3, n0, _DGRGMe,
|
|
2312
|
-
0,
|
|
2313
|
-
[_GRGI, _MR, _M, _SMI],
|
|
2314
|
-
[0, 1, 0, 2]
|
|
2315
|
-
];
|
|
2316
|
-
var DescribeGlobalReplicationGroupsResult$ = [3, n0, _DGRGRe,
|
|
2317
|
-
0,
|
|
2318
|
-
[_M, _GRGl],
|
|
2319
|
-
[0, [() => GlobalReplicationGroupList, 0]]
|
|
2320
|
-
];
|
|
2321
|
-
var DescribeReplicationGroupsMessage$ = [3, n0, _DRGMe,
|
|
2322
|
-
0,
|
|
2323
|
-
[_RGIe, _MR, _M],
|
|
2324
|
-
[0, 1, 0]
|
|
2325
|
-
];
|
|
2326
|
-
var DescribeReservedCacheNodesMessage$ = [3, n0, _DRCNM,
|
|
2327
|
-
0,
|
|
2328
|
-
[_RCNI, _RCNOI, _CNT, _Du, _PD, _OT, _MR, _M],
|
|
2329
|
-
[0, 0, 0, 0, 0, 0, 1, 0]
|
|
2330
|
-
];
|
|
2331
|
-
var DescribeReservedCacheNodesOfferingsMessage$ = [3, n0, _DRCNOM,
|
|
2332
|
-
0,
|
|
2333
|
-
[_RCNOI, _CNT, _Du, _PD, _OT, _MR, _M],
|
|
2334
|
-
[0, 0, 0, 0, 0, 1, 0]
|
|
2335
|
-
];
|
|
2336
|
-
var DescribeServerlessCacheSnapshotsRequest$ = [3, n0, _DSCSRes,
|
|
2337
|
-
0,
|
|
2338
|
-
[_SCN, _SCSN, _STn, _NTe, _MRa],
|
|
2339
|
-
[0, 0, 0, 0, 1]
|
|
2340
|
-
];
|
|
2341
|
-
var DescribeServerlessCacheSnapshotsResponse$ = [3, n0, _DSCSResc,
|
|
2342
|
-
0,
|
|
2343
|
-
[_NTe, _SCSe],
|
|
2344
|
-
[0, [() => ServerlessCacheSnapshotList, 0]]
|
|
2345
|
-
];
|
|
2346
|
-
var DescribeServerlessCachesRequest$ = [3, n0, _DSCRes,
|
|
2347
|
-
0,
|
|
2348
|
-
[_SCN, _MRa, _NTe],
|
|
2349
|
-
[0, 1, 0]
|
|
2350
|
-
];
|
|
2351
|
-
var DescribeServerlessCachesResponse$ = [3, n0, _DSCResc,
|
|
2352
|
-
0,
|
|
2353
|
-
[_NTe, _SCe],
|
|
2354
|
-
[0, [() => ServerlessCacheList, 0]]
|
|
2355
|
-
];
|
|
2356
|
-
var DescribeServiceUpdatesMessage$ = [3, n0, _DSUM,
|
|
2357
|
-
0,
|
|
2358
|
-
[_SUN, _SUS, _MR, _M],
|
|
2359
|
-
[0, 64 | 0, 1, 0]
|
|
2360
|
-
];
|
|
2361
|
-
var DescribeSnapshotsListMessage$ = [3, n0, _DSLM,
|
|
2362
|
-
0,
|
|
2363
|
-
[_M, _Sna],
|
|
2364
|
-
[0, [() => SnapshotList, 0]]
|
|
2365
|
-
];
|
|
2366
|
-
var DescribeSnapshotsMessage$ = [3, n0, _DSMe,
|
|
2367
|
-
0,
|
|
2368
|
-
[_RGIe, _CCIa, _SN, _SS, _M, _MR, _SNGC],
|
|
2369
|
-
[0, 0, 0, 0, 0, 1, 2]
|
|
2370
|
-
];
|
|
2371
|
-
var DescribeUpdateActionsMessage$ = [3, n0, _DUAM,
|
|
2372
|
-
0,
|
|
2373
|
-
[_SUN, _RGI, _CCI, _E, _SUS, _SUTR, _UAS, _SNLUS, _MR, _M],
|
|
2374
|
-
[0, 64 | 0, 64 | 0, 0, 64 | 0, () => TimeRangeFilter$, 64 | 0, 2, 1, 0]
|
|
2375
|
-
];
|
|
2376
|
-
var DescribeUserGroupsMessage$ = [3, n0, _DUGMe,
|
|
2377
|
-
0,
|
|
2378
|
-
[_UGIs, _MR, _M],
|
|
2379
|
-
[0, 1, 0]
|
|
2380
|
-
];
|
|
2381
|
-
var DescribeUserGroupsResult$ = [3, n0, _DUGR,
|
|
2382
|
-
0,
|
|
2383
|
-
[_UG, _M],
|
|
2384
|
-
[() => UserGroupList, 0]
|
|
2385
|
-
];
|
|
2386
|
-
var DescribeUsersMessage$ = [3, n0, _DUMe,
|
|
2387
|
-
0,
|
|
2388
|
-
[_E, _UIs, _Fi, _MR, _M],
|
|
2389
|
-
[0, 0, () => FilterList, 1, 0]
|
|
2390
|
-
];
|
|
2391
|
-
var DescribeUsersResult$ = [3, n0, _DURe,
|
|
2392
|
-
0,
|
|
2393
|
-
[_Us, _M],
|
|
2394
|
-
[() => UserList, 0]
|
|
2395
|
-
];
|
|
2396
|
-
var DestinationDetails$ = [3, n0, _DD,
|
|
2397
|
-
0,
|
|
2398
|
-
[_CWLD, _KFD],
|
|
2399
|
-
[() => CloudWatchLogsDestinationDetails$, () => KinesisFirehoseDestinationDetails$]
|
|
2400
|
-
];
|
|
2401
|
-
var DisassociateGlobalReplicationGroupMessage$ = [3, n0, _DGRGMi,
|
|
2402
|
-
0,
|
|
2403
|
-
[_GRGI, _RGIe, _RGR],
|
|
2404
|
-
[0, 0, 0], 3
|
|
2405
|
-
];
|
|
2406
|
-
var DisassociateGlobalReplicationGroupResult$ = [3, n0, _DGRGRi,
|
|
2407
|
-
0,
|
|
2408
|
-
[_GRG],
|
|
2409
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2410
|
-
];
|
|
2411
|
-
var DuplicateUserNameFault$ = [-3, n0, _DUNF,
|
|
2412
|
-
{ [_aQE]: [`DuplicateUserName`, 400], [_e]: _c, [_hE]: 400 },
|
|
2413
|
-
[_m],
|
|
2414
|
-
[0]
|
|
2415
|
-
];
|
|
2416
|
-
schema.TypeRegistry.for(n0).registerError(DuplicateUserNameFault$, DuplicateUserNameFault);
|
|
2417
|
-
var EC2SecurityGroup$ = [3, n0, _ECSGe,
|
|
2418
|
-
0,
|
|
2419
|
-
[_St, _ECSGN, _ECSGOI],
|
|
2420
|
-
[0, 0, 0]
|
|
2421
|
-
];
|
|
2422
|
-
var ECPUPerSecond$ = [3, n0, _ECPUPS,
|
|
2423
|
-
0,
|
|
2424
|
-
[_Ma, _Mi],
|
|
2425
|
-
[1, 1]
|
|
2426
|
-
];
|
|
2427
|
-
var Endpoint$ = [3, n0, _En,
|
|
2428
|
-
0,
|
|
2429
|
-
[_Ad, _Po],
|
|
2430
|
-
[0, 1]
|
|
2431
|
-
];
|
|
2432
|
-
var EngineDefaults$ = [3, n0, _ED,
|
|
2433
|
-
0,
|
|
2434
|
-
[_CPGF, _M, _Pa, _CNTSPa],
|
|
2435
|
-
[0, 0, [() => ParametersList, 0], [() => CacheNodeTypeSpecificParametersList, 0]]
|
|
2436
|
-
];
|
|
2437
|
-
var Event$ = [3, n0, _Ev,
|
|
2438
|
-
0,
|
|
2439
|
-
[_SIo, _ST, _Me, _Da],
|
|
2440
|
-
[0, 0, 0, 4]
|
|
2441
|
-
];
|
|
2442
|
-
var EventsMessage$ = [3, n0, _EM,
|
|
2443
|
-
0,
|
|
2444
|
-
[_M, _Eve],
|
|
2445
|
-
[0, [() => EventList, 0]]
|
|
2446
|
-
];
|
|
2447
|
-
var ExportServerlessCacheSnapshotRequest$ = [3, n0, _ESCSR,
|
|
2448
|
-
0,
|
|
2449
|
-
[_SCSN, _SBN],
|
|
2450
|
-
[0, 0], 2
|
|
2451
|
-
];
|
|
2452
|
-
var ExportServerlessCacheSnapshotResponse$ = [3, n0, _ESCSRx,
|
|
2453
|
-
0,
|
|
2454
|
-
[_SCS],
|
|
2455
|
-
[() => ServerlessCacheSnapshot$]
|
|
2456
|
-
];
|
|
2457
|
-
var FailoverGlobalReplicationGroupMessage$ = [3, n0, _FGRGM,
|
|
2458
|
-
0,
|
|
2459
|
-
[_GRGI, _PR, _PRGI],
|
|
2460
|
-
[0, 0, 0], 3
|
|
2461
|
-
];
|
|
2462
|
-
var FailoverGlobalReplicationGroupResult$ = [3, n0, _FGRGR,
|
|
2463
|
-
0,
|
|
2464
|
-
[_GRG],
|
|
2465
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2466
|
-
];
|
|
2467
|
-
var Filter$ = [3, n0, _Fil,
|
|
2468
|
-
0,
|
|
2469
|
-
[_N, _Va],
|
|
2470
|
-
[0, 64 | 0], 2
|
|
2471
|
-
];
|
|
2472
|
-
var GlobalNodeGroup$ = [3, n0, _GNG,
|
|
2473
|
-
0,
|
|
2474
|
-
[_GNGI, _Sl],
|
|
2475
|
-
[0, 0]
|
|
2476
|
-
];
|
|
2477
|
-
var GlobalReplicationGroup$ = [3, n0, _GRG,
|
|
2478
|
-
0,
|
|
2479
|
-
[_GRGI, _GRGD, _St, _CNT, _E, _EV, _Mem, _CEl, _GNGl, _ATE, _TEE, _AREE, _ARN],
|
|
2480
|
-
[0, 0, 0, 0, 0, 0, [() => GlobalReplicationGroupMemberList, 0], 2, [() => GlobalNodeGroupList, 0], 2, 2, 2, 0]
|
|
2481
|
-
];
|
|
2482
|
-
var GlobalReplicationGroupAlreadyExistsFault$ = [-3, n0, _GRGAEF,
|
|
2483
|
-
{ [_aQE]: [`GlobalReplicationGroupAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2484
|
-
[_m],
|
|
2485
|
-
[0]
|
|
2486
|
-
];
|
|
2487
|
-
schema.TypeRegistry.for(n0).registerError(GlobalReplicationGroupAlreadyExistsFault$, GlobalReplicationGroupAlreadyExistsFault);
|
|
2488
|
-
var GlobalReplicationGroupInfo$ = [3, n0, _GRGIl,
|
|
2489
|
-
0,
|
|
2490
|
-
[_GRGI, _GRGMR],
|
|
2491
|
-
[0, 0]
|
|
2492
|
-
];
|
|
2493
|
-
var GlobalReplicationGroupMember$ = [3, n0, _GRGM,
|
|
2494
|
-
0,
|
|
2495
|
-
[_RGIe, _RGR, _R, _AF, _St],
|
|
2496
|
-
[0, 0, 0, 0, 0]
|
|
2497
|
-
];
|
|
2498
|
-
var GlobalReplicationGroupNotFoundFault$ = [-3, n0, _GRGNFF,
|
|
2499
|
-
{ [_aQE]: [`GlobalReplicationGroupNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
2500
|
-
[_m],
|
|
2501
|
-
[0]
|
|
2502
|
-
];
|
|
2503
|
-
schema.TypeRegistry.for(n0).registerError(GlobalReplicationGroupNotFoundFault$, GlobalReplicationGroupNotFoundFault);
|
|
2504
|
-
var IncreaseNodeGroupsInGlobalReplicationGroupMessage$ = [3, n0, _INGIGRGM,
|
|
2505
|
-
0,
|
|
2506
|
-
[_GRGI, _NGCo, _AI, _RCe],
|
|
2507
|
-
[0, 1, 2, [() => RegionalConfigurationList, 0]], 3
|
|
2508
|
-
];
|
|
2509
|
-
var IncreaseNodeGroupsInGlobalReplicationGroupResult$ = [3, n0, _INGIGRGR,
|
|
2510
|
-
0,
|
|
2511
|
-
[_GRG],
|
|
2512
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2513
|
-
];
|
|
2514
|
-
var IncreaseReplicaCountMessage$ = [3, n0, _IRCM,
|
|
2515
|
-
0,
|
|
2516
|
-
[_RGIe, _AI, _NRC, _RC],
|
|
2517
|
-
[0, 2, 1, [() => ReplicaConfigurationList, 0]], 2
|
|
2518
|
-
];
|
|
2519
|
-
var IncreaseReplicaCountResult$ = [3, n0, _IRCR,
|
|
2520
|
-
0,
|
|
2521
|
-
[_RG],
|
|
2522
|
-
[[() => ReplicationGroup$, 0]]
|
|
2523
|
-
];
|
|
2524
|
-
var InsufficientCacheClusterCapacityFault$ = [-3, n0, _ICCCF,
|
|
2525
|
-
{ [_aQE]: [`InsufficientCacheClusterCapacity`, 400], [_e]: _c, [_hE]: 400 },
|
|
2526
|
-
[_m],
|
|
2527
|
-
[0]
|
|
2528
|
-
];
|
|
2529
|
-
schema.TypeRegistry.for(n0).registerError(InsufficientCacheClusterCapacityFault$, InsufficientCacheClusterCapacityFault);
|
|
2530
|
-
var InvalidARNFault$ = [-3, n0, _IARNF,
|
|
2531
|
-
{ [_aQE]: [`InvalidARN`, 400], [_e]: _c, [_hE]: 400 },
|
|
2532
|
-
[_m],
|
|
2533
|
-
[0]
|
|
2534
|
-
];
|
|
2535
|
-
schema.TypeRegistry.for(n0).registerError(InvalidARNFault$, InvalidARNFault);
|
|
2536
|
-
var InvalidCacheClusterStateFault$ = [-3, n0, _ICCSF,
|
|
2537
|
-
{ [_aQE]: [`InvalidCacheClusterState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2538
|
-
[_m],
|
|
2539
|
-
[0]
|
|
2540
|
-
];
|
|
2541
|
-
schema.TypeRegistry.for(n0).registerError(InvalidCacheClusterStateFault$, InvalidCacheClusterStateFault);
|
|
2542
|
-
var InvalidCacheParameterGroupStateFault$ = [-3, n0, _ICPGSF,
|
|
2543
|
-
{ [_aQE]: [`InvalidCacheParameterGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2544
|
-
[_m],
|
|
2545
|
-
[0]
|
|
2546
|
-
];
|
|
2547
|
-
schema.TypeRegistry.for(n0).registerError(InvalidCacheParameterGroupStateFault$, InvalidCacheParameterGroupStateFault);
|
|
2548
|
-
var InvalidCacheSecurityGroupStateFault$ = [-3, n0, _ICSGSF,
|
|
2549
|
-
{ [_aQE]: [`InvalidCacheSecurityGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2550
|
-
[_m],
|
|
2551
|
-
[0]
|
|
2552
|
-
];
|
|
2553
|
-
schema.TypeRegistry.for(n0).registerError(InvalidCacheSecurityGroupStateFault$, InvalidCacheSecurityGroupStateFault);
|
|
2554
|
-
var InvalidCredentialsException$ = [-3, n0, _ICE,
|
|
2555
|
-
{ [_aQE]: [`InvalidCredentialsException`, 408], [_e]: _c, [_hE]: 408 },
|
|
2556
|
-
[_m],
|
|
2557
|
-
[0]
|
|
2558
|
-
];
|
|
2559
|
-
schema.TypeRegistry.for(n0).registerError(InvalidCredentialsException$, InvalidCredentialsException);
|
|
2560
|
-
var InvalidGlobalReplicationGroupStateFault$ = [-3, n0, _IGRGSF,
|
|
2561
|
-
{ [_aQE]: [`InvalidGlobalReplicationGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2562
|
-
[_m],
|
|
2563
|
-
[0]
|
|
2564
|
-
];
|
|
2565
|
-
schema.TypeRegistry.for(n0).registerError(InvalidGlobalReplicationGroupStateFault$, InvalidGlobalReplicationGroupStateFault);
|
|
2566
|
-
var InvalidKMSKeyFault$ = [-3, n0, _IKMSKF,
|
|
2567
|
-
{ [_aQE]: [`InvalidKMSKeyFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2568
|
-
[_m],
|
|
2569
|
-
[0]
|
|
2570
|
-
];
|
|
2571
|
-
schema.TypeRegistry.for(n0).registerError(InvalidKMSKeyFault$, InvalidKMSKeyFault);
|
|
2572
|
-
var InvalidParameterCombinationException$ = [-3, n0, _IPCE,
|
|
2573
|
-
{ [_aQE]: [`InvalidParameterCombination`, 400], [_e]: _c, [_hE]: 400 },
|
|
2574
|
-
[_m],
|
|
2575
|
-
[0]
|
|
2576
|
-
];
|
|
2577
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterCombinationException$, InvalidParameterCombinationException);
|
|
2578
|
-
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
2579
|
-
{ [_aQE]: [`InvalidParameterValue`, 400], [_e]: _c, [_hE]: 400 },
|
|
2580
|
-
[_m],
|
|
2581
|
-
[0]
|
|
2582
|
-
];
|
|
2583
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
2584
|
-
var InvalidReplicationGroupStateFault$ = [-3, n0, _IRGSF,
|
|
2585
|
-
{ [_aQE]: [`InvalidReplicationGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2586
|
-
[_m],
|
|
2587
|
-
[0]
|
|
2588
|
-
];
|
|
2589
|
-
schema.TypeRegistry.for(n0).registerError(InvalidReplicationGroupStateFault$, InvalidReplicationGroupStateFault);
|
|
2590
|
-
var InvalidServerlessCacheSnapshotStateFault$ = [-3, n0, _ISCSSF,
|
|
2591
|
-
{ [_aQE]: [`InvalidServerlessCacheSnapshotStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2592
|
-
[_m],
|
|
2593
|
-
[0]
|
|
2594
|
-
];
|
|
2595
|
-
schema.TypeRegistry.for(n0).registerError(InvalidServerlessCacheSnapshotStateFault$, InvalidServerlessCacheSnapshotStateFault);
|
|
2596
|
-
var InvalidServerlessCacheStateFault$ = [-3, n0, _ISCSF,
|
|
2597
|
-
{ [_aQE]: [`InvalidServerlessCacheStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2598
|
-
[_m],
|
|
2599
|
-
[0]
|
|
2600
|
-
];
|
|
2601
|
-
schema.TypeRegistry.for(n0).registerError(InvalidServerlessCacheStateFault$, InvalidServerlessCacheStateFault);
|
|
2602
|
-
var InvalidSnapshotStateFault$ = [-3, n0, _ISSF,
|
|
2603
|
-
{ [_aQE]: [`InvalidSnapshotState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2604
|
-
[_m],
|
|
2605
|
-
[0]
|
|
2606
|
-
];
|
|
2607
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSnapshotStateFault$, InvalidSnapshotStateFault);
|
|
2608
|
-
var InvalidSubnet$ = [-3, n0, _IS,
|
|
2609
|
-
{ [_aQE]: [`InvalidSubnet`, 400], [_e]: _c, [_hE]: 400 },
|
|
2610
|
-
[_m],
|
|
2611
|
-
[0]
|
|
2612
|
-
];
|
|
2613
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSubnet$, InvalidSubnet);
|
|
2614
|
-
var InvalidUserGroupStateFault$ = [-3, n0, _IUGSF,
|
|
2615
|
-
{ [_aQE]: [`InvalidUserGroupState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2616
|
-
[_m],
|
|
2617
|
-
[0]
|
|
2618
|
-
];
|
|
2619
|
-
schema.TypeRegistry.for(n0).registerError(InvalidUserGroupStateFault$, InvalidUserGroupStateFault);
|
|
2620
|
-
var InvalidUserStateFault$ = [-3, n0, _IUSF,
|
|
2621
|
-
{ [_aQE]: [`InvalidUserState`, 400], [_e]: _c, [_hE]: 400 },
|
|
2622
|
-
[_m],
|
|
2623
|
-
[0]
|
|
2624
|
-
];
|
|
2625
|
-
schema.TypeRegistry.for(n0).registerError(InvalidUserStateFault$, InvalidUserStateFault);
|
|
2626
|
-
var InvalidVPCNetworkStateFault$ = [-3, n0, _IVPCNSF,
|
|
2627
|
-
{ [_aQE]: [`InvalidVPCNetworkStateFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2628
|
-
[_m],
|
|
2629
|
-
[0]
|
|
2630
|
-
];
|
|
2631
|
-
schema.TypeRegistry.for(n0).registerError(InvalidVPCNetworkStateFault$, InvalidVPCNetworkStateFault);
|
|
2632
|
-
var KinesisFirehoseDestinationDetails$ = [3, n0, _KFDD,
|
|
2633
|
-
0,
|
|
2634
|
-
[_DSe],
|
|
2635
|
-
[0]
|
|
2636
|
-
];
|
|
2637
|
-
var ListAllowedNodeTypeModificationsMessage$ = [3, n0, _LANTMM,
|
|
2638
|
-
0,
|
|
2639
|
-
[_CCIa, _RGIe],
|
|
2640
|
-
[0, 0]
|
|
2641
|
-
];
|
|
2642
|
-
var ListTagsForResourceMessage$ = [3, n0, _LTFRM,
|
|
2643
|
-
0,
|
|
2644
|
-
[_RN],
|
|
2645
|
-
[0], 1
|
|
2646
|
-
];
|
|
2647
|
-
var LogDeliveryConfiguration$ = [3, n0, _LDCo,
|
|
2648
|
-
0,
|
|
2649
|
-
[_LT, _DTe, _DD, _LF, _St, _Me],
|
|
2650
|
-
[0, 0, () => DestinationDetails$, 0, 0, 0]
|
|
2651
|
-
];
|
|
2652
|
-
var LogDeliveryConfigurationRequest$ = [3, n0, _LDCR,
|
|
2653
|
-
0,
|
|
2654
|
-
[_LT, _DTe, _DD, _LF, _Ena],
|
|
2655
|
-
[0, 0, () => DestinationDetails$, 0, 2]
|
|
2656
|
-
];
|
|
2657
|
-
var ModifyCacheClusterMessage$ = [3, n0, _MCCM,
|
|
2658
|
-
0,
|
|
2659
|
-
[_CCIa, _NCN, _CNITRa, _AZM, _NAZ, _CSGNac, _SGI, _PMW, _NTA, _CPGN, _NTS, _AI, _E, _EV, _AMVU, _SRL, _SW, _CNT, _AT, _ATUS, _LDC, _ID, _SCc],
|
|
2660
|
-
[0, 1, [() => CacheNodeIdsList, 0], 0, [() => PreferredAvailabilityZoneList, 0], [() => CacheSecurityGroupNameList, 0], [() => SecurityGroupIdsList, 0], 0, 0, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 0, [() => LogDeliveryConfigurationRequestList, 0], 0, () => ScaleConfig$], 1
|
|
2661
|
-
];
|
|
2662
|
-
var ModifyCacheClusterResult$ = [3, n0, _MCCR,
|
|
2663
|
-
0,
|
|
2664
|
-
[_CC],
|
|
2665
|
-
[[() => CacheCluster$, 0]]
|
|
2666
|
-
];
|
|
2667
|
-
var ModifyCacheParameterGroupMessage$ = [3, n0, _MCPGM,
|
|
2668
|
-
0,
|
|
2669
|
-
[_CPGN, _PNV],
|
|
2670
|
-
[0, [() => ParameterNameValueList, 0]], 2
|
|
2671
|
-
];
|
|
2672
|
-
var ModifyCacheSubnetGroupMessage$ = [3, n0, _MCSGM,
|
|
2673
|
-
0,
|
|
2674
|
-
[_CSGNa, _CSGD, _SI],
|
|
2675
|
-
[0, 0, [() => SubnetIdentifierList, 0]], 1
|
|
2676
|
-
];
|
|
2677
|
-
var ModifyCacheSubnetGroupResult$ = [3, n0, _MCSGR,
|
|
2678
|
-
0,
|
|
2679
|
-
[_CSGac],
|
|
2680
|
-
[[() => CacheSubnetGroup$, 0]]
|
|
2681
|
-
];
|
|
2682
|
-
var ModifyGlobalReplicationGroupMessage$ = [3, n0, _MGRGM,
|
|
2683
|
-
0,
|
|
2684
|
-
[_GRGI, _AI, _CNT, _E, _EV, _CPGN, _GRGD, _AFE],
|
|
2685
|
-
[0, 2, 0, 0, 0, 0, 0, 2], 2
|
|
2686
|
-
];
|
|
2687
|
-
var ModifyGlobalReplicationGroupResult$ = [3, n0, _MGRGR,
|
|
2688
|
-
0,
|
|
2689
|
-
[_GRG],
|
|
2690
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2691
|
-
];
|
|
2692
|
-
var ModifyReplicationGroupMessage$ = [3, n0, _MRGM,
|
|
2693
|
-
0,
|
|
2694
|
-
[_RGIe, _RGD, _PCI, _SCI, _AFE, _MAZE, _NGI, _CSGNac, _SGI, _PMW, _NTA, _CPGN, _NTS, _AI, _E, _EV, _AMVU, _SRL, _SW, _CNT, _AT, _ATUS, _UGITA, _UGITR, _RUG, _LDC, _ID, _TEE, _TEM, _CM],
|
|
2695
|
-
[0, 0, 0, 0, 2, 2, 0, [() => CacheSecurityGroupNameList, 0], [() => SecurityGroupIdsList, 0], 0, 0, 0, 0, 2, 0, 0, 2, 1, 0, 0, 0, 0, 64 | 0, 64 | 0, 2, [() => LogDeliveryConfigurationRequestList, 0], 0, 2, 0, 0], 1
|
|
2696
|
-
];
|
|
2697
|
-
var ModifyReplicationGroupResult$ = [3, n0, _MRGR,
|
|
2698
|
-
0,
|
|
2699
|
-
[_RG],
|
|
2700
|
-
[[() => ReplicationGroup$, 0]]
|
|
2701
|
-
];
|
|
2702
|
-
var ModifyReplicationGroupShardConfigurationMessage$ = [3, n0, _MRGSCM,
|
|
2703
|
-
0,
|
|
2704
|
-
[_RGIe, _NGCo, _AI, _RCes, _NGTR, _NGTRo],
|
|
2705
|
-
[0, 1, 2, [() => ReshardingConfigurationList, 0], [() => NodeGroupsToRemoveList, 0], [() => NodeGroupsToRetainList, 0]], 3
|
|
2706
|
-
];
|
|
2707
|
-
var ModifyReplicationGroupShardConfigurationResult$ = [3, n0, _MRGSCR,
|
|
2708
|
-
0,
|
|
2709
|
-
[_RG],
|
|
2710
|
-
[[() => ReplicationGroup$, 0]]
|
|
2711
|
-
];
|
|
2712
|
-
var ModifyServerlessCacheRequest$ = [3, n0, _MSCR,
|
|
2713
|
-
0,
|
|
2714
|
-
[_SCN, _D, _CUL, _RUGe, _UGIs, _SGI, _SRL, _DST, _E, _MEVa],
|
|
2715
|
-
[0, 0, () => CacheUsageLimits$, 2, 0, [() => SecurityGroupIdsList, 0], 1, 0, 0, 0], 1
|
|
2716
|
-
];
|
|
2717
|
-
var ModifyServerlessCacheResponse$ = [3, n0, _MSCRo,
|
|
2718
|
-
0,
|
|
2719
|
-
[_SC],
|
|
2720
|
-
[[() => ServerlessCache$, 0]]
|
|
2721
|
-
];
|
|
2722
|
-
var ModifyUserGroupMessage$ = [3, n0, _MUGM,
|
|
2723
|
-
0,
|
|
2724
|
-
[_UGIs, _UITA, _UITR, _E],
|
|
2725
|
-
[0, 64 | 0, 64 | 0, 0], 1
|
|
2726
|
-
];
|
|
2727
|
-
var ModifyUserMessage$ = [3, n0, _MUM,
|
|
2728
|
-
0,
|
|
2729
|
-
[_UIs, _AS, _AAS, _P, _NPR, _AM, _E],
|
|
2730
|
-
[0, 0, 0, 64 | 0, 2, () => AuthenticationMode$, 0], 1
|
|
2731
|
-
];
|
|
2732
|
-
var NodeGroup$ = [3, n0, _NG,
|
|
2733
|
-
0,
|
|
2734
|
-
[_NGI, _St, _PE, _RE, _Sl, _NGM],
|
|
2735
|
-
[0, 0, () => Endpoint$, () => Endpoint$, 0, [() => NodeGroupMemberList, 0]]
|
|
2736
|
-
];
|
|
2737
|
-
var NodeGroupConfiguration$ = [3, n0, _NGC,
|
|
2738
|
-
0,
|
|
2739
|
-
[_NGI, _Sl, _RCep, _PAZri, _RAZ, _POAri, _ROA],
|
|
2740
|
-
[0, 0, 1, 0, [() => AvailabilityZonesList, 0], 0, [() => OutpostArnsList, 0]]
|
|
2741
|
-
];
|
|
2742
|
-
var NodeGroupMember$ = [3, n0, _NGMo,
|
|
2743
|
-
0,
|
|
2744
|
-
[_CCIa, _CNI, _REe, _PAZ, _POA, _CR],
|
|
2745
|
-
[0, 0, () => Endpoint$, 0, 0, 0]
|
|
2746
|
-
];
|
|
2747
|
-
var NodeGroupMemberUpdateStatus$ = [3, n0, _NGMUS,
|
|
2748
|
-
0,
|
|
2749
|
-
[_CCIa, _CNI, _NUS, _NDD, _NUSD, _NUED, _NUIB, _NUID, _NUSMD],
|
|
2750
|
-
[0, 0, 0, 4, 4, 4, 0, 4, 4]
|
|
2751
|
-
];
|
|
2752
|
-
var NodeGroupNotFoundFault$ = [-3, n0, _NGNFF,
|
|
2753
|
-
{ [_aQE]: [`NodeGroupNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
2754
|
-
[_m],
|
|
2755
|
-
[0]
|
|
2756
|
-
];
|
|
2757
|
-
schema.TypeRegistry.for(n0).registerError(NodeGroupNotFoundFault$, NodeGroupNotFoundFault);
|
|
2758
|
-
var NodeGroupsPerReplicationGroupQuotaExceededFault$ = [-3, n0, _NGPRGQEF,
|
|
2759
|
-
{ [_aQE]: [`NodeGroupsPerReplicationGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2760
|
-
[_m],
|
|
2761
|
-
[0]
|
|
2762
|
-
];
|
|
2763
|
-
schema.TypeRegistry.for(n0).registerError(NodeGroupsPerReplicationGroupQuotaExceededFault$, NodeGroupsPerReplicationGroupQuotaExceededFault);
|
|
2764
|
-
var NodeGroupUpdateStatus$ = [3, n0, _NGUS,
|
|
2765
|
-
0,
|
|
2766
|
-
[_NGI, _NGMUS],
|
|
2767
|
-
[0, [() => NodeGroupMemberUpdateStatusList, 0]]
|
|
2768
|
-
];
|
|
2769
|
-
var NodeQuotaForClusterExceededFault$ = [-3, n0, _NQFCEF,
|
|
2770
|
-
{ [_aQE]: [`NodeQuotaForClusterExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2771
|
-
[_m],
|
|
2772
|
-
[0]
|
|
2773
|
-
];
|
|
2774
|
-
schema.TypeRegistry.for(n0).registerError(NodeQuotaForClusterExceededFault$, NodeQuotaForClusterExceededFault);
|
|
2775
|
-
var NodeQuotaForCustomerExceededFault$ = [-3, n0, _NQFCEFo,
|
|
2776
|
-
{ [_aQE]: [`NodeQuotaForCustomerExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2777
|
-
[_m],
|
|
2778
|
-
[0]
|
|
2779
|
-
];
|
|
2780
|
-
schema.TypeRegistry.for(n0).registerError(NodeQuotaForCustomerExceededFault$, NodeQuotaForCustomerExceededFault);
|
|
2781
|
-
var NodeSnapshot$ = [3, n0, _NS,
|
|
2782
|
-
0,
|
|
2783
|
-
[_CCIa, _NGI, _CNI, _NGC, _CSa, _CNCT, _SCT],
|
|
2784
|
-
[0, 0, 0, [() => NodeGroupConfiguration$, 0], 0, 4, 4]
|
|
2785
|
-
];
|
|
2786
|
-
var NoOperationFault$ = [-3, n0, _NOF,
|
|
2787
|
-
{ [_aQE]: [`NoOperationFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2788
|
-
[_m],
|
|
2789
|
-
[0]
|
|
2790
|
-
];
|
|
2791
|
-
schema.TypeRegistry.for(n0).registerError(NoOperationFault$, NoOperationFault);
|
|
2792
|
-
var NotificationConfiguration$ = [3, n0, _NC,
|
|
2793
|
-
0,
|
|
2794
|
-
[_TA, _TS],
|
|
2795
|
-
[0, 0]
|
|
2796
|
-
];
|
|
2797
|
-
var Parameter$ = [3, n0, _Par,
|
|
2798
|
-
0,
|
|
2799
|
-
[_PN, _PV, _D, _S, _DT, _AV, _IM, _MEV, _CT],
|
|
2800
|
-
[0, 0, 0, 0, 0, 0, 2, 0, 0]
|
|
2801
|
-
];
|
|
2802
|
-
var ParameterNameValue$ = [3, n0, _PNVa,
|
|
2803
|
-
0,
|
|
2804
|
-
[_PN, _PV],
|
|
2805
|
-
[0, 0]
|
|
2806
|
-
];
|
|
2807
|
-
var PendingLogDeliveryConfiguration$ = [3, n0, _PLDC,
|
|
2808
|
-
0,
|
|
2809
|
-
[_LT, _DTe, _DD, _LF],
|
|
2810
|
-
[0, 0, () => DestinationDetails$, 0]
|
|
2811
|
-
];
|
|
2812
|
-
var PendingModifiedValues$ = [3, n0, _PMV,
|
|
2813
|
-
0,
|
|
2814
|
-
[_NCN, _CNITRa, _EV, _CNT, _ATS, _LDC, _TEE, _TEM, _SCc],
|
|
2815
|
-
[1, [() => CacheNodeIdsList, 0], 0, 0, 0, () => PendingLogDeliveryConfigurationList, 2, 0, () => ScaleConfig$]
|
|
2816
|
-
];
|
|
2817
|
-
var ProcessedUpdateAction$ = [3, n0, _PUA,
|
|
2818
|
-
0,
|
|
2819
|
-
[_RGIe, _CCIa, _SUN, _UAS],
|
|
2820
|
-
[0, 0, 0, 0]
|
|
2821
|
-
];
|
|
2822
|
-
var PurchaseReservedCacheNodesOfferingMessage$ = [3, n0, _PRCNOM,
|
|
2823
|
-
0,
|
|
2824
|
-
[_RCNOI, _RCNI, _CNC, _T],
|
|
2825
|
-
[0, 0, 1, [() => TagList, 0]], 1
|
|
2826
|
-
];
|
|
2827
|
-
var PurchaseReservedCacheNodesOfferingResult$ = [3, n0, _PRCNOR,
|
|
2828
|
-
0,
|
|
2829
|
-
[_RCN],
|
|
2830
|
-
[[() => ReservedCacheNode$, 0]]
|
|
2831
|
-
];
|
|
2832
|
-
var RebalanceSlotsInGlobalReplicationGroupMessage$ = [3, n0, _RSIGRGM,
|
|
2833
|
-
0,
|
|
2834
|
-
[_GRGI, _AI],
|
|
2835
|
-
[0, 2], 2
|
|
2836
|
-
];
|
|
2837
|
-
var RebalanceSlotsInGlobalReplicationGroupResult$ = [3, n0, _RSIGRGR,
|
|
2838
|
-
0,
|
|
2839
|
-
[_GRG],
|
|
2840
|
-
[[() => GlobalReplicationGroup$, 0]]
|
|
2841
|
-
];
|
|
2842
|
-
var RebootCacheClusterMessage$ = [3, n0, _RCCM,
|
|
2843
|
-
0,
|
|
2844
|
-
[_CCIa, _CNITR],
|
|
2845
|
-
[0, [() => CacheNodeIdsList, 0]], 2
|
|
2846
|
-
];
|
|
2847
|
-
var RebootCacheClusterResult$ = [3, n0, _RCCR,
|
|
2848
|
-
0,
|
|
2849
|
-
[_CC],
|
|
2850
|
-
[[() => CacheCluster$, 0]]
|
|
2851
|
-
];
|
|
2852
|
-
var RecurringCharge$ = [3, n0, _RCec,
|
|
2853
|
-
0,
|
|
2854
|
-
[_RCA, _RCF],
|
|
2855
|
-
[1, 0]
|
|
2856
|
-
];
|
|
2857
|
-
var RegionalConfiguration$ = [3, n0, _RCeg,
|
|
2858
|
-
0,
|
|
2859
|
-
[_RGIe, _RGR, _RCes],
|
|
2860
|
-
[0, 0, [() => ReshardingConfigurationList, 0]], 3
|
|
2861
|
-
];
|
|
2862
|
-
var RemoveTagsFromResourceMessage$ = [3, n0, _RTFRM,
|
|
2863
|
-
0,
|
|
2864
|
-
[_RN, _TK],
|
|
2865
|
-
[0, 64 | 0], 2
|
|
2866
|
-
];
|
|
2867
|
-
var ReplicationGroup$ = [3, n0, _RG,
|
|
2868
|
-
0,
|
|
2869
|
-
[_RGIe, _D, _GRGIl, _St, _PMV, _MC, _NGo, _SCI, _AF, _MAZ, _CE, _SRL, _SW, _CEl, _CNT, _ATE, _ATLMD, _TEE, _AREE, _MCOA, _KKI, _ARN, _UGI, _LDC, _RGCT, _DTa, _AMVU, _NT, _ID, _TEM, _CM, _E],
|
|
2870
|
-
[0, 0, () => GlobalReplicationGroupInfo$, 0, () => ReplicationGroupPendingModifiedValues$, [() => ClusterIdList, 0], [() => NodeGroupList, 0], 0, 0, 0, () => Endpoint$, 1, 0, 2, 0, 2, 4, 2, 2, [() => ReplicationGroupOutpostArnList, 0], 0, 0, 64 | 0, [() => LogDeliveryConfigurationList, 0], 4, 0, 2, 0, 0, 0, 0, 0]
|
|
2871
|
-
];
|
|
2872
|
-
var ReplicationGroupAlreadyExistsFault$ = [-3, n0, _RGAEF,
|
|
2873
|
-
{ [_aQE]: [`ReplicationGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
2874
|
-
[_m],
|
|
2875
|
-
[0]
|
|
2876
|
-
];
|
|
2877
|
-
schema.TypeRegistry.for(n0).registerError(ReplicationGroupAlreadyExistsFault$, ReplicationGroupAlreadyExistsFault);
|
|
2878
|
-
var ReplicationGroupAlreadyUnderMigrationFault$ = [-3, n0, _RGAUMF,
|
|
2879
|
-
{ [_aQE]: [`ReplicationGroupAlreadyUnderMigrationFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2880
|
-
[_m],
|
|
2881
|
-
[0]
|
|
2882
|
-
];
|
|
2883
|
-
schema.TypeRegistry.for(n0).registerError(ReplicationGroupAlreadyUnderMigrationFault$, ReplicationGroupAlreadyUnderMigrationFault);
|
|
2884
|
-
var ReplicationGroupMessage$ = [3, n0, _RGM,
|
|
2885
|
-
0,
|
|
2886
|
-
[_M, _RGe],
|
|
2887
|
-
[0, [() => ReplicationGroupList, 0]]
|
|
2888
|
-
];
|
|
2889
|
-
var ReplicationGroupNotFoundFault$ = [-3, n0, _RGNFF,
|
|
2890
|
-
{ [_aQE]: [`ReplicationGroupNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
2891
|
-
[_m],
|
|
2892
|
-
[0]
|
|
2893
|
-
];
|
|
2894
|
-
schema.TypeRegistry.for(n0).registerError(ReplicationGroupNotFoundFault$, ReplicationGroupNotFoundFault);
|
|
2895
|
-
var ReplicationGroupNotUnderMigrationFault$ = [-3, n0, _RGNUMF,
|
|
2896
|
-
{ [_aQE]: [`ReplicationGroupNotUnderMigrationFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2897
|
-
[_m],
|
|
2898
|
-
[0]
|
|
2899
|
-
];
|
|
2900
|
-
schema.TypeRegistry.for(n0).registerError(ReplicationGroupNotUnderMigrationFault$, ReplicationGroupNotUnderMigrationFault);
|
|
2901
|
-
var ReplicationGroupPendingModifiedValues$ = [3, n0, _RGPMV,
|
|
2902
|
-
0,
|
|
2903
|
-
[_PCI, _AFS, _Re, _ATS, _UG, _LDC, _TEE, _TEM, _CM],
|
|
2904
|
-
[0, 0, () => ReshardingStatus$, 0, () => UserGroupsUpdateStatus$, () => PendingLogDeliveryConfigurationList, 2, 0, 0]
|
|
2905
|
-
];
|
|
2906
|
-
var ReservedCacheNode$ = [3, n0, _RCN,
|
|
2907
|
-
0,
|
|
2908
|
-
[_RCNI, _RCNOI, _CNT, _STt, _Du, _FP, _UP, _CNC, _PD, _OT, _Sta, _RCecu, _RARN],
|
|
2909
|
-
[0, 0, 0, 4, 1, 1, 1, 1, 0, 0, 0, [() => RecurringChargeList, 0], 0]
|
|
2910
|
-
];
|
|
2911
|
-
var ReservedCacheNodeAlreadyExistsFault$ = [-3, n0, _RCNAEF,
|
|
2912
|
-
{ [_aQE]: [`ReservedCacheNodeAlreadyExists`, 404], [_e]: _c, [_hE]: 404 },
|
|
2913
|
-
[_m],
|
|
2914
|
-
[0]
|
|
2915
|
-
];
|
|
2916
|
-
schema.TypeRegistry.for(n0).registerError(ReservedCacheNodeAlreadyExistsFault$, ReservedCacheNodeAlreadyExistsFault);
|
|
2917
|
-
var ReservedCacheNodeMessage$ = [3, n0, _RCNM,
|
|
2918
|
-
0,
|
|
2919
|
-
[_M, _RCNe],
|
|
2920
|
-
[0, [() => ReservedCacheNodeList, 0]]
|
|
2921
|
-
];
|
|
2922
|
-
var ReservedCacheNodeNotFoundFault$ = [-3, n0, _RCNNFF,
|
|
2923
|
-
{ [_aQE]: [`ReservedCacheNodeNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
2924
|
-
[_m],
|
|
2925
|
-
[0]
|
|
2926
|
-
];
|
|
2927
|
-
schema.TypeRegistry.for(n0).registerError(ReservedCacheNodeNotFoundFault$, ReservedCacheNodeNotFoundFault);
|
|
2928
|
-
var ReservedCacheNodeQuotaExceededFault$ = [-3, n0, _RCNQEF,
|
|
2929
|
-
{ [_aQE]: [`ReservedCacheNodeQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
2930
|
-
[_m],
|
|
2931
|
-
[0]
|
|
2932
|
-
];
|
|
2933
|
-
schema.TypeRegistry.for(n0).registerError(ReservedCacheNodeQuotaExceededFault$, ReservedCacheNodeQuotaExceededFault);
|
|
2934
|
-
var ReservedCacheNodesOffering$ = [3, n0, _RCNO,
|
|
2935
|
-
0,
|
|
2936
|
-
[_RCNOI, _CNT, _Du, _FP, _UP, _PD, _OT, _RCecu],
|
|
2937
|
-
[0, 0, 1, 1, 1, 0, 0, [() => RecurringChargeList, 0]]
|
|
2938
|
-
];
|
|
2939
|
-
var ReservedCacheNodesOfferingMessage$ = [3, n0, _RCNOM,
|
|
2940
|
-
0,
|
|
2941
|
-
[_M, _RCNOe],
|
|
2942
|
-
[0, [() => ReservedCacheNodesOfferingList, 0]]
|
|
2943
|
-
];
|
|
2944
|
-
var ReservedCacheNodesOfferingNotFoundFault$ = [-3, n0, _RCNONFF,
|
|
2945
|
-
{ [_aQE]: [`ReservedCacheNodesOfferingNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
2946
|
-
[_m],
|
|
2947
|
-
[0]
|
|
2948
|
-
];
|
|
2949
|
-
schema.TypeRegistry.for(n0).registerError(ReservedCacheNodesOfferingNotFoundFault$, ReservedCacheNodesOfferingNotFoundFault);
|
|
2950
|
-
var ResetCacheParameterGroupMessage$ = [3, n0, _RCPGM,
|
|
2951
|
-
0,
|
|
2952
|
-
[_CPGN, _RAP, _PNV],
|
|
2953
|
-
[0, 2, [() => ParameterNameValueList, 0]], 1
|
|
2954
|
-
];
|
|
2955
|
-
var ReshardingConfiguration$ = [3, n0, _RCes,
|
|
2956
|
-
0,
|
|
2957
|
-
[_NGI, _PAZr],
|
|
2958
|
-
[0, [() => AvailabilityZonesList, 0]]
|
|
2959
|
-
];
|
|
2960
|
-
var ReshardingStatus$ = [3, n0, _RS,
|
|
2961
|
-
0,
|
|
2962
|
-
[_SM],
|
|
2963
|
-
[() => SlotMigration$]
|
|
2964
|
-
];
|
|
2965
|
-
var RevokeCacheSecurityGroupIngressMessage$ = [3, n0, _RCSGIM,
|
|
2966
|
-
0,
|
|
2967
|
-
[_CSGN, _ECSGN, _ECSGOI],
|
|
2968
|
-
[0, 0, 0], 3
|
|
2969
|
-
];
|
|
2970
|
-
var RevokeCacheSecurityGroupIngressResult$ = [3, n0, _RCSGIR,
|
|
2971
|
-
0,
|
|
2972
|
-
[_CSG],
|
|
2973
|
-
[[() => CacheSecurityGroup$, 0]]
|
|
2974
|
-
];
|
|
2975
|
-
var ScaleConfig$ = [3, n0, _SCc,
|
|
2976
|
-
0,
|
|
2977
|
-
[_SP, _SIM],
|
|
2978
|
-
[1, 1]
|
|
2979
|
-
];
|
|
2980
|
-
var SecurityGroupMembership$ = [3, n0, _SGM,
|
|
2981
|
-
0,
|
|
2982
|
-
[_SGIe, _St],
|
|
2983
|
-
[0, 0]
|
|
2984
|
-
];
|
|
2985
|
-
var ServerlessCache$ = [3, n0, _SC,
|
|
2986
|
-
0,
|
|
2987
|
-
[_SCN, _D, _CTr, _St, _E, _MEVa, _FEV, _CUL, _KKI, _SGI, _En, _RE, _ARN, _UGIs, _SI, _SRL, _DST],
|
|
2988
|
-
[0, 0, 4, 0, 0, 0, 0, () => CacheUsageLimits$, 0, [() => SecurityGroupIdsList, 0], () => Endpoint$, () => Endpoint$, 0, 0, [() => SubnetIdsList, 0], 1, 0]
|
|
2989
|
-
];
|
|
2990
|
-
var ServerlessCacheAlreadyExistsFault$ = [-3, n0, _SCAEF,
|
|
2991
|
-
{ [_aQE]: [`ServerlessCacheAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
2992
|
-
[_m],
|
|
2993
|
-
[0]
|
|
2994
|
-
];
|
|
2995
|
-
schema.TypeRegistry.for(n0).registerError(ServerlessCacheAlreadyExistsFault$, ServerlessCacheAlreadyExistsFault);
|
|
2996
|
-
var ServerlessCacheConfiguration$ = [3, n0, _SCC,
|
|
2997
|
-
0,
|
|
2998
|
-
[_SCN, _E, _MEVa],
|
|
2999
|
-
[0, 0, 0]
|
|
3000
|
-
];
|
|
3001
|
-
var ServerlessCacheNotFoundFault$ = [-3, n0, _SCNFF,
|
|
3002
|
-
{ [_aQE]: [`ServerlessCacheNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
3003
|
-
[_m],
|
|
3004
|
-
[0]
|
|
3005
|
-
];
|
|
3006
|
-
schema.TypeRegistry.for(n0).registerError(ServerlessCacheNotFoundFault$, ServerlessCacheNotFoundFault);
|
|
3007
|
-
var ServerlessCacheQuotaForCustomerExceededFault$ = [-3, n0, _SCQFCEF,
|
|
3008
|
-
{ [_aQE]: [`ServerlessCacheQuotaForCustomerExceededFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3009
|
-
[_m],
|
|
3010
|
-
[0]
|
|
3011
|
-
];
|
|
3012
|
-
schema.TypeRegistry.for(n0).registerError(ServerlessCacheQuotaForCustomerExceededFault$, ServerlessCacheQuotaForCustomerExceededFault);
|
|
3013
|
-
var ServerlessCacheSnapshot$ = [3, n0, _SCS,
|
|
3014
|
-
0,
|
|
3015
|
-
[_SCSN, _ARN, _KKI, _STn, _St, _CTr, _ETx, _BUFC, _SCC],
|
|
3016
|
-
[0, 0, 0, 0, 0, 4, 4, 0, () => ServerlessCacheConfiguration$]
|
|
3017
|
-
];
|
|
3018
|
-
var ServerlessCacheSnapshotAlreadyExistsFault$ = [-3, n0, _SCSAEF,
|
|
3019
|
-
{ [_aQE]: [`ServerlessCacheSnapshotAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3020
|
-
[_m],
|
|
3021
|
-
[0]
|
|
3022
|
-
];
|
|
3023
|
-
schema.TypeRegistry.for(n0).registerError(ServerlessCacheSnapshotAlreadyExistsFault$, ServerlessCacheSnapshotAlreadyExistsFault);
|
|
3024
|
-
var ServerlessCacheSnapshotNotFoundFault$ = [-3, n0, _SCSNFF,
|
|
3025
|
-
{ [_aQE]: [`ServerlessCacheSnapshotNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
3026
|
-
[_m],
|
|
3027
|
-
[0]
|
|
3028
|
-
];
|
|
3029
|
-
schema.TypeRegistry.for(n0).registerError(ServerlessCacheSnapshotNotFoundFault$, ServerlessCacheSnapshotNotFoundFault);
|
|
3030
|
-
var ServerlessCacheSnapshotQuotaExceededFault$ = [-3, n0, _SCSQEF,
|
|
3031
|
-
{ [_aQE]: [`ServerlessCacheSnapshotQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3032
|
-
[_m],
|
|
3033
|
-
[0]
|
|
3034
|
-
];
|
|
3035
|
-
schema.TypeRegistry.for(n0).registerError(ServerlessCacheSnapshotQuotaExceededFault$, ServerlessCacheSnapshotQuotaExceededFault);
|
|
3036
|
-
var ServiceLinkedRoleNotFoundFault$ = [-3, n0, _SLRNFF,
|
|
3037
|
-
{ [_aQE]: [`ServiceLinkedRoleNotFoundFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3038
|
-
[_m],
|
|
3039
|
-
[0]
|
|
3040
|
-
];
|
|
3041
|
-
schema.TypeRegistry.for(n0).registerError(ServiceLinkedRoleNotFoundFault$, ServiceLinkedRoleNotFoundFault);
|
|
3042
|
-
var ServiceUpdate$ = [3, n0, _SU,
|
|
3043
|
-
0,
|
|
3044
|
-
[_SUN, _SURD, _SUED, _SUSe, _SURABD, _SUS, _SUD, _SUT, _E, _EV, _AUARABD, _EUT],
|
|
3045
|
-
[0, 4, 4, 0, 4, 0, 0, 0, 0, 0, 2, 0]
|
|
3046
|
-
];
|
|
3047
|
-
var ServiceUpdateNotFoundFault$ = [-3, n0, _SUNFF,
|
|
3048
|
-
{ [_aQE]: [`ServiceUpdateNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
3049
|
-
[_m],
|
|
3050
|
-
[0]
|
|
3051
|
-
];
|
|
3052
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUpdateNotFoundFault$, ServiceUpdateNotFoundFault);
|
|
3053
|
-
var ServiceUpdatesMessage$ = [3, n0, _SUMe,
|
|
3054
|
-
0,
|
|
3055
|
-
[_M, _SUe],
|
|
3056
|
-
[0, [() => ServiceUpdateList, 0]]
|
|
3057
|
-
];
|
|
3058
|
-
var SlotMigration$ = [3, n0, _SM,
|
|
3059
|
-
0,
|
|
3060
|
-
[_PP],
|
|
3061
|
-
[1]
|
|
3062
|
-
];
|
|
3063
|
-
var Snapshot$ = [3, n0, _Sn,
|
|
3064
|
-
0,
|
|
3065
|
-
[_SN, _RGIe, _RGD, _CCIa, _SSn, _SS, _CNT, _E, _EV, _NCN, _PAZ, _POA, _CCCT, _PMW, _TA, _Po, _CPGN, _CSGNa, _VI, _AMVU, _SRL, _SW, _NNG, _AF, _NSo, _KKI, _ARN, _DTa],
|
|
3066
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 1, 0, 0, 0, 2, 1, 0, 1, 0, [() => NodeSnapshotList, 0], 0, 0, 0]
|
|
3067
|
-
];
|
|
3068
|
-
var SnapshotAlreadyExistsFault$ = [-3, n0, _SAEF,
|
|
3069
|
-
{ [_aQE]: [`SnapshotAlreadyExistsFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3070
|
-
[_m],
|
|
3071
|
-
[0]
|
|
3072
|
-
];
|
|
3073
|
-
schema.TypeRegistry.for(n0).registerError(SnapshotAlreadyExistsFault$, SnapshotAlreadyExistsFault);
|
|
3074
|
-
var SnapshotFeatureNotSupportedFault$ = [-3, n0, _SFNSF,
|
|
3075
|
-
{ [_aQE]: [`SnapshotFeatureNotSupportedFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3076
|
-
[_m],
|
|
3077
|
-
[0]
|
|
3078
|
-
];
|
|
3079
|
-
schema.TypeRegistry.for(n0).registerError(SnapshotFeatureNotSupportedFault$, SnapshotFeatureNotSupportedFault);
|
|
3080
|
-
var SnapshotNotFoundFault$ = [-3, n0, _SNFF,
|
|
3081
|
-
{ [_aQE]: [`SnapshotNotFoundFault`, 404], [_e]: _c, [_hE]: 404 },
|
|
3082
|
-
[_m],
|
|
3083
|
-
[0]
|
|
3084
|
-
];
|
|
3085
|
-
schema.TypeRegistry.for(n0).registerError(SnapshotNotFoundFault$, SnapshotNotFoundFault);
|
|
3086
|
-
var SnapshotQuotaExceededFault$ = [-3, n0, _SQEF,
|
|
3087
|
-
{ [_aQE]: [`SnapshotQuotaExceededFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3088
|
-
[_m],
|
|
3089
|
-
[0]
|
|
3090
|
-
];
|
|
3091
|
-
schema.TypeRegistry.for(n0).registerError(SnapshotQuotaExceededFault$, SnapshotQuotaExceededFault);
|
|
3092
|
-
var StartMigrationMessage$ = [3, n0, _SMM,
|
|
3093
|
-
0,
|
|
3094
|
-
[_RGIe, _CNEL],
|
|
3095
|
-
[0, () => CustomerNodeEndpointList], 2
|
|
3096
|
-
];
|
|
3097
|
-
var StartMigrationResponse$ = [3, n0, _SMR,
|
|
3098
|
-
0,
|
|
3099
|
-
[_RG],
|
|
3100
|
-
[[() => ReplicationGroup$, 0]]
|
|
3101
|
-
];
|
|
3102
|
-
var Subnet$ = [3, n0, _Sub,
|
|
3103
|
-
0,
|
|
3104
|
-
[_SIu, _SAZ, _SO, _SNT],
|
|
3105
|
-
[0, () => AvailabilityZone$, () => SubnetOutpost$, 64 | 0]
|
|
3106
|
-
];
|
|
3107
|
-
var SubnetInUse$ = [-3, n0, _SIU,
|
|
3108
|
-
{ [_aQE]: [`SubnetInUse`, 400], [_e]: _c, [_hE]: 400 },
|
|
3109
|
-
[_m],
|
|
3110
|
-
[0]
|
|
3111
|
-
];
|
|
3112
|
-
schema.TypeRegistry.for(n0).registerError(SubnetInUse$, SubnetInUse);
|
|
3113
|
-
var SubnetNotAllowedFault$ = [-3, n0, _SNAF,
|
|
3114
|
-
{ [_aQE]: [`SubnetNotAllowedFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3115
|
-
[_m],
|
|
3116
|
-
[0]
|
|
3117
|
-
];
|
|
3118
|
-
schema.TypeRegistry.for(n0).registerError(SubnetNotAllowedFault$, SubnetNotAllowedFault);
|
|
3119
|
-
var SubnetOutpost$ = [3, n0, _SO,
|
|
3120
|
-
0,
|
|
3121
|
-
[_SOA],
|
|
3122
|
-
[0]
|
|
3123
|
-
];
|
|
3124
|
-
var Tag$ = [3, n0, _Ta,
|
|
3125
|
-
0,
|
|
3126
|
-
[_K, _V],
|
|
3127
|
-
[0, 0]
|
|
3128
|
-
];
|
|
3129
|
-
var TagListMessage$ = [3, n0, _TLM,
|
|
3130
|
-
0,
|
|
3131
|
-
[_TL],
|
|
3132
|
-
[[() => TagList, 0]]
|
|
3133
|
-
];
|
|
3134
|
-
var TagNotFoundFault$ = [-3, n0, _TNFF,
|
|
3135
|
-
{ [_aQE]: [`TagNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
3136
|
-
[_m],
|
|
3137
|
-
[0]
|
|
3138
|
-
];
|
|
3139
|
-
schema.TypeRegistry.for(n0).registerError(TagNotFoundFault$, TagNotFoundFault);
|
|
3140
|
-
var TagQuotaPerResourceExceeded$ = [-3, n0, _TQPRE,
|
|
3141
|
-
{ [_aQE]: [`TagQuotaPerResourceExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
3142
|
-
[_m],
|
|
3143
|
-
[0]
|
|
3144
|
-
];
|
|
3145
|
-
schema.TypeRegistry.for(n0).registerError(TagQuotaPerResourceExceeded$, TagQuotaPerResourceExceeded);
|
|
3146
|
-
var TestFailoverMessage$ = [3, n0, _TFM,
|
|
3147
|
-
0,
|
|
3148
|
-
[_RGIe, _NGI],
|
|
3149
|
-
[0, 0], 2
|
|
3150
|
-
];
|
|
3151
|
-
var TestFailoverNotAvailableFault$ = [-3, n0, _TFNAF,
|
|
3152
|
-
{ [_aQE]: [`TestFailoverNotAvailableFault`, 400], [_e]: _c, [_hE]: 400 },
|
|
3153
|
-
[_m],
|
|
3154
|
-
[0]
|
|
3155
|
-
];
|
|
3156
|
-
schema.TypeRegistry.for(n0).registerError(TestFailoverNotAvailableFault$, TestFailoverNotAvailableFault);
|
|
3157
|
-
var TestFailoverResult$ = [3, n0, _TFR,
|
|
3158
|
-
0,
|
|
3159
|
-
[_RG],
|
|
3160
|
-
[[() => ReplicationGroup$, 0]]
|
|
3161
|
-
];
|
|
3162
|
-
var TestMigrationMessage$ = [3, n0, _TMM,
|
|
3163
|
-
0,
|
|
3164
|
-
[_RGIe, _CNEL],
|
|
3165
|
-
[0, () => CustomerNodeEndpointList], 2
|
|
3166
|
-
];
|
|
3167
|
-
var TestMigrationResponse$ = [3, n0, _TMR,
|
|
3168
|
-
0,
|
|
3169
|
-
[_RG],
|
|
3170
|
-
[[() => ReplicationGroup$, 0]]
|
|
3171
|
-
];
|
|
3172
|
-
var TimeRangeFilter$ = [3, n0, _TRF,
|
|
3173
|
-
0,
|
|
3174
|
-
[_STt, _ET],
|
|
3175
|
-
[4, 4]
|
|
3176
|
-
];
|
|
3177
|
-
var UnprocessedUpdateAction$ = [3, n0, _UUA,
|
|
3178
|
-
0,
|
|
3179
|
-
[_RGIe, _CCIa, _SUN, _ETr, _EMr],
|
|
3180
|
-
[0, 0, 0, 0, 0]
|
|
3181
|
-
];
|
|
3182
|
-
var UpdateAction$ = [3, n0, _UA,
|
|
3183
|
-
0,
|
|
3184
|
-
[_RGIe, _CCIa, _SUN, _SURD, _SUSe, _SUS, _SURABD, _SUT, _UAAD, _UAS, _NU, _UASMD, _SMl, _NGUS, _CNUS, _EUT, _E],
|
|
3185
|
-
[0, 0, 0, 4, 0, 0, 4, 0, 4, 0, 0, 4, 0, [() => NodeGroupUpdateStatusList, 0], [() => CacheNodeUpdateStatusList, 0], 0, 0]
|
|
3186
|
-
];
|
|
3187
|
-
var UpdateActionResultsMessage$ = [3, n0, _UARM,
|
|
3188
|
-
0,
|
|
3189
|
-
[_PUAr, _UUAn],
|
|
3190
|
-
[[() => ProcessedUpdateActionList, 0], [() => UnprocessedUpdateActionList, 0]]
|
|
3191
|
-
];
|
|
3192
|
-
var UpdateActionsMessage$ = [3, n0, _UAM,
|
|
3193
|
-
0,
|
|
3194
|
-
[_M, _UAp],
|
|
3195
|
-
[0, [() => UpdateActionList, 0]]
|
|
3196
|
-
];
|
|
3197
|
-
var User$ = [3, n0, _Use,
|
|
3198
|
-
0,
|
|
3199
|
-
[_UIs, _UN, _St, _E, _MEV, _AS, _UGI, _A, _ARN],
|
|
3200
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, () => Authentication$, 0]
|
|
3201
|
-
];
|
|
3202
|
-
var UserAlreadyExistsFault$ = [-3, n0, _UAEF,
|
|
3203
|
-
{ [_aQE]: [`UserAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
3204
|
-
[_m],
|
|
3205
|
-
[0]
|
|
3206
|
-
];
|
|
3207
|
-
schema.TypeRegistry.for(n0).registerError(UserAlreadyExistsFault$, UserAlreadyExistsFault);
|
|
3208
|
-
var UserGroup$ = [3, n0, _UGs,
|
|
3209
|
-
0,
|
|
3210
|
-
[_UGIs, _St, _E, _UI, _MEV, _PCe, _RGe, _SCe, _ARN],
|
|
3211
|
-
[0, 0, 0, 64 | 0, 0, () => UserGroupPendingChanges$, 64 | 0, 64 | 0, 0]
|
|
3212
|
-
];
|
|
3213
|
-
var UserGroupAlreadyExistsFault$ = [-3, n0, _UGAEF,
|
|
3214
|
-
{ [_aQE]: [`UserGroupAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
3215
|
-
[_m],
|
|
3216
|
-
[0]
|
|
3217
|
-
];
|
|
3218
|
-
schema.TypeRegistry.for(n0).registerError(UserGroupAlreadyExistsFault$, UserGroupAlreadyExistsFault);
|
|
3219
|
-
var UserGroupNotFoundFault$ = [-3, n0, _UGNFF,
|
|
3220
|
-
{ [_aQE]: [`UserGroupNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
3221
|
-
[_m],
|
|
3222
|
-
[0]
|
|
3223
|
-
];
|
|
3224
|
-
schema.TypeRegistry.for(n0).registerError(UserGroupNotFoundFault$, UserGroupNotFoundFault);
|
|
3225
|
-
var UserGroupPendingChanges$ = [3, n0, _UGPC,
|
|
3226
|
-
0,
|
|
3227
|
-
[_UITR, _UITA],
|
|
3228
|
-
[64 | 0, 64 | 0]
|
|
3229
|
-
];
|
|
3230
|
-
var UserGroupQuotaExceededFault$ = [-3, n0, _UGQEF,
|
|
3231
|
-
{ [_aQE]: [`UserGroupQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
3232
|
-
[_m],
|
|
3233
|
-
[0]
|
|
3234
|
-
];
|
|
3235
|
-
schema.TypeRegistry.for(n0).registerError(UserGroupQuotaExceededFault$, UserGroupQuotaExceededFault);
|
|
3236
|
-
var UserGroupsUpdateStatus$ = [3, n0, _UGUS,
|
|
3237
|
-
0,
|
|
3238
|
-
[_UGITA, _UGITR],
|
|
3239
|
-
[64 | 0, 64 | 0]
|
|
3240
|
-
];
|
|
3241
|
-
var UserNotFoundFault$ = [-3, n0, _UNFF,
|
|
3242
|
-
{ [_aQE]: [`UserNotFound`, 404], [_e]: _c, [_hE]: 404 },
|
|
3243
|
-
[_m],
|
|
3244
|
-
[0]
|
|
3245
|
-
];
|
|
3246
|
-
schema.TypeRegistry.for(n0).registerError(UserNotFoundFault$, UserNotFoundFault);
|
|
3247
|
-
var UserQuotaExceededFault$ = [-3, n0, _UQEF,
|
|
3248
|
-
{ [_aQE]: [`UserQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
3249
|
-
[_m],
|
|
3250
|
-
[0]
|
|
3251
|
-
];
|
|
3252
|
-
schema.TypeRegistry.for(n0).registerError(UserQuotaExceededFault$, UserQuotaExceededFault);
|
|
3253
|
-
var __Unit = "unit";
|
|
3254
|
-
var ElastiCacheServiceException$ = [-3, _s, "ElastiCacheServiceException", 0, [], []];
|
|
3255
|
-
schema.TypeRegistry.for(_s).registerError(ElastiCacheServiceException$, ElastiCacheServiceException);
|
|
3256
|
-
var AvailabilityZonesList = [1, n0, _AZL,
|
|
3257
|
-
0, [0,
|
|
3258
|
-
{ [_xN]: _AZ }]
|
|
3259
|
-
];
|
|
3260
|
-
var CacheClusterList = [1, n0, _CCL,
|
|
3261
|
-
0, [() => CacheCluster$,
|
|
3262
|
-
{ [_xN]: _CC }]
|
|
3263
|
-
];
|
|
3264
|
-
var CacheEngineVersionList = [1, n0, _CEVL,
|
|
3265
|
-
0, [() => CacheEngineVersion$,
|
|
3266
|
-
{ [_xN]: _CEV }]
|
|
3267
|
-
];
|
|
3268
|
-
var CacheNodeIdsList = [1, n0, _CNIL,
|
|
3269
|
-
0, [0,
|
|
3270
|
-
{ [_xN]: _CNI }]
|
|
3271
|
-
];
|
|
3272
|
-
var CacheNodeList = [1, n0, _CNL,
|
|
3273
|
-
0, [() => CacheNode$,
|
|
3274
|
-
{ [_xN]: _CNa }]
|
|
3275
|
-
];
|
|
3276
|
-
var CacheNodeTypeSpecificParametersList = [1, n0, _CNTSPL,
|
|
3277
|
-
0, [() => CacheNodeTypeSpecificParameter$,
|
|
3278
|
-
{ [_xN]: _CNTSP }]
|
|
3279
|
-
];
|
|
3280
|
-
var CacheNodeTypeSpecificValueList = [1, n0, _CNTSVL,
|
|
3281
|
-
0, [() => CacheNodeTypeSpecificValue$,
|
|
3282
|
-
{ [_xN]: _CNTSVa }]
|
|
3283
|
-
];
|
|
3284
|
-
var CacheNodeUpdateStatusList = [1, n0, _CNUSL,
|
|
3285
|
-
0, [() => CacheNodeUpdateStatus$,
|
|
3286
|
-
{ [_xN]: _CNUS }]
|
|
3287
|
-
];
|
|
3288
|
-
var CacheParameterGroupList = [1, n0, _CPGL,
|
|
3289
|
-
0, [() => CacheParameterGroup$,
|
|
3290
|
-
{ [_xN]: _CPG }]
|
|
3291
|
-
];
|
|
3292
|
-
var CacheSecurityGroupMembershipList = [1, n0, _CSGML,
|
|
3293
|
-
0, [() => CacheSecurityGroupMembership$,
|
|
3294
|
-
{ [_xN]: _CSG }]
|
|
3295
|
-
];
|
|
3296
|
-
var CacheSecurityGroupNameList = [1, n0, _CSGNL,
|
|
3297
|
-
0, [0,
|
|
3298
|
-
{ [_xN]: _CSGN }]
|
|
3299
|
-
];
|
|
3300
|
-
var CacheSecurityGroups = [1, n0, _CSGa,
|
|
3301
|
-
0, [() => CacheSecurityGroup$,
|
|
3302
|
-
{ [_xN]: _CSG }]
|
|
3303
|
-
];
|
|
3304
|
-
var CacheSubnetGroups = [1, n0, _CSGach,
|
|
3305
|
-
0, [() => CacheSubnetGroup$,
|
|
3306
|
-
{ [_xN]: _CSGac }]
|
|
3307
|
-
];
|
|
3308
|
-
var ClusterIdList = [1, n0, _CIL,
|
|
3309
|
-
0, [0,
|
|
3310
|
-
{ [_xN]: _CI }]
|
|
3311
|
-
];
|
|
3312
|
-
var CustomerNodeEndpointList = [1, n0, _CNEL,
|
|
3313
|
-
0, () => CustomerNodeEndpoint$
|
|
3314
|
-
];
|
|
3315
|
-
var EC2SecurityGroupList = [1, n0, _ECSGL,
|
|
3316
|
-
0, [() => EC2SecurityGroup$,
|
|
3317
|
-
{ [_xN]: _ECSGe }]
|
|
3318
|
-
];
|
|
3319
|
-
var EventList = [1, n0, _EL,
|
|
3320
|
-
0, [() => Event$,
|
|
3321
|
-
{ [_xN]: _Ev }]
|
|
3322
|
-
];
|
|
3323
|
-
var FilterList = [1, n0, _FL,
|
|
3324
|
-
0, () => Filter$
|
|
3325
|
-
];
|
|
3326
|
-
var GlobalNodeGroupIdList = [1, n0, _GNGIL,
|
|
3327
|
-
0, [0,
|
|
3328
|
-
{ [_xN]: _GNGI }]
|
|
3329
|
-
];
|
|
3330
|
-
var GlobalNodeGroupList = [1, n0, _GNGL,
|
|
3331
|
-
0, [() => GlobalNodeGroup$,
|
|
3332
|
-
{ [_xN]: _GNG }]
|
|
3333
|
-
];
|
|
3334
|
-
var GlobalReplicationGroupList = [1, n0, _GRGL,
|
|
3335
|
-
0, [() => GlobalReplicationGroup$,
|
|
3336
|
-
{ [_xN]: _GRG }]
|
|
3337
|
-
];
|
|
3338
|
-
var GlobalReplicationGroupMemberList = [1, n0, _GRGML,
|
|
3339
|
-
0, [() => GlobalReplicationGroupMember$,
|
|
3340
|
-
{ [_xN]: _GRGM }]
|
|
3341
|
-
];
|
|
3342
|
-
var LogDeliveryConfigurationList = [1, n0, _LDCL,
|
|
3343
|
-
0, [() => LogDeliveryConfiguration$,
|
|
3344
|
-
{ [_xN]: _LDCo }]
|
|
3345
|
-
];
|
|
3346
|
-
var LogDeliveryConfigurationRequestList = [1, n0, _LDCRL,
|
|
3347
|
-
0, [() => LogDeliveryConfigurationRequest$,
|
|
3348
|
-
{ [_xN]: _LDCR }]
|
|
3349
|
-
];
|
|
3350
|
-
var NodeGroupConfigurationList = [1, n0, _NGCL,
|
|
3351
|
-
0, [() => NodeGroupConfiguration$,
|
|
3352
|
-
{ [_xN]: _NGC }]
|
|
3353
|
-
];
|
|
3354
|
-
var NodeGroupList = [1, n0, _NGL,
|
|
3355
|
-
0, [() => NodeGroup$,
|
|
3356
|
-
{ [_xN]: _NG }]
|
|
3357
|
-
];
|
|
3358
|
-
var NodeGroupMemberList = [1, n0, _NGML,
|
|
3359
|
-
0, [() => NodeGroupMember$,
|
|
3360
|
-
{ [_xN]: _NGMo }]
|
|
3361
|
-
];
|
|
3362
|
-
var NodeGroupMemberUpdateStatusList = [1, n0, _NGMUSL,
|
|
3363
|
-
0, [() => NodeGroupMemberUpdateStatus$,
|
|
3364
|
-
{ [_xN]: _NGMUS }]
|
|
3365
|
-
];
|
|
3366
|
-
var NodeGroupsToRemoveList = [1, n0, _NGTRL,
|
|
3367
|
-
0, [0,
|
|
3368
|
-
{ [_xN]: _NGTRod }]
|
|
3369
|
-
];
|
|
3370
|
-
var NodeGroupsToRetainList = [1, n0, _NGTRLo,
|
|
3371
|
-
0, [0,
|
|
3372
|
-
{ [_xN]: _NGTRode }]
|
|
3373
|
-
];
|
|
3374
|
-
var NodeGroupUpdateStatusList = [1, n0, _NGUSL,
|
|
3375
|
-
0, [() => NodeGroupUpdateStatus$,
|
|
3376
|
-
{ [_xN]: _NGUS }]
|
|
3377
|
-
];
|
|
3378
|
-
var NodeSnapshotList = [1, n0, _NSL,
|
|
3379
|
-
0, [() => NodeSnapshot$,
|
|
3380
|
-
{ [_xN]: _NS }]
|
|
3381
|
-
];
|
|
3382
|
-
var OutpostArnsList = [1, n0, _OAL,
|
|
3383
|
-
0, [0,
|
|
3384
|
-
{ [_xN]: _OA }]
|
|
3385
|
-
];
|
|
3386
|
-
var ParameterNameValueList = [1, n0, _PNVL,
|
|
3387
|
-
0, [() => ParameterNameValue$,
|
|
3388
|
-
{ [_xN]: _PNVa }]
|
|
3389
|
-
];
|
|
3390
|
-
var ParametersList = [1, n0, _PL,
|
|
3391
|
-
0, [() => Parameter$,
|
|
3392
|
-
{ [_xN]: _Par }]
|
|
3393
|
-
];
|
|
3394
|
-
var PendingLogDeliveryConfigurationList = [1, n0, _PLDCL,
|
|
3395
|
-
0, () => PendingLogDeliveryConfiguration$
|
|
3396
|
-
];
|
|
3397
|
-
var PreferredAvailabilityZoneList = [1, n0, _PAZL,
|
|
3398
|
-
0, [0,
|
|
3399
|
-
{ [_xN]: _PAZ }]
|
|
3400
|
-
];
|
|
3401
|
-
var PreferredOutpostArnList = [1, n0, _POAL,
|
|
3402
|
-
0, [0,
|
|
3403
|
-
{ [_xN]: _POA }]
|
|
3404
|
-
];
|
|
3405
|
-
var ProcessedUpdateActionList = [1, n0, _PUAL,
|
|
3406
|
-
0, [() => ProcessedUpdateAction$,
|
|
3407
|
-
{ [_xN]: _PUA }]
|
|
3408
|
-
];
|
|
3409
|
-
var RecurringChargeList = [1, n0, _RCL,
|
|
3410
|
-
0, [() => RecurringCharge$,
|
|
3411
|
-
{ [_xN]: _RCec }]
|
|
3412
|
-
];
|
|
3413
|
-
var RegionalConfigurationList = [1, n0, _RCLe,
|
|
3414
|
-
0, [() => RegionalConfiguration$,
|
|
3415
|
-
{ [_xN]: _RCeg }]
|
|
3416
|
-
];
|
|
3417
|
-
var ReplicaConfigurationList = [1, n0, _RCLep,
|
|
3418
|
-
0, [() => ConfigureShard$,
|
|
3419
|
-
{ [_xN]: _CS }]
|
|
3420
|
-
];
|
|
3421
|
-
var ReplicationGroupList = [1, n0, _RGL,
|
|
3422
|
-
0, [() => ReplicationGroup$,
|
|
3423
|
-
{ [_xN]: _RG }]
|
|
3424
|
-
];
|
|
3425
|
-
var ReplicationGroupOutpostArnList = [1, n0, _RGOAL,
|
|
3426
|
-
0, [0,
|
|
3427
|
-
{ [_xN]: _RGOA }]
|
|
3428
|
-
];
|
|
3429
|
-
var ReservedCacheNodeList = [1, n0, _RCNL,
|
|
3430
|
-
0, [() => ReservedCacheNode$,
|
|
3431
|
-
{ [_xN]: _RCN }]
|
|
3432
|
-
];
|
|
3433
|
-
var ReservedCacheNodesOfferingList = [1, n0, _RCNOL,
|
|
3434
|
-
0, [() => ReservedCacheNodesOffering$,
|
|
3435
|
-
{ [_xN]: _RCNO }]
|
|
3436
|
-
];
|
|
3437
|
-
var ReshardingConfigurationList = [1, n0, _RCLes,
|
|
3438
|
-
0, [() => ReshardingConfiguration$,
|
|
3439
|
-
{ [_xN]: _RCes }]
|
|
3440
|
-
];
|
|
3441
|
-
var SecurityGroupIdsList = [1, n0, _SGIL,
|
|
3442
|
-
0, [0,
|
|
3443
|
-
{ [_xN]: _SGIe }]
|
|
3444
|
-
];
|
|
3445
|
-
var SecurityGroupMembershipList = [1, n0, _SGML,
|
|
3446
|
-
0, () => SecurityGroupMembership$
|
|
3447
|
-
];
|
|
3448
|
-
var ServerlessCacheList = [1, n0, _SCL,
|
|
3449
|
-
0, [() => ServerlessCache$,
|
|
3450
|
-
0]
|
|
3451
|
-
];
|
|
3452
|
-
var ServerlessCacheSnapshotList = [1, n0, _SCSL,
|
|
3453
|
-
0, [() => ServerlessCacheSnapshot$,
|
|
3454
|
-
{ [_xN]: _SCS }]
|
|
3455
|
-
];
|
|
3456
|
-
var ServiceUpdateList = [1, n0, _SUL,
|
|
3457
|
-
0, [() => ServiceUpdate$,
|
|
3458
|
-
{ [_xN]: _SU }]
|
|
3459
|
-
];
|
|
3460
|
-
var SnapshotArnsList = [1, n0, _SAL,
|
|
3461
|
-
0, [0,
|
|
3462
|
-
{ [_xN]: _SAn }]
|
|
3463
|
-
];
|
|
3464
|
-
var SnapshotList = [1, n0, _SL,
|
|
3465
|
-
0, [() => Snapshot$,
|
|
3466
|
-
{ [_xN]: _Sn }]
|
|
3467
|
-
];
|
|
3468
|
-
var SubnetIdentifierList = [1, n0, _SIL,
|
|
3469
|
-
0, [0,
|
|
3470
|
-
{ [_xN]: _SIu }]
|
|
3471
|
-
];
|
|
3472
|
-
var SubnetIdsList = [1, n0, _SILu,
|
|
3473
|
-
0, [0,
|
|
3474
|
-
{ [_xN]: _SIub }]
|
|
3475
|
-
];
|
|
3476
|
-
var SubnetList = [1, n0, _SLu,
|
|
3477
|
-
0, [() => Subnet$,
|
|
3478
|
-
{ [_xN]: _Sub }]
|
|
3479
|
-
];
|
|
3480
|
-
var TagList = [1, n0, _TL,
|
|
3481
|
-
0, [() => Tag$,
|
|
3482
|
-
{ [_xN]: _Ta }]
|
|
3483
|
-
];
|
|
3484
|
-
var UnprocessedUpdateActionList = [1, n0, _UUAL,
|
|
3485
|
-
0, [() => UnprocessedUpdateAction$,
|
|
3486
|
-
{ [_xN]: _UUA }]
|
|
3487
|
-
];
|
|
3488
|
-
var UpdateActionList = [1, n0, _UAL,
|
|
3489
|
-
0, [() => UpdateAction$,
|
|
3490
|
-
{ [_xN]: _UA }]
|
|
3491
|
-
];
|
|
3492
|
-
var UserGroupList = [1, n0, _UGL,
|
|
3493
|
-
0, () => UserGroup$
|
|
3494
|
-
];
|
|
3495
|
-
var UserList = [1, n0, _UL,
|
|
3496
|
-
0, () => User$
|
|
3497
|
-
];
|
|
3498
|
-
var AddTagsToResource$ = [9, n0, _ATTR,
|
|
3499
|
-
0, () => AddTagsToResourceMessage$, () => TagListMessage$
|
|
3500
|
-
];
|
|
3501
|
-
var AuthorizeCacheSecurityGroupIngress$ = [9, n0, _ACSGI,
|
|
3502
|
-
0, () => AuthorizeCacheSecurityGroupIngressMessage$, () => AuthorizeCacheSecurityGroupIngressResult$
|
|
3503
|
-
];
|
|
3504
|
-
var BatchApplyUpdateAction$ = [9, n0, _BAUA,
|
|
3505
|
-
0, () => BatchApplyUpdateActionMessage$, () => UpdateActionResultsMessage$
|
|
3506
|
-
];
|
|
3507
|
-
var BatchStopUpdateAction$ = [9, n0, _BSUA,
|
|
3508
|
-
0, () => BatchStopUpdateActionMessage$, () => UpdateActionResultsMessage$
|
|
3509
|
-
];
|
|
3510
|
-
var CompleteMigration$ = [9, n0, _CMo,
|
|
3511
|
-
0, () => CompleteMigrationMessage$, () => CompleteMigrationResponse$
|
|
3512
|
-
];
|
|
3513
|
-
var CopyServerlessCacheSnapshot$ = [9, n0, _CSCS,
|
|
3514
|
-
0, () => CopyServerlessCacheSnapshotRequest$, () => CopyServerlessCacheSnapshotResponse$
|
|
3515
|
-
];
|
|
3516
|
-
var CopySnapshot$ = [9, n0, _CSo,
|
|
3517
|
-
0, () => CopySnapshotMessage$, () => CopySnapshotResult$
|
|
3518
|
-
];
|
|
3519
|
-
var CreateCacheCluster$ = [9, n0, _CCC,
|
|
3520
|
-
0, () => CreateCacheClusterMessage$, () => CreateCacheClusterResult$
|
|
3521
|
-
];
|
|
3522
|
-
var CreateCacheParameterGroup$ = [9, n0, _CCPG,
|
|
3523
|
-
0, () => CreateCacheParameterGroupMessage$, () => CreateCacheParameterGroupResult$
|
|
3524
|
-
];
|
|
3525
|
-
var CreateCacheSecurityGroup$ = [9, n0, _CCSG,
|
|
3526
|
-
0, () => CreateCacheSecurityGroupMessage$, () => CreateCacheSecurityGroupResult$
|
|
3527
|
-
];
|
|
3528
|
-
var CreateCacheSubnetGroup$ = [9, n0, _CCSGr,
|
|
3529
|
-
0, () => CreateCacheSubnetGroupMessage$, () => CreateCacheSubnetGroupResult$
|
|
3530
|
-
];
|
|
3531
|
-
var CreateGlobalReplicationGroup$ = [9, n0, _CGRG,
|
|
3532
|
-
0, () => CreateGlobalReplicationGroupMessage$, () => CreateGlobalReplicationGroupResult$
|
|
3533
|
-
];
|
|
3534
|
-
var CreateReplicationGroup$ = [9, n0, _CRG,
|
|
3535
|
-
0, () => CreateReplicationGroupMessage$, () => CreateReplicationGroupResult$
|
|
3536
|
-
];
|
|
3537
|
-
var CreateServerlessCache$ = [9, n0, _CSC,
|
|
3538
|
-
0, () => CreateServerlessCacheRequest$, () => CreateServerlessCacheResponse$
|
|
3539
|
-
];
|
|
3540
|
-
var CreateServerlessCacheSnapshot$ = [9, n0, _CSCSr,
|
|
3541
|
-
0, () => CreateServerlessCacheSnapshotRequest$, () => CreateServerlessCacheSnapshotResponse$
|
|
3542
|
-
];
|
|
3543
|
-
var CreateSnapshot$ = [9, n0, _CSr,
|
|
3544
|
-
0, () => CreateSnapshotMessage$, () => CreateSnapshotResult$
|
|
3545
|
-
];
|
|
3546
|
-
var CreateUser$ = [9, n0, _CU,
|
|
3547
|
-
0, () => CreateUserMessage$, () => User$
|
|
3548
|
-
];
|
|
3549
|
-
var CreateUserGroup$ = [9, n0, _CUG,
|
|
3550
|
-
0, () => CreateUserGroupMessage$, () => UserGroup$
|
|
3551
|
-
];
|
|
3552
|
-
var DecreaseNodeGroupsInGlobalReplicationGroup$ = [9, n0, _DNGIGRG,
|
|
3553
|
-
0, () => DecreaseNodeGroupsInGlobalReplicationGroupMessage$, () => DecreaseNodeGroupsInGlobalReplicationGroupResult$
|
|
3554
|
-
];
|
|
3555
|
-
var DecreaseReplicaCount$ = [9, n0, _DRC,
|
|
3556
|
-
0, () => DecreaseReplicaCountMessage$, () => DecreaseReplicaCountResult$
|
|
3557
|
-
];
|
|
3558
|
-
var DeleteCacheCluster$ = [9, n0, _DCC,
|
|
3559
|
-
0, () => DeleteCacheClusterMessage$, () => DeleteCacheClusterResult$
|
|
3560
|
-
];
|
|
3561
|
-
var DeleteCacheParameterGroup$ = [9, n0, _DCPG,
|
|
3562
|
-
0, () => DeleteCacheParameterGroupMessage$, () => __Unit
|
|
3563
|
-
];
|
|
3564
|
-
var DeleteCacheSecurityGroup$ = [9, n0, _DCSG,
|
|
3565
|
-
0, () => DeleteCacheSecurityGroupMessage$, () => __Unit
|
|
3566
|
-
];
|
|
3567
|
-
var DeleteCacheSubnetGroup$ = [9, n0, _DCSGe,
|
|
3568
|
-
0, () => DeleteCacheSubnetGroupMessage$, () => __Unit
|
|
3569
|
-
];
|
|
3570
|
-
var DeleteGlobalReplicationGroup$ = [9, n0, _DGRG,
|
|
3571
|
-
0, () => DeleteGlobalReplicationGroupMessage$, () => DeleteGlobalReplicationGroupResult$
|
|
3572
|
-
];
|
|
3573
|
-
var DeleteReplicationGroup$ = [9, n0, _DRG,
|
|
3574
|
-
0, () => DeleteReplicationGroupMessage$, () => DeleteReplicationGroupResult$
|
|
3575
|
-
];
|
|
3576
|
-
var DeleteServerlessCache$ = [9, n0, _DSC,
|
|
3577
|
-
0, () => DeleteServerlessCacheRequest$, () => DeleteServerlessCacheResponse$
|
|
3578
|
-
];
|
|
3579
|
-
var DeleteServerlessCacheSnapshot$ = [9, n0, _DSCS,
|
|
3580
|
-
0, () => DeleteServerlessCacheSnapshotRequest$, () => DeleteServerlessCacheSnapshotResponse$
|
|
3581
|
-
];
|
|
3582
|
-
var DeleteSnapshot$ = [9, n0, _DSel,
|
|
3583
|
-
0, () => DeleteSnapshotMessage$, () => DeleteSnapshotResult$
|
|
3584
|
-
];
|
|
3585
|
-
var DeleteUser$ = [9, n0, _DU,
|
|
3586
|
-
0, () => DeleteUserMessage$, () => User$
|
|
3587
|
-
];
|
|
3588
|
-
var DeleteUserGroup$ = [9, n0, _DUG,
|
|
3589
|
-
0, () => DeleteUserGroupMessage$, () => UserGroup$
|
|
3590
|
-
];
|
|
3591
|
-
var DescribeCacheClusters$ = [9, n0, _DCCe,
|
|
3592
|
-
0, () => DescribeCacheClustersMessage$, () => CacheClusterMessage$
|
|
3593
|
-
];
|
|
3594
|
-
var DescribeCacheEngineVersions$ = [9, n0, _DCEV,
|
|
3595
|
-
0, () => DescribeCacheEngineVersionsMessage$, () => CacheEngineVersionMessage$
|
|
3596
|
-
];
|
|
3597
|
-
var DescribeCacheParameterGroups$ = [9, n0, _DCPGe,
|
|
3598
|
-
0, () => DescribeCacheParameterGroupsMessage$, () => CacheParameterGroupsMessage$
|
|
3599
|
-
];
|
|
3600
|
-
var DescribeCacheParameters$ = [9, n0, _DCP,
|
|
3601
|
-
0, () => DescribeCacheParametersMessage$, () => CacheParameterGroupDetails$
|
|
3602
|
-
];
|
|
3603
|
-
var DescribeCacheSecurityGroups$ = [9, n0, _DCSGes,
|
|
3604
|
-
0, () => DescribeCacheSecurityGroupsMessage$, () => CacheSecurityGroupMessage$
|
|
3605
|
-
];
|
|
3606
|
-
var DescribeCacheSubnetGroups$ = [9, n0, _DCSGesc,
|
|
3607
|
-
0, () => DescribeCacheSubnetGroupsMessage$, () => CacheSubnetGroupMessage$
|
|
3608
|
-
];
|
|
3609
|
-
var DescribeEngineDefaultParameters$ = [9, n0, _DEDP,
|
|
3610
|
-
0, () => DescribeEngineDefaultParametersMessage$, () => DescribeEngineDefaultParametersResult$
|
|
3611
|
-
];
|
|
3612
|
-
var DescribeEvents$ = [9, n0, _DE,
|
|
3613
|
-
0, () => DescribeEventsMessage$, () => EventsMessage$
|
|
3614
|
-
];
|
|
3615
|
-
var DescribeGlobalReplicationGroups$ = [9, n0, _DGRGe,
|
|
3616
|
-
0, () => DescribeGlobalReplicationGroupsMessage$, () => DescribeGlobalReplicationGroupsResult$
|
|
3617
|
-
];
|
|
3618
|
-
var DescribeReplicationGroups$ = [9, n0, _DRGe,
|
|
3619
|
-
0, () => DescribeReplicationGroupsMessage$, () => ReplicationGroupMessage$
|
|
3620
|
-
];
|
|
3621
|
-
var DescribeReservedCacheNodes$ = [9, n0, _DRCN,
|
|
3622
|
-
0, () => DescribeReservedCacheNodesMessage$, () => ReservedCacheNodeMessage$
|
|
3623
|
-
];
|
|
3624
|
-
var DescribeReservedCacheNodesOfferings$ = [9, n0, _DRCNO,
|
|
3625
|
-
0, () => DescribeReservedCacheNodesOfferingsMessage$, () => ReservedCacheNodesOfferingMessage$
|
|
3626
|
-
];
|
|
3627
|
-
var DescribeServerlessCaches$ = [9, n0, _DSCe,
|
|
3628
|
-
0, () => DescribeServerlessCachesRequest$, () => DescribeServerlessCachesResponse$
|
|
3629
|
-
];
|
|
3630
|
-
var DescribeServerlessCacheSnapshots$ = [9, n0, _DSCSe,
|
|
3631
|
-
0, () => DescribeServerlessCacheSnapshotsRequest$, () => DescribeServerlessCacheSnapshotsResponse$
|
|
3632
|
-
];
|
|
3633
|
-
var DescribeServiceUpdates$ = [9, n0, _DSU,
|
|
3634
|
-
0, () => DescribeServiceUpdatesMessage$, () => ServiceUpdatesMessage$
|
|
3635
|
-
];
|
|
3636
|
-
var DescribeSnapshots$ = [9, n0, _DSes,
|
|
3637
|
-
0, () => DescribeSnapshotsMessage$, () => DescribeSnapshotsListMessage$
|
|
3638
|
-
];
|
|
3639
|
-
var DescribeUpdateActions$ = [9, n0, _DUA,
|
|
3640
|
-
0, () => DescribeUpdateActionsMessage$, () => UpdateActionsMessage$
|
|
3641
|
-
];
|
|
3642
|
-
var DescribeUserGroups$ = [9, n0, _DUGe,
|
|
3643
|
-
0, () => DescribeUserGroupsMessage$, () => DescribeUserGroupsResult$
|
|
3644
|
-
];
|
|
3645
|
-
var DescribeUsers$ = [9, n0, _DUe,
|
|
3646
|
-
0, () => DescribeUsersMessage$, () => DescribeUsersResult$
|
|
3647
|
-
];
|
|
3648
|
-
var DisassociateGlobalReplicationGroup$ = [9, n0, _DGRGi,
|
|
3649
|
-
0, () => DisassociateGlobalReplicationGroupMessage$, () => DisassociateGlobalReplicationGroupResult$
|
|
3650
|
-
];
|
|
3651
|
-
var ExportServerlessCacheSnapshot$ = [9, n0, _ESCS,
|
|
3652
|
-
0, () => ExportServerlessCacheSnapshotRequest$, () => ExportServerlessCacheSnapshotResponse$
|
|
3653
|
-
];
|
|
3654
|
-
var FailoverGlobalReplicationGroup$ = [9, n0, _FGRG,
|
|
3655
|
-
0, () => FailoverGlobalReplicationGroupMessage$, () => FailoverGlobalReplicationGroupResult$
|
|
3656
|
-
];
|
|
3657
|
-
var IncreaseNodeGroupsInGlobalReplicationGroup$ = [9, n0, _INGIGRG,
|
|
3658
|
-
0, () => IncreaseNodeGroupsInGlobalReplicationGroupMessage$, () => IncreaseNodeGroupsInGlobalReplicationGroupResult$
|
|
3659
|
-
];
|
|
3660
|
-
var IncreaseReplicaCount$ = [9, n0, _IRC,
|
|
3661
|
-
0, () => IncreaseReplicaCountMessage$, () => IncreaseReplicaCountResult$
|
|
3662
|
-
];
|
|
3663
|
-
var ListAllowedNodeTypeModifications$ = [9, n0, _LANTM,
|
|
3664
|
-
0, () => ListAllowedNodeTypeModificationsMessage$, () => AllowedNodeTypeModificationsMessage$
|
|
3665
|
-
];
|
|
3666
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3667
|
-
0, () => ListTagsForResourceMessage$, () => TagListMessage$
|
|
3668
|
-
];
|
|
3669
|
-
var ModifyCacheCluster$ = [9, n0, _MCC,
|
|
3670
|
-
0, () => ModifyCacheClusterMessage$, () => ModifyCacheClusterResult$
|
|
3671
|
-
];
|
|
3672
|
-
var ModifyCacheParameterGroup$ = [9, n0, _MCPG,
|
|
3673
|
-
0, () => ModifyCacheParameterGroupMessage$, () => CacheParameterGroupNameMessage$
|
|
3674
|
-
];
|
|
3675
|
-
var ModifyCacheSubnetGroup$ = [9, n0, _MCSG,
|
|
3676
|
-
0, () => ModifyCacheSubnetGroupMessage$, () => ModifyCacheSubnetGroupResult$
|
|
3677
|
-
];
|
|
3678
|
-
var ModifyGlobalReplicationGroup$ = [9, n0, _MGRG,
|
|
3679
|
-
0, () => ModifyGlobalReplicationGroupMessage$, () => ModifyGlobalReplicationGroupResult$
|
|
3680
|
-
];
|
|
3681
|
-
var ModifyReplicationGroup$ = [9, n0, _MRG,
|
|
3682
|
-
0, () => ModifyReplicationGroupMessage$, () => ModifyReplicationGroupResult$
|
|
3683
|
-
];
|
|
3684
|
-
var ModifyReplicationGroupShardConfiguration$ = [9, n0, _MRGSC,
|
|
3685
|
-
0, () => ModifyReplicationGroupShardConfigurationMessage$, () => ModifyReplicationGroupShardConfigurationResult$
|
|
3686
|
-
];
|
|
3687
|
-
var ModifyServerlessCache$ = [9, n0, _MSC,
|
|
3688
|
-
0, () => ModifyServerlessCacheRequest$, () => ModifyServerlessCacheResponse$
|
|
3689
|
-
];
|
|
3690
|
-
var ModifyUser$ = [9, n0, _MU,
|
|
3691
|
-
0, () => ModifyUserMessage$, () => User$
|
|
3692
|
-
];
|
|
3693
|
-
var ModifyUserGroup$ = [9, n0, _MUG,
|
|
3694
|
-
0, () => ModifyUserGroupMessage$, () => UserGroup$
|
|
3695
|
-
];
|
|
3696
|
-
var PurchaseReservedCacheNodesOffering$ = [9, n0, _PRCNO,
|
|
3697
|
-
0, () => PurchaseReservedCacheNodesOfferingMessage$, () => PurchaseReservedCacheNodesOfferingResult$
|
|
3698
|
-
];
|
|
3699
|
-
var RebalanceSlotsInGlobalReplicationGroup$ = [9, n0, _RSIGRG,
|
|
3700
|
-
0, () => RebalanceSlotsInGlobalReplicationGroupMessage$, () => RebalanceSlotsInGlobalReplicationGroupResult$
|
|
3701
|
-
];
|
|
3702
|
-
var RebootCacheCluster$ = [9, n0, _RCC,
|
|
3703
|
-
0, () => RebootCacheClusterMessage$, () => RebootCacheClusterResult$
|
|
3704
|
-
];
|
|
3705
|
-
var RemoveTagsFromResource$ = [9, n0, _RTFR,
|
|
3706
|
-
0, () => RemoveTagsFromResourceMessage$, () => TagListMessage$
|
|
3707
|
-
];
|
|
3708
|
-
var ResetCacheParameterGroup$ = [9, n0, _RCPG,
|
|
3709
|
-
0, () => ResetCacheParameterGroupMessage$, () => CacheParameterGroupNameMessage$
|
|
3710
|
-
];
|
|
3711
|
-
var RevokeCacheSecurityGroupIngress$ = [9, n0, _RCSGI,
|
|
3712
|
-
0, () => RevokeCacheSecurityGroupIngressMessage$, () => RevokeCacheSecurityGroupIngressResult$
|
|
3713
|
-
];
|
|
3714
|
-
var StartMigration$ = [9, n0, _SMt,
|
|
3715
|
-
0, () => StartMigrationMessage$, () => StartMigrationResponse$
|
|
3716
|
-
];
|
|
3717
|
-
var TestFailover$ = [9, n0, _TF,
|
|
3718
|
-
0, () => TestFailoverMessage$, () => TestFailoverResult$
|
|
3719
|
-
];
|
|
3720
|
-
var TestMigration$ = [9, n0, _TM,
|
|
3721
|
-
0, () => TestMigrationMessage$, () => TestMigrationResponse$
|
|
3722
|
-
];
|
|
3723
|
-
|
|
3724
117
|
class AddTagsToResourceCommand extends smithyClient.Command
|
|
3725
118
|
.classBuilder()
|
|
3726
119
|
.ep(commonParams)
|
|
@@ -3729,7 +122,7 @@ class AddTagsToResourceCommand extends smithyClient.Command
|
|
|
3729
122
|
})
|
|
3730
123
|
.s("AmazonElastiCacheV9", "AddTagsToResource", {})
|
|
3731
124
|
.n("ElastiCacheClient", "AddTagsToResourceCommand")
|
|
3732
|
-
.sc(AddTagsToResource$)
|
|
125
|
+
.sc(schemas_0.AddTagsToResource$)
|
|
3733
126
|
.build() {
|
|
3734
127
|
}
|
|
3735
128
|
|
|
@@ -3741,7 +134,7 @@ class AuthorizeCacheSecurityGroupIngressCommand extends smithyClient.Command
|
|
|
3741
134
|
})
|
|
3742
135
|
.s("AmazonElastiCacheV9", "AuthorizeCacheSecurityGroupIngress", {})
|
|
3743
136
|
.n("ElastiCacheClient", "AuthorizeCacheSecurityGroupIngressCommand")
|
|
3744
|
-
.sc(AuthorizeCacheSecurityGroupIngress$)
|
|
137
|
+
.sc(schemas_0.AuthorizeCacheSecurityGroupIngress$)
|
|
3745
138
|
.build() {
|
|
3746
139
|
}
|
|
3747
140
|
|
|
@@ -3753,7 +146,7 @@ class BatchApplyUpdateActionCommand extends smithyClient.Command
|
|
|
3753
146
|
})
|
|
3754
147
|
.s("AmazonElastiCacheV9", "BatchApplyUpdateAction", {})
|
|
3755
148
|
.n("ElastiCacheClient", "BatchApplyUpdateActionCommand")
|
|
3756
|
-
.sc(BatchApplyUpdateAction$)
|
|
149
|
+
.sc(schemas_0.BatchApplyUpdateAction$)
|
|
3757
150
|
.build() {
|
|
3758
151
|
}
|
|
3759
152
|
|
|
@@ -3765,7 +158,7 @@ class BatchStopUpdateActionCommand extends smithyClient.Command
|
|
|
3765
158
|
})
|
|
3766
159
|
.s("AmazonElastiCacheV9", "BatchStopUpdateAction", {})
|
|
3767
160
|
.n("ElastiCacheClient", "BatchStopUpdateActionCommand")
|
|
3768
|
-
.sc(BatchStopUpdateAction$)
|
|
161
|
+
.sc(schemas_0.BatchStopUpdateAction$)
|
|
3769
162
|
.build() {
|
|
3770
163
|
}
|
|
3771
164
|
|
|
@@ -3777,7 +170,7 @@ class CompleteMigrationCommand extends smithyClient.Command
|
|
|
3777
170
|
})
|
|
3778
171
|
.s("AmazonElastiCacheV9", "CompleteMigration", {})
|
|
3779
172
|
.n("ElastiCacheClient", "CompleteMigrationCommand")
|
|
3780
|
-
.sc(CompleteMigration$)
|
|
173
|
+
.sc(schemas_0.CompleteMigration$)
|
|
3781
174
|
.build() {
|
|
3782
175
|
}
|
|
3783
176
|
|
|
@@ -3789,7 +182,7 @@ class CopyServerlessCacheSnapshotCommand extends smithyClient.Command
|
|
|
3789
182
|
})
|
|
3790
183
|
.s("AmazonElastiCacheV9", "CopyServerlessCacheSnapshot", {})
|
|
3791
184
|
.n("ElastiCacheClient", "CopyServerlessCacheSnapshotCommand")
|
|
3792
|
-
.sc(CopyServerlessCacheSnapshot$)
|
|
185
|
+
.sc(schemas_0.CopyServerlessCacheSnapshot$)
|
|
3793
186
|
.build() {
|
|
3794
187
|
}
|
|
3795
188
|
|
|
@@ -3801,7 +194,7 @@ class CopySnapshotCommand extends smithyClient.Command
|
|
|
3801
194
|
})
|
|
3802
195
|
.s("AmazonElastiCacheV9", "CopySnapshot", {})
|
|
3803
196
|
.n("ElastiCacheClient", "CopySnapshotCommand")
|
|
3804
|
-
.sc(CopySnapshot$)
|
|
197
|
+
.sc(schemas_0.CopySnapshot$)
|
|
3805
198
|
.build() {
|
|
3806
199
|
}
|
|
3807
200
|
|
|
@@ -3813,7 +206,7 @@ class CreateCacheClusterCommand extends smithyClient.Command
|
|
|
3813
206
|
})
|
|
3814
207
|
.s("AmazonElastiCacheV9", "CreateCacheCluster", {})
|
|
3815
208
|
.n("ElastiCacheClient", "CreateCacheClusterCommand")
|
|
3816
|
-
.sc(CreateCacheCluster$)
|
|
209
|
+
.sc(schemas_0.CreateCacheCluster$)
|
|
3817
210
|
.build() {
|
|
3818
211
|
}
|
|
3819
212
|
|
|
@@ -3825,7 +218,7 @@ class CreateCacheParameterGroupCommand extends smithyClient.Command
|
|
|
3825
218
|
})
|
|
3826
219
|
.s("AmazonElastiCacheV9", "CreateCacheParameterGroup", {})
|
|
3827
220
|
.n("ElastiCacheClient", "CreateCacheParameterGroupCommand")
|
|
3828
|
-
.sc(CreateCacheParameterGroup$)
|
|
221
|
+
.sc(schemas_0.CreateCacheParameterGroup$)
|
|
3829
222
|
.build() {
|
|
3830
223
|
}
|
|
3831
224
|
|
|
@@ -3837,7 +230,7 @@ class CreateCacheSecurityGroupCommand extends smithyClient.Command
|
|
|
3837
230
|
})
|
|
3838
231
|
.s("AmazonElastiCacheV9", "CreateCacheSecurityGroup", {})
|
|
3839
232
|
.n("ElastiCacheClient", "CreateCacheSecurityGroupCommand")
|
|
3840
|
-
.sc(CreateCacheSecurityGroup$)
|
|
233
|
+
.sc(schemas_0.CreateCacheSecurityGroup$)
|
|
3841
234
|
.build() {
|
|
3842
235
|
}
|
|
3843
236
|
|
|
@@ -3849,7 +242,7 @@ class CreateCacheSubnetGroupCommand extends smithyClient.Command
|
|
|
3849
242
|
})
|
|
3850
243
|
.s("AmazonElastiCacheV9", "CreateCacheSubnetGroup", {})
|
|
3851
244
|
.n("ElastiCacheClient", "CreateCacheSubnetGroupCommand")
|
|
3852
|
-
.sc(CreateCacheSubnetGroup$)
|
|
245
|
+
.sc(schemas_0.CreateCacheSubnetGroup$)
|
|
3853
246
|
.build() {
|
|
3854
247
|
}
|
|
3855
248
|
|
|
@@ -3861,7 +254,7 @@ class CreateGlobalReplicationGroupCommand extends smithyClient.Command
|
|
|
3861
254
|
})
|
|
3862
255
|
.s("AmazonElastiCacheV9", "CreateGlobalReplicationGroup", {})
|
|
3863
256
|
.n("ElastiCacheClient", "CreateGlobalReplicationGroupCommand")
|
|
3864
|
-
.sc(CreateGlobalReplicationGroup$)
|
|
257
|
+
.sc(schemas_0.CreateGlobalReplicationGroup$)
|
|
3865
258
|
.build() {
|
|
3866
259
|
}
|
|
3867
260
|
|
|
@@ -3873,7 +266,7 @@ class CreateReplicationGroupCommand extends smithyClient.Command
|
|
|
3873
266
|
})
|
|
3874
267
|
.s("AmazonElastiCacheV9", "CreateReplicationGroup", {})
|
|
3875
268
|
.n("ElastiCacheClient", "CreateReplicationGroupCommand")
|
|
3876
|
-
.sc(CreateReplicationGroup$)
|
|
269
|
+
.sc(schemas_0.CreateReplicationGroup$)
|
|
3877
270
|
.build() {
|
|
3878
271
|
}
|
|
3879
272
|
|
|
@@ -3885,7 +278,7 @@ class CreateServerlessCacheCommand extends smithyClient.Command
|
|
|
3885
278
|
})
|
|
3886
279
|
.s("AmazonElastiCacheV9", "CreateServerlessCache", {})
|
|
3887
280
|
.n("ElastiCacheClient", "CreateServerlessCacheCommand")
|
|
3888
|
-
.sc(CreateServerlessCache$)
|
|
281
|
+
.sc(schemas_0.CreateServerlessCache$)
|
|
3889
282
|
.build() {
|
|
3890
283
|
}
|
|
3891
284
|
|
|
@@ -3897,7 +290,7 @@ class CreateServerlessCacheSnapshotCommand extends smithyClient.Command
|
|
|
3897
290
|
})
|
|
3898
291
|
.s("AmazonElastiCacheV9", "CreateServerlessCacheSnapshot", {})
|
|
3899
292
|
.n("ElastiCacheClient", "CreateServerlessCacheSnapshotCommand")
|
|
3900
|
-
.sc(CreateServerlessCacheSnapshot$)
|
|
293
|
+
.sc(schemas_0.CreateServerlessCacheSnapshot$)
|
|
3901
294
|
.build() {
|
|
3902
295
|
}
|
|
3903
296
|
|
|
@@ -3909,7 +302,7 @@ class CreateSnapshotCommand extends smithyClient.Command
|
|
|
3909
302
|
})
|
|
3910
303
|
.s("AmazonElastiCacheV9", "CreateSnapshot", {})
|
|
3911
304
|
.n("ElastiCacheClient", "CreateSnapshotCommand")
|
|
3912
|
-
.sc(CreateSnapshot$)
|
|
305
|
+
.sc(schemas_0.CreateSnapshot$)
|
|
3913
306
|
.build() {
|
|
3914
307
|
}
|
|
3915
308
|
|
|
@@ -3921,7 +314,7 @@ class CreateUserCommand extends smithyClient.Command
|
|
|
3921
314
|
})
|
|
3922
315
|
.s("AmazonElastiCacheV9", "CreateUser", {})
|
|
3923
316
|
.n("ElastiCacheClient", "CreateUserCommand")
|
|
3924
|
-
.sc(CreateUser$)
|
|
317
|
+
.sc(schemas_0.CreateUser$)
|
|
3925
318
|
.build() {
|
|
3926
319
|
}
|
|
3927
320
|
|
|
@@ -3933,7 +326,7 @@ class CreateUserGroupCommand extends smithyClient.Command
|
|
|
3933
326
|
})
|
|
3934
327
|
.s("AmazonElastiCacheV9", "CreateUserGroup", {})
|
|
3935
328
|
.n("ElastiCacheClient", "CreateUserGroupCommand")
|
|
3936
|
-
.sc(CreateUserGroup$)
|
|
329
|
+
.sc(schemas_0.CreateUserGroup$)
|
|
3937
330
|
.build() {
|
|
3938
331
|
}
|
|
3939
332
|
|
|
@@ -3945,7 +338,7 @@ class DecreaseNodeGroupsInGlobalReplicationGroupCommand extends smithyClient.Com
|
|
|
3945
338
|
})
|
|
3946
339
|
.s("AmazonElastiCacheV9", "DecreaseNodeGroupsInGlobalReplicationGroup", {})
|
|
3947
340
|
.n("ElastiCacheClient", "DecreaseNodeGroupsInGlobalReplicationGroupCommand")
|
|
3948
|
-
.sc(DecreaseNodeGroupsInGlobalReplicationGroup$)
|
|
341
|
+
.sc(schemas_0.DecreaseNodeGroupsInGlobalReplicationGroup$)
|
|
3949
342
|
.build() {
|
|
3950
343
|
}
|
|
3951
344
|
|
|
@@ -3957,7 +350,7 @@ class DecreaseReplicaCountCommand extends smithyClient.Command
|
|
|
3957
350
|
})
|
|
3958
351
|
.s("AmazonElastiCacheV9", "DecreaseReplicaCount", {})
|
|
3959
352
|
.n("ElastiCacheClient", "DecreaseReplicaCountCommand")
|
|
3960
|
-
.sc(DecreaseReplicaCount$)
|
|
353
|
+
.sc(schemas_0.DecreaseReplicaCount$)
|
|
3961
354
|
.build() {
|
|
3962
355
|
}
|
|
3963
356
|
|
|
@@ -3969,7 +362,7 @@ class DeleteCacheClusterCommand extends smithyClient.Command
|
|
|
3969
362
|
})
|
|
3970
363
|
.s("AmazonElastiCacheV9", "DeleteCacheCluster", {})
|
|
3971
364
|
.n("ElastiCacheClient", "DeleteCacheClusterCommand")
|
|
3972
|
-
.sc(DeleteCacheCluster$)
|
|
365
|
+
.sc(schemas_0.DeleteCacheCluster$)
|
|
3973
366
|
.build() {
|
|
3974
367
|
}
|
|
3975
368
|
|
|
@@ -3981,7 +374,7 @@ class DeleteCacheParameterGroupCommand extends smithyClient.Command
|
|
|
3981
374
|
})
|
|
3982
375
|
.s("AmazonElastiCacheV9", "DeleteCacheParameterGroup", {})
|
|
3983
376
|
.n("ElastiCacheClient", "DeleteCacheParameterGroupCommand")
|
|
3984
|
-
.sc(DeleteCacheParameterGroup$)
|
|
377
|
+
.sc(schemas_0.DeleteCacheParameterGroup$)
|
|
3985
378
|
.build() {
|
|
3986
379
|
}
|
|
3987
380
|
|
|
@@ -3993,7 +386,7 @@ class DeleteCacheSecurityGroupCommand extends smithyClient.Command
|
|
|
3993
386
|
})
|
|
3994
387
|
.s("AmazonElastiCacheV9", "DeleteCacheSecurityGroup", {})
|
|
3995
388
|
.n("ElastiCacheClient", "DeleteCacheSecurityGroupCommand")
|
|
3996
|
-
.sc(DeleteCacheSecurityGroup$)
|
|
389
|
+
.sc(schemas_0.DeleteCacheSecurityGroup$)
|
|
3997
390
|
.build() {
|
|
3998
391
|
}
|
|
3999
392
|
|
|
@@ -4005,7 +398,7 @@ class DeleteCacheSubnetGroupCommand extends smithyClient.Command
|
|
|
4005
398
|
})
|
|
4006
399
|
.s("AmazonElastiCacheV9", "DeleteCacheSubnetGroup", {})
|
|
4007
400
|
.n("ElastiCacheClient", "DeleteCacheSubnetGroupCommand")
|
|
4008
|
-
.sc(DeleteCacheSubnetGroup$)
|
|
401
|
+
.sc(schemas_0.DeleteCacheSubnetGroup$)
|
|
4009
402
|
.build() {
|
|
4010
403
|
}
|
|
4011
404
|
|
|
@@ -4017,7 +410,7 @@ class DeleteGlobalReplicationGroupCommand extends smithyClient.Command
|
|
|
4017
410
|
})
|
|
4018
411
|
.s("AmazonElastiCacheV9", "DeleteGlobalReplicationGroup", {})
|
|
4019
412
|
.n("ElastiCacheClient", "DeleteGlobalReplicationGroupCommand")
|
|
4020
|
-
.sc(DeleteGlobalReplicationGroup$)
|
|
413
|
+
.sc(schemas_0.DeleteGlobalReplicationGroup$)
|
|
4021
414
|
.build() {
|
|
4022
415
|
}
|
|
4023
416
|
|
|
@@ -4029,7 +422,7 @@ class DeleteReplicationGroupCommand extends smithyClient.Command
|
|
|
4029
422
|
})
|
|
4030
423
|
.s("AmazonElastiCacheV9", "DeleteReplicationGroup", {})
|
|
4031
424
|
.n("ElastiCacheClient", "DeleteReplicationGroupCommand")
|
|
4032
|
-
.sc(DeleteReplicationGroup$)
|
|
425
|
+
.sc(schemas_0.DeleteReplicationGroup$)
|
|
4033
426
|
.build() {
|
|
4034
427
|
}
|
|
4035
428
|
|
|
@@ -4041,7 +434,7 @@ class DeleteServerlessCacheCommand extends smithyClient.Command
|
|
|
4041
434
|
})
|
|
4042
435
|
.s("AmazonElastiCacheV9", "DeleteServerlessCache", {})
|
|
4043
436
|
.n("ElastiCacheClient", "DeleteServerlessCacheCommand")
|
|
4044
|
-
.sc(DeleteServerlessCache$)
|
|
437
|
+
.sc(schemas_0.DeleteServerlessCache$)
|
|
4045
438
|
.build() {
|
|
4046
439
|
}
|
|
4047
440
|
|
|
@@ -4053,7 +446,7 @@ class DeleteServerlessCacheSnapshotCommand extends smithyClient.Command
|
|
|
4053
446
|
})
|
|
4054
447
|
.s("AmazonElastiCacheV9", "DeleteServerlessCacheSnapshot", {})
|
|
4055
448
|
.n("ElastiCacheClient", "DeleteServerlessCacheSnapshotCommand")
|
|
4056
|
-
.sc(DeleteServerlessCacheSnapshot$)
|
|
449
|
+
.sc(schemas_0.DeleteServerlessCacheSnapshot$)
|
|
4057
450
|
.build() {
|
|
4058
451
|
}
|
|
4059
452
|
|
|
@@ -4065,7 +458,7 @@ class DeleteSnapshotCommand extends smithyClient.Command
|
|
|
4065
458
|
})
|
|
4066
459
|
.s("AmazonElastiCacheV9", "DeleteSnapshot", {})
|
|
4067
460
|
.n("ElastiCacheClient", "DeleteSnapshotCommand")
|
|
4068
|
-
.sc(DeleteSnapshot$)
|
|
461
|
+
.sc(schemas_0.DeleteSnapshot$)
|
|
4069
462
|
.build() {
|
|
4070
463
|
}
|
|
4071
464
|
|
|
@@ -4077,7 +470,7 @@ class DeleteUserCommand extends smithyClient.Command
|
|
|
4077
470
|
})
|
|
4078
471
|
.s("AmazonElastiCacheV9", "DeleteUser", {})
|
|
4079
472
|
.n("ElastiCacheClient", "DeleteUserCommand")
|
|
4080
|
-
.sc(DeleteUser$)
|
|
473
|
+
.sc(schemas_0.DeleteUser$)
|
|
4081
474
|
.build() {
|
|
4082
475
|
}
|
|
4083
476
|
|
|
@@ -4089,7 +482,7 @@ class DeleteUserGroupCommand extends smithyClient.Command
|
|
|
4089
482
|
})
|
|
4090
483
|
.s("AmazonElastiCacheV9", "DeleteUserGroup", {})
|
|
4091
484
|
.n("ElastiCacheClient", "DeleteUserGroupCommand")
|
|
4092
|
-
.sc(DeleteUserGroup$)
|
|
485
|
+
.sc(schemas_0.DeleteUserGroup$)
|
|
4093
486
|
.build() {
|
|
4094
487
|
}
|
|
4095
488
|
|
|
@@ -4101,7 +494,7 @@ class DescribeCacheClustersCommand extends smithyClient.Command
|
|
|
4101
494
|
})
|
|
4102
495
|
.s("AmazonElastiCacheV9", "DescribeCacheClusters", {})
|
|
4103
496
|
.n("ElastiCacheClient", "DescribeCacheClustersCommand")
|
|
4104
|
-
.sc(DescribeCacheClusters$)
|
|
497
|
+
.sc(schemas_0.DescribeCacheClusters$)
|
|
4105
498
|
.build() {
|
|
4106
499
|
}
|
|
4107
500
|
|
|
@@ -4113,7 +506,7 @@ class DescribeCacheEngineVersionsCommand extends smithyClient.Command
|
|
|
4113
506
|
})
|
|
4114
507
|
.s("AmazonElastiCacheV9", "DescribeCacheEngineVersions", {})
|
|
4115
508
|
.n("ElastiCacheClient", "DescribeCacheEngineVersionsCommand")
|
|
4116
|
-
.sc(DescribeCacheEngineVersions$)
|
|
509
|
+
.sc(schemas_0.DescribeCacheEngineVersions$)
|
|
4117
510
|
.build() {
|
|
4118
511
|
}
|
|
4119
512
|
|
|
@@ -4125,7 +518,7 @@ class DescribeCacheParameterGroupsCommand extends smithyClient.Command
|
|
|
4125
518
|
})
|
|
4126
519
|
.s("AmazonElastiCacheV9", "DescribeCacheParameterGroups", {})
|
|
4127
520
|
.n("ElastiCacheClient", "DescribeCacheParameterGroupsCommand")
|
|
4128
|
-
.sc(DescribeCacheParameterGroups$)
|
|
521
|
+
.sc(schemas_0.DescribeCacheParameterGroups$)
|
|
4129
522
|
.build() {
|
|
4130
523
|
}
|
|
4131
524
|
|
|
@@ -4137,7 +530,7 @@ class DescribeCacheParametersCommand extends smithyClient.Command
|
|
|
4137
530
|
})
|
|
4138
531
|
.s("AmazonElastiCacheV9", "DescribeCacheParameters", {})
|
|
4139
532
|
.n("ElastiCacheClient", "DescribeCacheParametersCommand")
|
|
4140
|
-
.sc(DescribeCacheParameters$)
|
|
533
|
+
.sc(schemas_0.DescribeCacheParameters$)
|
|
4141
534
|
.build() {
|
|
4142
535
|
}
|
|
4143
536
|
|
|
@@ -4149,7 +542,7 @@ class DescribeCacheSecurityGroupsCommand extends smithyClient.Command
|
|
|
4149
542
|
})
|
|
4150
543
|
.s("AmazonElastiCacheV9", "DescribeCacheSecurityGroups", {})
|
|
4151
544
|
.n("ElastiCacheClient", "DescribeCacheSecurityGroupsCommand")
|
|
4152
|
-
.sc(DescribeCacheSecurityGroups$)
|
|
545
|
+
.sc(schemas_0.DescribeCacheSecurityGroups$)
|
|
4153
546
|
.build() {
|
|
4154
547
|
}
|
|
4155
548
|
|
|
@@ -4161,7 +554,7 @@ class DescribeCacheSubnetGroupsCommand extends smithyClient.Command
|
|
|
4161
554
|
})
|
|
4162
555
|
.s("AmazonElastiCacheV9", "DescribeCacheSubnetGroups", {})
|
|
4163
556
|
.n("ElastiCacheClient", "DescribeCacheSubnetGroupsCommand")
|
|
4164
|
-
.sc(DescribeCacheSubnetGroups$)
|
|
557
|
+
.sc(schemas_0.DescribeCacheSubnetGroups$)
|
|
4165
558
|
.build() {
|
|
4166
559
|
}
|
|
4167
560
|
|
|
@@ -4173,7 +566,7 @@ class DescribeEngineDefaultParametersCommand extends smithyClient.Command
|
|
|
4173
566
|
})
|
|
4174
567
|
.s("AmazonElastiCacheV9", "DescribeEngineDefaultParameters", {})
|
|
4175
568
|
.n("ElastiCacheClient", "DescribeEngineDefaultParametersCommand")
|
|
4176
|
-
.sc(DescribeEngineDefaultParameters$)
|
|
569
|
+
.sc(schemas_0.DescribeEngineDefaultParameters$)
|
|
4177
570
|
.build() {
|
|
4178
571
|
}
|
|
4179
572
|
|
|
@@ -4185,7 +578,7 @@ class DescribeEventsCommand extends smithyClient.Command
|
|
|
4185
578
|
})
|
|
4186
579
|
.s("AmazonElastiCacheV9", "DescribeEvents", {})
|
|
4187
580
|
.n("ElastiCacheClient", "DescribeEventsCommand")
|
|
4188
|
-
.sc(DescribeEvents$)
|
|
581
|
+
.sc(schemas_0.DescribeEvents$)
|
|
4189
582
|
.build() {
|
|
4190
583
|
}
|
|
4191
584
|
|
|
@@ -4197,7 +590,7 @@ class DescribeGlobalReplicationGroupsCommand extends smithyClient.Command
|
|
|
4197
590
|
})
|
|
4198
591
|
.s("AmazonElastiCacheV9", "DescribeGlobalReplicationGroups", {})
|
|
4199
592
|
.n("ElastiCacheClient", "DescribeGlobalReplicationGroupsCommand")
|
|
4200
|
-
.sc(DescribeGlobalReplicationGroups$)
|
|
593
|
+
.sc(schemas_0.DescribeGlobalReplicationGroups$)
|
|
4201
594
|
.build() {
|
|
4202
595
|
}
|
|
4203
596
|
|
|
@@ -4209,7 +602,7 @@ class DescribeReplicationGroupsCommand extends smithyClient.Command
|
|
|
4209
602
|
})
|
|
4210
603
|
.s("AmazonElastiCacheV9", "DescribeReplicationGroups", {})
|
|
4211
604
|
.n("ElastiCacheClient", "DescribeReplicationGroupsCommand")
|
|
4212
|
-
.sc(DescribeReplicationGroups$)
|
|
605
|
+
.sc(schemas_0.DescribeReplicationGroups$)
|
|
4213
606
|
.build() {
|
|
4214
607
|
}
|
|
4215
608
|
|
|
@@ -4221,7 +614,7 @@ class DescribeReservedCacheNodesCommand extends smithyClient.Command
|
|
|
4221
614
|
})
|
|
4222
615
|
.s("AmazonElastiCacheV9", "DescribeReservedCacheNodes", {})
|
|
4223
616
|
.n("ElastiCacheClient", "DescribeReservedCacheNodesCommand")
|
|
4224
|
-
.sc(DescribeReservedCacheNodes$)
|
|
617
|
+
.sc(schemas_0.DescribeReservedCacheNodes$)
|
|
4225
618
|
.build() {
|
|
4226
619
|
}
|
|
4227
620
|
|
|
@@ -4233,7 +626,7 @@ class DescribeReservedCacheNodesOfferingsCommand extends smithyClient.Command
|
|
|
4233
626
|
})
|
|
4234
627
|
.s("AmazonElastiCacheV9", "DescribeReservedCacheNodesOfferings", {})
|
|
4235
628
|
.n("ElastiCacheClient", "DescribeReservedCacheNodesOfferingsCommand")
|
|
4236
|
-
.sc(DescribeReservedCacheNodesOfferings$)
|
|
629
|
+
.sc(schemas_0.DescribeReservedCacheNodesOfferings$)
|
|
4237
630
|
.build() {
|
|
4238
631
|
}
|
|
4239
632
|
|
|
@@ -4245,7 +638,7 @@ class DescribeServerlessCachesCommand extends smithyClient.Command
|
|
|
4245
638
|
})
|
|
4246
639
|
.s("AmazonElastiCacheV9", "DescribeServerlessCaches", {})
|
|
4247
640
|
.n("ElastiCacheClient", "DescribeServerlessCachesCommand")
|
|
4248
|
-
.sc(DescribeServerlessCaches$)
|
|
641
|
+
.sc(schemas_0.DescribeServerlessCaches$)
|
|
4249
642
|
.build() {
|
|
4250
643
|
}
|
|
4251
644
|
|
|
@@ -4257,7 +650,7 @@ class DescribeServerlessCacheSnapshotsCommand extends smithyClient.Command
|
|
|
4257
650
|
})
|
|
4258
651
|
.s("AmazonElastiCacheV9", "DescribeServerlessCacheSnapshots", {})
|
|
4259
652
|
.n("ElastiCacheClient", "DescribeServerlessCacheSnapshotsCommand")
|
|
4260
|
-
.sc(DescribeServerlessCacheSnapshots$)
|
|
653
|
+
.sc(schemas_0.DescribeServerlessCacheSnapshots$)
|
|
4261
654
|
.build() {
|
|
4262
655
|
}
|
|
4263
656
|
|
|
@@ -4269,7 +662,7 @@ class DescribeServiceUpdatesCommand extends smithyClient.Command
|
|
|
4269
662
|
})
|
|
4270
663
|
.s("AmazonElastiCacheV9", "DescribeServiceUpdates", {})
|
|
4271
664
|
.n("ElastiCacheClient", "DescribeServiceUpdatesCommand")
|
|
4272
|
-
.sc(DescribeServiceUpdates$)
|
|
665
|
+
.sc(schemas_0.DescribeServiceUpdates$)
|
|
4273
666
|
.build() {
|
|
4274
667
|
}
|
|
4275
668
|
|
|
@@ -4281,7 +674,7 @@ class DescribeSnapshotsCommand extends smithyClient.Command
|
|
|
4281
674
|
})
|
|
4282
675
|
.s("AmazonElastiCacheV9", "DescribeSnapshots", {})
|
|
4283
676
|
.n("ElastiCacheClient", "DescribeSnapshotsCommand")
|
|
4284
|
-
.sc(DescribeSnapshots$)
|
|
677
|
+
.sc(schemas_0.DescribeSnapshots$)
|
|
4285
678
|
.build() {
|
|
4286
679
|
}
|
|
4287
680
|
|
|
@@ -4293,7 +686,7 @@ class DescribeUpdateActionsCommand extends smithyClient.Command
|
|
|
4293
686
|
})
|
|
4294
687
|
.s("AmazonElastiCacheV9", "DescribeUpdateActions", {})
|
|
4295
688
|
.n("ElastiCacheClient", "DescribeUpdateActionsCommand")
|
|
4296
|
-
.sc(DescribeUpdateActions$)
|
|
689
|
+
.sc(schemas_0.DescribeUpdateActions$)
|
|
4297
690
|
.build() {
|
|
4298
691
|
}
|
|
4299
692
|
|
|
@@ -4305,7 +698,7 @@ class DescribeUserGroupsCommand extends smithyClient.Command
|
|
|
4305
698
|
})
|
|
4306
699
|
.s("AmazonElastiCacheV9", "DescribeUserGroups", {})
|
|
4307
700
|
.n("ElastiCacheClient", "DescribeUserGroupsCommand")
|
|
4308
|
-
.sc(DescribeUserGroups$)
|
|
701
|
+
.sc(schemas_0.DescribeUserGroups$)
|
|
4309
702
|
.build() {
|
|
4310
703
|
}
|
|
4311
704
|
|
|
@@ -4317,7 +710,7 @@ class DescribeUsersCommand extends smithyClient.Command
|
|
|
4317
710
|
})
|
|
4318
711
|
.s("AmazonElastiCacheV9", "DescribeUsers", {})
|
|
4319
712
|
.n("ElastiCacheClient", "DescribeUsersCommand")
|
|
4320
|
-
.sc(DescribeUsers$)
|
|
713
|
+
.sc(schemas_0.DescribeUsers$)
|
|
4321
714
|
.build() {
|
|
4322
715
|
}
|
|
4323
716
|
|
|
@@ -4329,7 +722,7 @@ class DisassociateGlobalReplicationGroupCommand extends smithyClient.Command
|
|
|
4329
722
|
})
|
|
4330
723
|
.s("AmazonElastiCacheV9", "DisassociateGlobalReplicationGroup", {})
|
|
4331
724
|
.n("ElastiCacheClient", "DisassociateGlobalReplicationGroupCommand")
|
|
4332
|
-
.sc(DisassociateGlobalReplicationGroup$)
|
|
725
|
+
.sc(schemas_0.DisassociateGlobalReplicationGroup$)
|
|
4333
726
|
.build() {
|
|
4334
727
|
}
|
|
4335
728
|
|
|
@@ -4341,7 +734,7 @@ class ExportServerlessCacheSnapshotCommand extends smithyClient.Command
|
|
|
4341
734
|
})
|
|
4342
735
|
.s("AmazonElastiCacheV9", "ExportServerlessCacheSnapshot", {})
|
|
4343
736
|
.n("ElastiCacheClient", "ExportServerlessCacheSnapshotCommand")
|
|
4344
|
-
.sc(ExportServerlessCacheSnapshot$)
|
|
737
|
+
.sc(schemas_0.ExportServerlessCacheSnapshot$)
|
|
4345
738
|
.build() {
|
|
4346
739
|
}
|
|
4347
740
|
|
|
@@ -4353,7 +746,7 @@ class FailoverGlobalReplicationGroupCommand extends smithyClient.Command
|
|
|
4353
746
|
})
|
|
4354
747
|
.s("AmazonElastiCacheV9", "FailoverGlobalReplicationGroup", {})
|
|
4355
748
|
.n("ElastiCacheClient", "FailoverGlobalReplicationGroupCommand")
|
|
4356
|
-
.sc(FailoverGlobalReplicationGroup$)
|
|
749
|
+
.sc(schemas_0.FailoverGlobalReplicationGroup$)
|
|
4357
750
|
.build() {
|
|
4358
751
|
}
|
|
4359
752
|
|
|
@@ -4365,7 +758,7 @@ class IncreaseNodeGroupsInGlobalReplicationGroupCommand extends smithyClient.Com
|
|
|
4365
758
|
})
|
|
4366
759
|
.s("AmazonElastiCacheV9", "IncreaseNodeGroupsInGlobalReplicationGroup", {})
|
|
4367
760
|
.n("ElastiCacheClient", "IncreaseNodeGroupsInGlobalReplicationGroupCommand")
|
|
4368
|
-
.sc(IncreaseNodeGroupsInGlobalReplicationGroup$)
|
|
761
|
+
.sc(schemas_0.IncreaseNodeGroupsInGlobalReplicationGroup$)
|
|
4369
762
|
.build() {
|
|
4370
763
|
}
|
|
4371
764
|
|
|
@@ -4377,7 +770,7 @@ class IncreaseReplicaCountCommand extends smithyClient.Command
|
|
|
4377
770
|
})
|
|
4378
771
|
.s("AmazonElastiCacheV9", "IncreaseReplicaCount", {})
|
|
4379
772
|
.n("ElastiCacheClient", "IncreaseReplicaCountCommand")
|
|
4380
|
-
.sc(IncreaseReplicaCount$)
|
|
773
|
+
.sc(schemas_0.IncreaseReplicaCount$)
|
|
4381
774
|
.build() {
|
|
4382
775
|
}
|
|
4383
776
|
|
|
@@ -4389,7 +782,7 @@ class ListAllowedNodeTypeModificationsCommand extends smithyClient.Command
|
|
|
4389
782
|
})
|
|
4390
783
|
.s("AmazonElastiCacheV9", "ListAllowedNodeTypeModifications", {})
|
|
4391
784
|
.n("ElastiCacheClient", "ListAllowedNodeTypeModificationsCommand")
|
|
4392
|
-
.sc(ListAllowedNodeTypeModifications$)
|
|
785
|
+
.sc(schemas_0.ListAllowedNodeTypeModifications$)
|
|
4393
786
|
.build() {
|
|
4394
787
|
}
|
|
4395
788
|
|
|
@@ -4401,7 +794,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
4401
794
|
})
|
|
4402
795
|
.s("AmazonElastiCacheV9", "ListTagsForResource", {})
|
|
4403
796
|
.n("ElastiCacheClient", "ListTagsForResourceCommand")
|
|
4404
|
-
.sc(ListTagsForResource$)
|
|
797
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
4405
798
|
.build() {
|
|
4406
799
|
}
|
|
4407
800
|
|
|
@@ -4413,7 +806,7 @@ class ModifyCacheClusterCommand extends smithyClient.Command
|
|
|
4413
806
|
})
|
|
4414
807
|
.s("AmazonElastiCacheV9", "ModifyCacheCluster", {})
|
|
4415
808
|
.n("ElastiCacheClient", "ModifyCacheClusterCommand")
|
|
4416
|
-
.sc(ModifyCacheCluster$)
|
|
809
|
+
.sc(schemas_0.ModifyCacheCluster$)
|
|
4417
810
|
.build() {
|
|
4418
811
|
}
|
|
4419
812
|
|
|
@@ -4425,7 +818,7 @@ class ModifyCacheParameterGroupCommand extends smithyClient.Command
|
|
|
4425
818
|
})
|
|
4426
819
|
.s("AmazonElastiCacheV9", "ModifyCacheParameterGroup", {})
|
|
4427
820
|
.n("ElastiCacheClient", "ModifyCacheParameterGroupCommand")
|
|
4428
|
-
.sc(ModifyCacheParameterGroup$)
|
|
821
|
+
.sc(schemas_0.ModifyCacheParameterGroup$)
|
|
4429
822
|
.build() {
|
|
4430
823
|
}
|
|
4431
824
|
|
|
@@ -4437,7 +830,7 @@ class ModifyCacheSubnetGroupCommand extends smithyClient.Command
|
|
|
4437
830
|
})
|
|
4438
831
|
.s("AmazonElastiCacheV9", "ModifyCacheSubnetGroup", {})
|
|
4439
832
|
.n("ElastiCacheClient", "ModifyCacheSubnetGroupCommand")
|
|
4440
|
-
.sc(ModifyCacheSubnetGroup$)
|
|
833
|
+
.sc(schemas_0.ModifyCacheSubnetGroup$)
|
|
4441
834
|
.build() {
|
|
4442
835
|
}
|
|
4443
836
|
|
|
@@ -4449,7 +842,7 @@ class ModifyGlobalReplicationGroupCommand extends smithyClient.Command
|
|
|
4449
842
|
})
|
|
4450
843
|
.s("AmazonElastiCacheV9", "ModifyGlobalReplicationGroup", {})
|
|
4451
844
|
.n("ElastiCacheClient", "ModifyGlobalReplicationGroupCommand")
|
|
4452
|
-
.sc(ModifyGlobalReplicationGroup$)
|
|
845
|
+
.sc(schemas_0.ModifyGlobalReplicationGroup$)
|
|
4453
846
|
.build() {
|
|
4454
847
|
}
|
|
4455
848
|
|
|
@@ -4461,7 +854,7 @@ class ModifyReplicationGroupCommand extends smithyClient.Command
|
|
|
4461
854
|
})
|
|
4462
855
|
.s("AmazonElastiCacheV9", "ModifyReplicationGroup", {})
|
|
4463
856
|
.n("ElastiCacheClient", "ModifyReplicationGroupCommand")
|
|
4464
|
-
.sc(ModifyReplicationGroup$)
|
|
857
|
+
.sc(schemas_0.ModifyReplicationGroup$)
|
|
4465
858
|
.build() {
|
|
4466
859
|
}
|
|
4467
860
|
|
|
@@ -4473,7 +866,7 @@ class ModifyReplicationGroupShardConfigurationCommand extends smithyClient.Comma
|
|
|
4473
866
|
})
|
|
4474
867
|
.s("AmazonElastiCacheV9", "ModifyReplicationGroupShardConfiguration", {})
|
|
4475
868
|
.n("ElastiCacheClient", "ModifyReplicationGroupShardConfigurationCommand")
|
|
4476
|
-
.sc(ModifyReplicationGroupShardConfiguration$)
|
|
869
|
+
.sc(schemas_0.ModifyReplicationGroupShardConfiguration$)
|
|
4477
870
|
.build() {
|
|
4478
871
|
}
|
|
4479
872
|
|
|
@@ -4485,7 +878,7 @@ class ModifyServerlessCacheCommand extends smithyClient.Command
|
|
|
4485
878
|
})
|
|
4486
879
|
.s("AmazonElastiCacheV9", "ModifyServerlessCache", {})
|
|
4487
880
|
.n("ElastiCacheClient", "ModifyServerlessCacheCommand")
|
|
4488
|
-
.sc(ModifyServerlessCache$)
|
|
881
|
+
.sc(schemas_0.ModifyServerlessCache$)
|
|
4489
882
|
.build() {
|
|
4490
883
|
}
|
|
4491
884
|
|
|
@@ -4497,7 +890,7 @@ class ModifyUserCommand extends smithyClient.Command
|
|
|
4497
890
|
})
|
|
4498
891
|
.s("AmazonElastiCacheV9", "ModifyUser", {})
|
|
4499
892
|
.n("ElastiCacheClient", "ModifyUserCommand")
|
|
4500
|
-
.sc(ModifyUser$)
|
|
893
|
+
.sc(schemas_0.ModifyUser$)
|
|
4501
894
|
.build() {
|
|
4502
895
|
}
|
|
4503
896
|
|
|
@@ -4509,7 +902,7 @@ class ModifyUserGroupCommand extends smithyClient.Command
|
|
|
4509
902
|
})
|
|
4510
903
|
.s("AmazonElastiCacheV9", "ModifyUserGroup", {})
|
|
4511
904
|
.n("ElastiCacheClient", "ModifyUserGroupCommand")
|
|
4512
|
-
.sc(ModifyUserGroup$)
|
|
905
|
+
.sc(schemas_0.ModifyUserGroup$)
|
|
4513
906
|
.build() {
|
|
4514
907
|
}
|
|
4515
908
|
|
|
@@ -4521,7 +914,7 @@ class PurchaseReservedCacheNodesOfferingCommand extends smithyClient.Command
|
|
|
4521
914
|
})
|
|
4522
915
|
.s("AmazonElastiCacheV9", "PurchaseReservedCacheNodesOffering", {})
|
|
4523
916
|
.n("ElastiCacheClient", "PurchaseReservedCacheNodesOfferingCommand")
|
|
4524
|
-
.sc(PurchaseReservedCacheNodesOffering$)
|
|
917
|
+
.sc(schemas_0.PurchaseReservedCacheNodesOffering$)
|
|
4525
918
|
.build() {
|
|
4526
919
|
}
|
|
4527
920
|
|
|
@@ -4533,7 +926,7 @@ class RebalanceSlotsInGlobalReplicationGroupCommand extends smithyClient.Command
|
|
|
4533
926
|
})
|
|
4534
927
|
.s("AmazonElastiCacheV9", "RebalanceSlotsInGlobalReplicationGroup", {})
|
|
4535
928
|
.n("ElastiCacheClient", "RebalanceSlotsInGlobalReplicationGroupCommand")
|
|
4536
|
-
.sc(RebalanceSlotsInGlobalReplicationGroup$)
|
|
929
|
+
.sc(schemas_0.RebalanceSlotsInGlobalReplicationGroup$)
|
|
4537
930
|
.build() {
|
|
4538
931
|
}
|
|
4539
932
|
|
|
@@ -4545,7 +938,7 @@ class RebootCacheClusterCommand extends smithyClient.Command
|
|
|
4545
938
|
})
|
|
4546
939
|
.s("AmazonElastiCacheV9", "RebootCacheCluster", {})
|
|
4547
940
|
.n("ElastiCacheClient", "RebootCacheClusterCommand")
|
|
4548
|
-
.sc(RebootCacheCluster$)
|
|
941
|
+
.sc(schemas_0.RebootCacheCluster$)
|
|
4549
942
|
.build() {
|
|
4550
943
|
}
|
|
4551
944
|
|
|
@@ -4557,7 +950,7 @@ class RemoveTagsFromResourceCommand extends smithyClient.Command
|
|
|
4557
950
|
})
|
|
4558
951
|
.s("AmazonElastiCacheV9", "RemoveTagsFromResource", {})
|
|
4559
952
|
.n("ElastiCacheClient", "RemoveTagsFromResourceCommand")
|
|
4560
|
-
.sc(RemoveTagsFromResource$)
|
|
953
|
+
.sc(schemas_0.RemoveTagsFromResource$)
|
|
4561
954
|
.build() {
|
|
4562
955
|
}
|
|
4563
956
|
|
|
@@ -4569,7 +962,7 @@ class ResetCacheParameterGroupCommand extends smithyClient.Command
|
|
|
4569
962
|
})
|
|
4570
963
|
.s("AmazonElastiCacheV9", "ResetCacheParameterGroup", {})
|
|
4571
964
|
.n("ElastiCacheClient", "ResetCacheParameterGroupCommand")
|
|
4572
|
-
.sc(ResetCacheParameterGroup$)
|
|
965
|
+
.sc(schemas_0.ResetCacheParameterGroup$)
|
|
4573
966
|
.build() {
|
|
4574
967
|
}
|
|
4575
968
|
|
|
@@ -4581,7 +974,7 @@ class RevokeCacheSecurityGroupIngressCommand extends smithyClient.Command
|
|
|
4581
974
|
})
|
|
4582
975
|
.s("AmazonElastiCacheV9", "RevokeCacheSecurityGroupIngress", {})
|
|
4583
976
|
.n("ElastiCacheClient", "RevokeCacheSecurityGroupIngressCommand")
|
|
4584
|
-
.sc(RevokeCacheSecurityGroupIngress$)
|
|
977
|
+
.sc(schemas_0.RevokeCacheSecurityGroupIngress$)
|
|
4585
978
|
.build() {
|
|
4586
979
|
}
|
|
4587
980
|
|
|
@@ -4593,7 +986,7 @@ class StartMigrationCommand extends smithyClient.Command
|
|
|
4593
986
|
})
|
|
4594
987
|
.s("AmazonElastiCacheV9", "StartMigration", {})
|
|
4595
988
|
.n("ElastiCacheClient", "StartMigrationCommand")
|
|
4596
|
-
.sc(StartMigration$)
|
|
989
|
+
.sc(schemas_0.StartMigration$)
|
|
4597
990
|
.build() {
|
|
4598
991
|
}
|
|
4599
992
|
|
|
@@ -4605,7 +998,7 @@ class TestFailoverCommand extends smithyClient.Command
|
|
|
4605
998
|
})
|
|
4606
999
|
.s("AmazonElastiCacheV9", "TestFailover", {})
|
|
4607
1000
|
.n("ElastiCacheClient", "TestFailoverCommand")
|
|
4608
|
-
.sc(TestFailover$)
|
|
1001
|
+
.sc(schemas_0.TestFailover$)
|
|
4609
1002
|
.build() {
|
|
4610
1003
|
}
|
|
4611
1004
|
|
|
@@ -4617,7 +1010,7 @@ class TestMigrationCommand extends smithyClient.Command
|
|
|
4617
1010
|
})
|
|
4618
1011
|
.s("AmazonElastiCacheV9", "TestMigration", {})
|
|
4619
1012
|
.n("ElastiCacheClient", "TestMigrationCommand")
|
|
4620
|
-
.sc(TestMigration$)
|
|
1013
|
+
.sc(schemas_0.TestMigration$)
|
|
4621
1014
|
.build() {
|
|
4622
1015
|
}
|
|
4623
1016
|
|
|
@@ -5256,548 +1649,115 @@ Object.defineProperty(exports, "__Client", {
|
|
|
5256
1649
|
enumerable: true,
|
|
5257
1650
|
get: function () { return smithyClient.Client; }
|
|
5258
1651
|
});
|
|
5259
|
-
exports
|
|
5260
|
-
|
|
1652
|
+
Object.defineProperty(exports, "ElastiCacheServiceException", {
|
|
1653
|
+
enumerable: true,
|
|
1654
|
+
get: function () { return ElastiCacheServiceException.ElastiCacheServiceException; }
|
|
1655
|
+
});
|
|
5261
1656
|
exports.AZMode = AZMode;
|
|
5262
|
-
exports.AddTagsToResource$ = AddTagsToResource$;
|
|
5263
1657
|
exports.AddTagsToResourceCommand = AddTagsToResourceCommand;
|
|
5264
|
-
exports.AddTagsToResourceMessage$ = AddTagsToResourceMessage$;
|
|
5265
|
-
exports.AllowedNodeTypeModificationsMessage$ = AllowedNodeTypeModificationsMessage$;
|
|
5266
1658
|
exports.AuthTokenUpdateStatus = AuthTokenUpdateStatus;
|
|
5267
1659
|
exports.AuthTokenUpdateStrategyType = AuthTokenUpdateStrategyType;
|
|
5268
|
-
exports.Authentication$ = Authentication$;
|
|
5269
|
-
exports.AuthenticationMode$ = AuthenticationMode$;
|
|
5270
1660
|
exports.AuthenticationType = AuthenticationType;
|
|
5271
|
-
exports.AuthorizationAlreadyExistsFault = AuthorizationAlreadyExistsFault;
|
|
5272
|
-
exports.AuthorizationAlreadyExistsFault$ = AuthorizationAlreadyExistsFault$;
|
|
5273
|
-
exports.AuthorizationNotFoundFault = AuthorizationNotFoundFault;
|
|
5274
|
-
exports.AuthorizationNotFoundFault$ = AuthorizationNotFoundFault$;
|
|
5275
|
-
exports.AuthorizeCacheSecurityGroupIngress$ = AuthorizeCacheSecurityGroupIngress$;
|
|
5276
1661
|
exports.AuthorizeCacheSecurityGroupIngressCommand = AuthorizeCacheSecurityGroupIngressCommand;
|
|
5277
|
-
exports.AuthorizeCacheSecurityGroupIngressMessage$ = AuthorizeCacheSecurityGroupIngressMessage$;
|
|
5278
|
-
exports.AuthorizeCacheSecurityGroupIngressResult$ = AuthorizeCacheSecurityGroupIngressResult$;
|
|
5279
1662
|
exports.AutomaticFailoverStatus = AutomaticFailoverStatus;
|
|
5280
|
-
exports.AvailabilityZone$ = AvailabilityZone$;
|
|
5281
|
-
exports.BatchApplyUpdateAction$ = BatchApplyUpdateAction$;
|
|
5282
1663
|
exports.BatchApplyUpdateActionCommand = BatchApplyUpdateActionCommand;
|
|
5283
|
-
exports.BatchApplyUpdateActionMessage$ = BatchApplyUpdateActionMessage$;
|
|
5284
|
-
exports.BatchStopUpdateAction$ = BatchStopUpdateAction$;
|
|
5285
1664
|
exports.BatchStopUpdateActionCommand = BatchStopUpdateActionCommand;
|
|
5286
|
-
exports.BatchStopUpdateActionMessage$ = BatchStopUpdateActionMessage$;
|
|
5287
|
-
exports.CacheCluster$ = CacheCluster$;
|
|
5288
|
-
exports.CacheClusterAlreadyExistsFault = CacheClusterAlreadyExistsFault;
|
|
5289
|
-
exports.CacheClusterAlreadyExistsFault$ = CacheClusterAlreadyExistsFault$;
|
|
5290
|
-
exports.CacheClusterMessage$ = CacheClusterMessage$;
|
|
5291
|
-
exports.CacheClusterNotFoundFault = CacheClusterNotFoundFault;
|
|
5292
|
-
exports.CacheClusterNotFoundFault$ = CacheClusterNotFoundFault$;
|
|
5293
|
-
exports.CacheEngineVersion$ = CacheEngineVersion$;
|
|
5294
|
-
exports.CacheEngineVersionMessage$ = CacheEngineVersionMessage$;
|
|
5295
|
-
exports.CacheNode$ = CacheNode$;
|
|
5296
|
-
exports.CacheNodeTypeSpecificParameter$ = CacheNodeTypeSpecificParameter$;
|
|
5297
|
-
exports.CacheNodeTypeSpecificValue$ = CacheNodeTypeSpecificValue$;
|
|
5298
|
-
exports.CacheNodeUpdateStatus$ = CacheNodeUpdateStatus$;
|
|
5299
|
-
exports.CacheParameterGroup$ = CacheParameterGroup$;
|
|
5300
|
-
exports.CacheParameterGroupAlreadyExistsFault = CacheParameterGroupAlreadyExistsFault;
|
|
5301
|
-
exports.CacheParameterGroupAlreadyExistsFault$ = CacheParameterGroupAlreadyExistsFault$;
|
|
5302
|
-
exports.CacheParameterGroupDetails$ = CacheParameterGroupDetails$;
|
|
5303
|
-
exports.CacheParameterGroupNameMessage$ = CacheParameterGroupNameMessage$;
|
|
5304
|
-
exports.CacheParameterGroupNotFoundFault = CacheParameterGroupNotFoundFault;
|
|
5305
|
-
exports.CacheParameterGroupNotFoundFault$ = CacheParameterGroupNotFoundFault$;
|
|
5306
|
-
exports.CacheParameterGroupQuotaExceededFault = CacheParameterGroupQuotaExceededFault;
|
|
5307
|
-
exports.CacheParameterGroupQuotaExceededFault$ = CacheParameterGroupQuotaExceededFault$;
|
|
5308
|
-
exports.CacheParameterGroupStatus$ = CacheParameterGroupStatus$;
|
|
5309
|
-
exports.CacheParameterGroupsMessage$ = CacheParameterGroupsMessage$;
|
|
5310
|
-
exports.CacheSecurityGroup$ = CacheSecurityGroup$;
|
|
5311
|
-
exports.CacheSecurityGroupAlreadyExistsFault = CacheSecurityGroupAlreadyExistsFault;
|
|
5312
|
-
exports.CacheSecurityGroupAlreadyExistsFault$ = CacheSecurityGroupAlreadyExistsFault$;
|
|
5313
|
-
exports.CacheSecurityGroupMembership$ = CacheSecurityGroupMembership$;
|
|
5314
|
-
exports.CacheSecurityGroupMessage$ = CacheSecurityGroupMessage$;
|
|
5315
|
-
exports.CacheSecurityGroupNotFoundFault = CacheSecurityGroupNotFoundFault;
|
|
5316
|
-
exports.CacheSecurityGroupNotFoundFault$ = CacheSecurityGroupNotFoundFault$;
|
|
5317
|
-
exports.CacheSecurityGroupQuotaExceededFault = CacheSecurityGroupQuotaExceededFault;
|
|
5318
|
-
exports.CacheSecurityGroupQuotaExceededFault$ = CacheSecurityGroupQuotaExceededFault$;
|
|
5319
|
-
exports.CacheSubnetGroup$ = CacheSubnetGroup$;
|
|
5320
|
-
exports.CacheSubnetGroupAlreadyExistsFault = CacheSubnetGroupAlreadyExistsFault;
|
|
5321
|
-
exports.CacheSubnetGroupAlreadyExistsFault$ = CacheSubnetGroupAlreadyExistsFault$;
|
|
5322
|
-
exports.CacheSubnetGroupInUse = CacheSubnetGroupInUse;
|
|
5323
|
-
exports.CacheSubnetGroupInUse$ = CacheSubnetGroupInUse$;
|
|
5324
|
-
exports.CacheSubnetGroupMessage$ = CacheSubnetGroupMessage$;
|
|
5325
|
-
exports.CacheSubnetGroupNotFoundFault = CacheSubnetGroupNotFoundFault;
|
|
5326
|
-
exports.CacheSubnetGroupNotFoundFault$ = CacheSubnetGroupNotFoundFault$;
|
|
5327
|
-
exports.CacheSubnetGroupQuotaExceededFault = CacheSubnetGroupQuotaExceededFault;
|
|
5328
|
-
exports.CacheSubnetGroupQuotaExceededFault$ = CacheSubnetGroupQuotaExceededFault$;
|
|
5329
|
-
exports.CacheSubnetQuotaExceededFault = CacheSubnetQuotaExceededFault;
|
|
5330
|
-
exports.CacheSubnetQuotaExceededFault$ = CacheSubnetQuotaExceededFault$;
|
|
5331
|
-
exports.CacheUsageLimits$ = CacheUsageLimits$;
|
|
5332
1665
|
exports.ChangeType = ChangeType;
|
|
5333
|
-
exports.CloudWatchLogsDestinationDetails$ = CloudWatchLogsDestinationDetails$;
|
|
5334
1666
|
exports.ClusterMode = ClusterMode;
|
|
5335
|
-
exports.ClusterQuotaForCustomerExceededFault = ClusterQuotaForCustomerExceededFault;
|
|
5336
|
-
exports.ClusterQuotaForCustomerExceededFault$ = ClusterQuotaForCustomerExceededFault$;
|
|
5337
|
-
exports.CompleteMigration$ = CompleteMigration$;
|
|
5338
1667
|
exports.CompleteMigrationCommand = CompleteMigrationCommand;
|
|
5339
|
-
exports.CompleteMigrationMessage$ = CompleteMigrationMessage$;
|
|
5340
|
-
exports.CompleteMigrationResponse$ = CompleteMigrationResponse$;
|
|
5341
|
-
exports.ConfigureShard$ = ConfigureShard$;
|
|
5342
|
-
exports.CopyServerlessCacheSnapshot$ = CopyServerlessCacheSnapshot$;
|
|
5343
1668
|
exports.CopyServerlessCacheSnapshotCommand = CopyServerlessCacheSnapshotCommand;
|
|
5344
|
-
exports.CopyServerlessCacheSnapshotRequest$ = CopyServerlessCacheSnapshotRequest$;
|
|
5345
|
-
exports.CopyServerlessCacheSnapshotResponse$ = CopyServerlessCacheSnapshotResponse$;
|
|
5346
|
-
exports.CopySnapshot$ = CopySnapshot$;
|
|
5347
1669
|
exports.CopySnapshotCommand = CopySnapshotCommand;
|
|
5348
|
-
exports.CopySnapshotMessage$ = CopySnapshotMessage$;
|
|
5349
|
-
exports.CopySnapshotResult$ = CopySnapshotResult$;
|
|
5350
|
-
exports.CreateCacheCluster$ = CreateCacheCluster$;
|
|
5351
1670
|
exports.CreateCacheClusterCommand = CreateCacheClusterCommand;
|
|
5352
|
-
exports.CreateCacheClusterMessage$ = CreateCacheClusterMessage$;
|
|
5353
|
-
exports.CreateCacheClusterResult$ = CreateCacheClusterResult$;
|
|
5354
|
-
exports.CreateCacheParameterGroup$ = CreateCacheParameterGroup$;
|
|
5355
1671
|
exports.CreateCacheParameterGroupCommand = CreateCacheParameterGroupCommand;
|
|
5356
|
-
exports.CreateCacheParameterGroupMessage$ = CreateCacheParameterGroupMessage$;
|
|
5357
|
-
exports.CreateCacheParameterGroupResult$ = CreateCacheParameterGroupResult$;
|
|
5358
|
-
exports.CreateCacheSecurityGroup$ = CreateCacheSecurityGroup$;
|
|
5359
1672
|
exports.CreateCacheSecurityGroupCommand = CreateCacheSecurityGroupCommand;
|
|
5360
|
-
exports.CreateCacheSecurityGroupMessage$ = CreateCacheSecurityGroupMessage$;
|
|
5361
|
-
exports.CreateCacheSecurityGroupResult$ = CreateCacheSecurityGroupResult$;
|
|
5362
|
-
exports.CreateCacheSubnetGroup$ = CreateCacheSubnetGroup$;
|
|
5363
1673
|
exports.CreateCacheSubnetGroupCommand = CreateCacheSubnetGroupCommand;
|
|
5364
|
-
exports.CreateCacheSubnetGroupMessage$ = CreateCacheSubnetGroupMessage$;
|
|
5365
|
-
exports.CreateCacheSubnetGroupResult$ = CreateCacheSubnetGroupResult$;
|
|
5366
|
-
exports.CreateGlobalReplicationGroup$ = CreateGlobalReplicationGroup$;
|
|
5367
1674
|
exports.CreateGlobalReplicationGroupCommand = CreateGlobalReplicationGroupCommand;
|
|
5368
|
-
exports.CreateGlobalReplicationGroupMessage$ = CreateGlobalReplicationGroupMessage$;
|
|
5369
|
-
exports.CreateGlobalReplicationGroupResult$ = CreateGlobalReplicationGroupResult$;
|
|
5370
|
-
exports.CreateReplicationGroup$ = CreateReplicationGroup$;
|
|
5371
1675
|
exports.CreateReplicationGroupCommand = CreateReplicationGroupCommand;
|
|
5372
|
-
exports.CreateReplicationGroupMessage$ = CreateReplicationGroupMessage$;
|
|
5373
|
-
exports.CreateReplicationGroupResult$ = CreateReplicationGroupResult$;
|
|
5374
|
-
exports.CreateServerlessCache$ = CreateServerlessCache$;
|
|
5375
1676
|
exports.CreateServerlessCacheCommand = CreateServerlessCacheCommand;
|
|
5376
|
-
exports.CreateServerlessCacheRequest$ = CreateServerlessCacheRequest$;
|
|
5377
|
-
exports.CreateServerlessCacheResponse$ = CreateServerlessCacheResponse$;
|
|
5378
|
-
exports.CreateServerlessCacheSnapshot$ = CreateServerlessCacheSnapshot$;
|
|
5379
1677
|
exports.CreateServerlessCacheSnapshotCommand = CreateServerlessCacheSnapshotCommand;
|
|
5380
|
-
exports.CreateServerlessCacheSnapshotRequest$ = CreateServerlessCacheSnapshotRequest$;
|
|
5381
|
-
exports.CreateServerlessCacheSnapshotResponse$ = CreateServerlessCacheSnapshotResponse$;
|
|
5382
|
-
exports.CreateSnapshot$ = CreateSnapshot$;
|
|
5383
1678
|
exports.CreateSnapshotCommand = CreateSnapshotCommand;
|
|
5384
|
-
exports.CreateSnapshotMessage$ = CreateSnapshotMessage$;
|
|
5385
|
-
exports.CreateSnapshotResult$ = CreateSnapshotResult$;
|
|
5386
|
-
exports.CreateUser$ = CreateUser$;
|
|
5387
1679
|
exports.CreateUserCommand = CreateUserCommand;
|
|
5388
|
-
exports.CreateUserGroup$ = CreateUserGroup$;
|
|
5389
1680
|
exports.CreateUserGroupCommand = CreateUserGroupCommand;
|
|
5390
|
-
exports.CreateUserGroupMessage$ = CreateUserGroupMessage$;
|
|
5391
|
-
exports.CreateUserMessage$ = CreateUserMessage$;
|
|
5392
|
-
exports.CustomerNodeEndpoint$ = CustomerNodeEndpoint$;
|
|
5393
|
-
exports.DataStorage$ = DataStorage$;
|
|
5394
1681
|
exports.DataStorageUnit = DataStorageUnit;
|
|
5395
1682
|
exports.DataTieringStatus = DataTieringStatus;
|
|
5396
|
-
exports.DecreaseNodeGroupsInGlobalReplicationGroup$ = DecreaseNodeGroupsInGlobalReplicationGroup$;
|
|
5397
1683
|
exports.DecreaseNodeGroupsInGlobalReplicationGroupCommand = DecreaseNodeGroupsInGlobalReplicationGroupCommand;
|
|
5398
|
-
exports.DecreaseNodeGroupsInGlobalReplicationGroupMessage$ = DecreaseNodeGroupsInGlobalReplicationGroupMessage$;
|
|
5399
|
-
exports.DecreaseNodeGroupsInGlobalReplicationGroupResult$ = DecreaseNodeGroupsInGlobalReplicationGroupResult$;
|
|
5400
|
-
exports.DecreaseReplicaCount$ = DecreaseReplicaCount$;
|
|
5401
1684
|
exports.DecreaseReplicaCountCommand = DecreaseReplicaCountCommand;
|
|
5402
|
-
exports.DecreaseReplicaCountMessage$ = DecreaseReplicaCountMessage$;
|
|
5403
|
-
exports.DecreaseReplicaCountResult$ = DecreaseReplicaCountResult$;
|
|
5404
|
-
exports.DefaultUserAssociatedToUserGroupFault = DefaultUserAssociatedToUserGroupFault;
|
|
5405
|
-
exports.DefaultUserAssociatedToUserGroupFault$ = DefaultUserAssociatedToUserGroupFault$;
|
|
5406
|
-
exports.DefaultUserRequired = DefaultUserRequired;
|
|
5407
|
-
exports.DefaultUserRequired$ = DefaultUserRequired$;
|
|
5408
|
-
exports.DeleteCacheCluster$ = DeleteCacheCluster$;
|
|
5409
1685
|
exports.DeleteCacheClusterCommand = DeleteCacheClusterCommand;
|
|
5410
|
-
exports.DeleteCacheClusterMessage$ = DeleteCacheClusterMessage$;
|
|
5411
|
-
exports.DeleteCacheClusterResult$ = DeleteCacheClusterResult$;
|
|
5412
|
-
exports.DeleteCacheParameterGroup$ = DeleteCacheParameterGroup$;
|
|
5413
1686
|
exports.DeleteCacheParameterGroupCommand = DeleteCacheParameterGroupCommand;
|
|
5414
|
-
exports.DeleteCacheParameterGroupMessage$ = DeleteCacheParameterGroupMessage$;
|
|
5415
|
-
exports.DeleteCacheSecurityGroup$ = DeleteCacheSecurityGroup$;
|
|
5416
1687
|
exports.DeleteCacheSecurityGroupCommand = DeleteCacheSecurityGroupCommand;
|
|
5417
|
-
exports.DeleteCacheSecurityGroupMessage$ = DeleteCacheSecurityGroupMessage$;
|
|
5418
|
-
exports.DeleteCacheSubnetGroup$ = DeleteCacheSubnetGroup$;
|
|
5419
1688
|
exports.DeleteCacheSubnetGroupCommand = DeleteCacheSubnetGroupCommand;
|
|
5420
|
-
exports.DeleteCacheSubnetGroupMessage$ = DeleteCacheSubnetGroupMessage$;
|
|
5421
|
-
exports.DeleteGlobalReplicationGroup$ = DeleteGlobalReplicationGroup$;
|
|
5422
1689
|
exports.DeleteGlobalReplicationGroupCommand = DeleteGlobalReplicationGroupCommand;
|
|
5423
|
-
exports.DeleteGlobalReplicationGroupMessage$ = DeleteGlobalReplicationGroupMessage$;
|
|
5424
|
-
exports.DeleteGlobalReplicationGroupResult$ = DeleteGlobalReplicationGroupResult$;
|
|
5425
|
-
exports.DeleteReplicationGroup$ = DeleteReplicationGroup$;
|
|
5426
1690
|
exports.DeleteReplicationGroupCommand = DeleteReplicationGroupCommand;
|
|
5427
|
-
exports.DeleteReplicationGroupMessage$ = DeleteReplicationGroupMessage$;
|
|
5428
|
-
exports.DeleteReplicationGroupResult$ = DeleteReplicationGroupResult$;
|
|
5429
|
-
exports.DeleteServerlessCache$ = DeleteServerlessCache$;
|
|
5430
1691
|
exports.DeleteServerlessCacheCommand = DeleteServerlessCacheCommand;
|
|
5431
|
-
exports.DeleteServerlessCacheRequest$ = DeleteServerlessCacheRequest$;
|
|
5432
|
-
exports.DeleteServerlessCacheResponse$ = DeleteServerlessCacheResponse$;
|
|
5433
|
-
exports.DeleteServerlessCacheSnapshot$ = DeleteServerlessCacheSnapshot$;
|
|
5434
1692
|
exports.DeleteServerlessCacheSnapshotCommand = DeleteServerlessCacheSnapshotCommand;
|
|
5435
|
-
exports.DeleteServerlessCacheSnapshotRequest$ = DeleteServerlessCacheSnapshotRequest$;
|
|
5436
|
-
exports.DeleteServerlessCacheSnapshotResponse$ = DeleteServerlessCacheSnapshotResponse$;
|
|
5437
|
-
exports.DeleteSnapshot$ = DeleteSnapshot$;
|
|
5438
1693
|
exports.DeleteSnapshotCommand = DeleteSnapshotCommand;
|
|
5439
|
-
exports.DeleteSnapshotMessage$ = DeleteSnapshotMessage$;
|
|
5440
|
-
exports.DeleteSnapshotResult$ = DeleteSnapshotResult$;
|
|
5441
|
-
exports.DeleteUser$ = DeleteUser$;
|
|
5442
1694
|
exports.DeleteUserCommand = DeleteUserCommand;
|
|
5443
|
-
exports.DeleteUserGroup$ = DeleteUserGroup$;
|
|
5444
1695
|
exports.DeleteUserGroupCommand = DeleteUserGroupCommand;
|
|
5445
|
-
exports.DeleteUserGroupMessage$ = DeleteUserGroupMessage$;
|
|
5446
|
-
exports.DeleteUserMessage$ = DeleteUserMessage$;
|
|
5447
|
-
exports.DescribeCacheClusters$ = DescribeCacheClusters$;
|
|
5448
1696
|
exports.DescribeCacheClustersCommand = DescribeCacheClustersCommand;
|
|
5449
|
-
exports.DescribeCacheClustersMessage$ = DescribeCacheClustersMessage$;
|
|
5450
|
-
exports.DescribeCacheEngineVersions$ = DescribeCacheEngineVersions$;
|
|
5451
1697
|
exports.DescribeCacheEngineVersionsCommand = DescribeCacheEngineVersionsCommand;
|
|
5452
|
-
exports.DescribeCacheEngineVersionsMessage$ = DescribeCacheEngineVersionsMessage$;
|
|
5453
|
-
exports.DescribeCacheParameterGroups$ = DescribeCacheParameterGroups$;
|
|
5454
1698
|
exports.DescribeCacheParameterGroupsCommand = DescribeCacheParameterGroupsCommand;
|
|
5455
|
-
exports.DescribeCacheParameterGroupsMessage$ = DescribeCacheParameterGroupsMessage$;
|
|
5456
|
-
exports.DescribeCacheParameters$ = DescribeCacheParameters$;
|
|
5457
1699
|
exports.DescribeCacheParametersCommand = DescribeCacheParametersCommand;
|
|
5458
|
-
exports.DescribeCacheParametersMessage$ = DescribeCacheParametersMessage$;
|
|
5459
|
-
exports.DescribeCacheSecurityGroups$ = DescribeCacheSecurityGroups$;
|
|
5460
1700
|
exports.DescribeCacheSecurityGroupsCommand = DescribeCacheSecurityGroupsCommand;
|
|
5461
|
-
exports.DescribeCacheSecurityGroupsMessage$ = DescribeCacheSecurityGroupsMessage$;
|
|
5462
|
-
exports.DescribeCacheSubnetGroups$ = DescribeCacheSubnetGroups$;
|
|
5463
1701
|
exports.DescribeCacheSubnetGroupsCommand = DescribeCacheSubnetGroupsCommand;
|
|
5464
|
-
exports.DescribeCacheSubnetGroupsMessage$ = DescribeCacheSubnetGroupsMessage$;
|
|
5465
|
-
exports.DescribeEngineDefaultParameters$ = DescribeEngineDefaultParameters$;
|
|
5466
1702
|
exports.DescribeEngineDefaultParametersCommand = DescribeEngineDefaultParametersCommand;
|
|
5467
|
-
exports.DescribeEngineDefaultParametersMessage$ = DescribeEngineDefaultParametersMessage$;
|
|
5468
|
-
exports.DescribeEngineDefaultParametersResult$ = DescribeEngineDefaultParametersResult$;
|
|
5469
|
-
exports.DescribeEvents$ = DescribeEvents$;
|
|
5470
1703
|
exports.DescribeEventsCommand = DescribeEventsCommand;
|
|
5471
|
-
exports.DescribeEventsMessage$ = DescribeEventsMessage$;
|
|
5472
|
-
exports.DescribeGlobalReplicationGroups$ = DescribeGlobalReplicationGroups$;
|
|
5473
1704
|
exports.DescribeGlobalReplicationGroupsCommand = DescribeGlobalReplicationGroupsCommand;
|
|
5474
|
-
exports.DescribeGlobalReplicationGroupsMessage$ = DescribeGlobalReplicationGroupsMessage$;
|
|
5475
|
-
exports.DescribeGlobalReplicationGroupsResult$ = DescribeGlobalReplicationGroupsResult$;
|
|
5476
|
-
exports.DescribeReplicationGroups$ = DescribeReplicationGroups$;
|
|
5477
1705
|
exports.DescribeReplicationGroupsCommand = DescribeReplicationGroupsCommand;
|
|
5478
|
-
exports.DescribeReplicationGroupsMessage$ = DescribeReplicationGroupsMessage$;
|
|
5479
|
-
exports.DescribeReservedCacheNodes$ = DescribeReservedCacheNodes$;
|
|
5480
1706
|
exports.DescribeReservedCacheNodesCommand = DescribeReservedCacheNodesCommand;
|
|
5481
|
-
exports.DescribeReservedCacheNodesMessage$ = DescribeReservedCacheNodesMessage$;
|
|
5482
|
-
exports.DescribeReservedCacheNodesOfferings$ = DescribeReservedCacheNodesOfferings$;
|
|
5483
1707
|
exports.DescribeReservedCacheNodesOfferingsCommand = DescribeReservedCacheNodesOfferingsCommand;
|
|
5484
|
-
exports.DescribeReservedCacheNodesOfferingsMessage$ = DescribeReservedCacheNodesOfferingsMessage$;
|
|
5485
|
-
exports.DescribeServerlessCacheSnapshots$ = DescribeServerlessCacheSnapshots$;
|
|
5486
1708
|
exports.DescribeServerlessCacheSnapshotsCommand = DescribeServerlessCacheSnapshotsCommand;
|
|
5487
|
-
exports.DescribeServerlessCacheSnapshotsRequest$ = DescribeServerlessCacheSnapshotsRequest$;
|
|
5488
|
-
exports.DescribeServerlessCacheSnapshotsResponse$ = DescribeServerlessCacheSnapshotsResponse$;
|
|
5489
|
-
exports.DescribeServerlessCaches$ = DescribeServerlessCaches$;
|
|
5490
1709
|
exports.DescribeServerlessCachesCommand = DescribeServerlessCachesCommand;
|
|
5491
|
-
exports.DescribeServerlessCachesRequest$ = DescribeServerlessCachesRequest$;
|
|
5492
|
-
exports.DescribeServerlessCachesResponse$ = DescribeServerlessCachesResponse$;
|
|
5493
|
-
exports.DescribeServiceUpdates$ = DescribeServiceUpdates$;
|
|
5494
1710
|
exports.DescribeServiceUpdatesCommand = DescribeServiceUpdatesCommand;
|
|
5495
|
-
exports.DescribeServiceUpdatesMessage$ = DescribeServiceUpdatesMessage$;
|
|
5496
|
-
exports.DescribeSnapshots$ = DescribeSnapshots$;
|
|
5497
1711
|
exports.DescribeSnapshotsCommand = DescribeSnapshotsCommand;
|
|
5498
|
-
exports.DescribeSnapshotsListMessage$ = DescribeSnapshotsListMessage$;
|
|
5499
|
-
exports.DescribeSnapshotsMessage$ = DescribeSnapshotsMessage$;
|
|
5500
|
-
exports.DescribeUpdateActions$ = DescribeUpdateActions$;
|
|
5501
1712
|
exports.DescribeUpdateActionsCommand = DescribeUpdateActionsCommand;
|
|
5502
|
-
exports.DescribeUpdateActionsMessage$ = DescribeUpdateActionsMessage$;
|
|
5503
|
-
exports.DescribeUserGroups$ = DescribeUserGroups$;
|
|
5504
1713
|
exports.DescribeUserGroupsCommand = DescribeUserGroupsCommand;
|
|
5505
|
-
exports.DescribeUserGroupsMessage$ = DescribeUserGroupsMessage$;
|
|
5506
|
-
exports.DescribeUserGroupsResult$ = DescribeUserGroupsResult$;
|
|
5507
|
-
exports.DescribeUsers$ = DescribeUsers$;
|
|
5508
1714
|
exports.DescribeUsersCommand = DescribeUsersCommand;
|
|
5509
|
-
exports.DescribeUsersMessage$ = DescribeUsersMessage$;
|
|
5510
|
-
exports.DescribeUsersResult$ = DescribeUsersResult$;
|
|
5511
|
-
exports.DestinationDetails$ = DestinationDetails$;
|
|
5512
1715
|
exports.DestinationType = DestinationType;
|
|
5513
|
-
exports.DisassociateGlobalReplicationGroup$ = DisassociateGlobalReplicationGroup$;
|
|
5514
1716
|
exports.DisassociateGlobalReplicationGroupCommand = DisassociateGlobalReplicationGroupCommand;
|
|
5515
|
-
exports.DisassociateGlobalReplicationGroupMessage$ = DisassociateGlobalReplicationGroupMessage$;
|
|
5516
|
-
exports.DisassociateGlobalReplicationGroupResult$ = DisassociateGlobalReplicationGroupResult$;
|
|
5517
|
-
exports.DuplicateUserNameFault = DuplicateUserNameFault;
|
|
5518
|
-
exports.DuplicateUserNameFault$ = DuplicateUserNameFault$;
|
|
5519
|
-
exports.EC2SecurityGroup$ = EC2SecurityGroup$;
|
|
5520
|
-
exports.ECPUPerSecond$ = ECPUPerSecond$;
|
|
5521
1717
|
exports.ElastiCache = ElastiCache;
|
|
5522
1718
|
exports.ElastiCacheClient = ElastiCacheClient;
|
|
5523
|
-
exports.ElastiCacheServiceException = ElastiCacheServiceException;
|
|
5524
|
-
exports.ElastiCacheServiceException$ = ElastiCacheServiceException$;
|
|
5525
|
-
exports.Endpoint$ = Endpoint$;
|
|
5526
|
-
exports.EngineDefaults$ = EngineDefaults$;
|
|
5527
|
-
exports.Event$ = Event$;
|
|
5528
|
-
exports.EventsMessage$ = EventsMessage$;
|
|
5529
|
-
exports.ExportServerlessCacheSnapshot$ = ExportServerlessCacheSnapshot$;
|
|
5530
1719
|
exports.ExportServerlessCacheSnapshotCommand = ExportServerlessCacheSnapshotCommand;
|
|
5531
|
-
exports.ExportServerlessCacheSnapshotRequest$ = ExportServerlessCacheSnapshotRequest$;
|
|
5532
|
-
exports.ExportServerlessCacheSnapshotResponse$ = ExportServerlessCacheSnapshotResponse$;
|
|
5533
|
-
exports.FailoverGlobalReplicationGroup$ = FailoverGlobalReplicationGroup$;
|
|
5534
1720
|
exports.FailoverGlobalReplicationGroupCommand = FailoverGlobalReplicationGroupCommand;
|
|
5535
|
-
exports.FailoverGlobalReplicationGroupMessage$ = FailoverGlobalReplicationGroupMessage$;
|
|
5536
|
-
exports.FailoverGlobalReplicationGroupResult$ = FailoverGlobalReplicationGroupResult$;
|
|
5537
|
-
exports.Filter$ = Filter$;
|
|
5538
|
-
exports.GlobalNodeGroup$ = GlobalNodeGroup$;
|
|
5539
|
-
exports.GlobalReplicationGroup$ = GlobalReplicationGroup$;
|
|
5540
|
-
exports.GlobalReplicationGroupAlreadyExistsFault = GlobalReplicationGroupAlreadyExistsFault;
|
|
5541
|
-
exports.GlobalReplicationGroupAlreadyExistsFault$ = GlobalReplicationGroupAlreadyExistsFault$;
|
|
5542
|
-
exports.GlobalReplicationGroupInfo$ = GlobalReplicationGroupInfo$;
|
|
5543
|
-
exports.GlobalReplicationGroupMember$ = GlobalReplicationGroupMember$;
|
|
5544
|
-
exports.GlobalReplicationGroupNotFoundFault = GlobalReplicationGroupNotFoundFault;
|
|
5545
|
-
exports.GlobalReplicationGroupNotFoundFault$ = GlobalReplicationGroupNotFoundFault$;
|
|
5546
|
-
exports.IncreaseNodeGroupsInGlobalReplicationGroup$ = IncreaseNodeGroupsInGlobalReplicationGroup$;
|
|
5547
1721
|
exports.IncreaseNodeGroupsInGlobalReplicationGroupCommand = IncreaseNodeGroupsInGlobalReplicationGroupCommand;
|
|
5548
|
-
exports.IncreaseNodeGroupsInGlobalReplicationGroupMessage$ = IncreaseNodeGroupsInGlobalReplicationGroupMessage$;
|
|
5549
|
-
exports.IncreaseNodeGroupsInGlobalReplicationGroupResult$ = IncreaseNodeGroupsInGlobalReplicationGroupResult$;
|
|
5550
|
-
exports.IncreaseReplicaCount$ = IncreaseReplicaCount$;
|
|
5551
1722
|
exports.IncreaseReplicaCountCommand = IncreaseReplicaCountCommand;
|
|
5552
|
-
exports.IncreaseReplicaCountMessage$ = IncreaseReplicaCountMessage$;
|
|
5553
|
-
exports.IncreaseReplicaCountResult$ = IncreaseReplicaCountResult$;
|
|
5554
1723
|
exports.InputAuthenticationType = InputAuthenticationType;
|
|
5555
|
-
exports.InsufficientCacheClusterCapacityFault = InsufficientCacheClusterCapacityFault;
|
|
5556
|
-
exports.InsufficientCacheClusterCapacityFault$ = InsufficientCacheClusterCapacityFault$;
|
|
5557
|
-
exports.InvalidARNFault = InvalidARNFault;
|
|
5558
|
-
exports.InvalidARNFault$ = InvalidARNFault$;
|
|
5559
|
-
exports.InvalidCacheClusterStateFault = InvalidCacheClusterStateFault;
|
|
5560
|
-
exports.InvalidCacheClusterStateFault$ = InvalidCacheClusterStateFault$;
|
|
5561
|
-
exports.InvalidCacheParameterGroupStateFault = InvalidCacheParameterGroupStateFault;
|
|
5562
|
-
exports.InvalidCacheParameterGroupStateFault$ = InvalidCacheParameterGroupStateFault$;
|
|
5563
|
-
exports.InvalidCacheSecurityGroupStateFault = InvalidCacheSecurityGroupStateFault;
|
|
5564
|
-
exports.InvalidCacheSecurityGroupStateFault$ = InvalidCacheSecurityGroupStateFault$;
|
|
5565
|
-
exports.InvalidCredentialsException = InvalidCredentialsException;
|
|
5566
|
-
exports.InvalidCredentialsException$ = InvalidCredentialsException$;
|
|
5567
|
-
exports.InvalidGlobalReplicationGroupStateFault = InvalidGlobalReplicationGroupStateFault;
|
|
5568
|
-
exports.InvalidGlobalReplicationGroupStateFault$ = InvalidGlobalReplicationGroupStateFault$;
|
|
5569
|
-
exports.InvalidKMSKeyFault = InvalidKMSKeyFault;
|
|
5570
|
-
exports.InvalidKMSKeyFault$ = InvalidKMSKeyFault$;
|
|
5571
|
-
exports.InvalidParameterCombinationException = InvalidParameterCombinationException;
|
|
5572
|
-
exports.InvalidParameterCombinationException$ = InvalidParameterCombinationException$;
|
|
5573
|
-
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
5574
|
-
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
5575
|
-
exports.InvalidReplicationGroupStateFault = InvalidReplicationGroupStateFault;
|
|
5576
|
-
exports.InvalidReplicationGroupStateFault$ = InvalidReplicationGroupStateFault$;
|
|
5577
|
-
exports.InvalidServerlessCacheSnapshotStateFault = InvalidServerlessCacheSnapshotStateFault;
|
|
5578
|
-
exports.InvalidServerlessCacheSnapshotStateFault$ = InvalidServerlessCacheSnapshotStateFault$;
|
|
5579
|
-
exports.InvalidServerlessCacheStateFault = InvalidServerlessCacheStateFault;
|
|
5580
|
-
exports.InvalidServerlessCacheStateFault$ = InvalidServerlessCacheStateFault$;
|
|
5581
|
-
exports.InvalidSnapshotStateFault = InvalidSnapshotStateFault;
|
|
5582
|
-
exports.InvalidSnapshotStateFault$ = InvalidSnapshotStateFault$;
|
|
5583
|
-
exports.InvalidSubnet = InvalidSubnet;
|
|
5584
|
-
exports.InvalidSubnet$ = InvalidSubnet$;
|
|
5585
|
-
exports.InvalidUserGroupStateFault = InvalidUserGroupStateFault;
|
|
5586
|
-
exports.InvalidUserGroupStateFault$ = InvalidUserGroupStateFault$;
|
|
5587
|
-
exports.InvalidUserStateFault = InvalidUserStateFault;
|
|
5588
|
-
exports.InvalidUserStateFault$ = InvalidUserStateFault$;
|
|
5589
|
-
exports.InvalidVPCNetworkStateFault = InvalidVPCNetworkStateFault;
|
|
5590
|
-
exports.InvalidVPCNetworkStateFault$ = InvalidVPCNetworkStateFault$;
|
|
5591
1724
|
exports.IpDiscovery = IpDiscovery;
|
|
5592
|
-
exports.KinesisFirehoseDestinationDetails$ = KinesisFirehoseDestinationDetails$;
|
|
5593
|
-
exports.ListAllowedNodeTypeModifications$ = ListAllowedNodeTypeModifications$;
|
|
5594
1725
|
exports.ListAllowedNodeTypeModificationsCommand = ListAllowedNodeTypeModificationsCommand;
|
|
5595
|
-
exports.ListAllowedNodeTypeModificationsMessage$ = ListAllowedNodeTypeModificationsMessage$;
|
|
5596
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
5597
1726
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
5598
|
-
exports.ListTagsForResourceMessage$ = ListTagsForResourceMessage$;
|
|
5599
|
-
exports.LogDeliveryConfiguration$ = LogDeliveryConfiguration$;
|
|
5600
|
-
exports.LogDeliveryConfigurationRequest$ = LogDeliveryConfigurationRequest$;
|
|
5601
1727
|
exports.LogDeliveryConfigurationStatus = LogDeliveryConfigurationStatus;
|
|
5602
1728
|
exports.LogFormat = LogFormat;
|
|
5603
1729
|
exports.LogType = LogType;
|
|
5604
|
-
exports.ModifyCacheCluster$ = ModifyCacheCluster$;
|
|
5605
1730
|
exports.ModifyCacheClusterCommand = ModifyCacheClusterCommand;
|
|
5606
|
-
exports.ModifyCacheClusterMessage$ = ModifyCacheClusterMessage$;
|
|
5607
|
-
exports.ModifyCacheClusterResult$ = ModifyCacheClusterResult$;
|
|
5608
|
-
exports.ModifyCacheParameterGroup$ = ModifyCacheParameterGroup$;
|
|
5609
1731
|
exports.ModifyCacheParameterGroupCommand = ModifyCacheParameterGroupCommand;
|
|
5610
|
-
exports.ModifyCacheParameterGroupMessage$ = ModifyCacheParameterGroupMessage$;
|
|
5611
|
-
exports.ModifyCacheSubnetGroup$ = ModifyCacheSubnetGroup$;
|
|
5612
1732
|
exports.ModifyCacheSubnetGroupCommand = ModifyCacheSubnetGroupCommand;
|
|
5613
|
-
exports.ModifyCacheSubnetGroupMessage$ = ModifyCacheSubnetGroupMessage$;
|
|
5614
|
-
exports.ModifyCacheSubnetGroupResult$ = ModifyCacheSubnetGroupResult$;
|
|
5615
|
-
exports.ModifyGlobalReplicationGroup$ = ModifyGlobalReplicationGroup$;
|
|
5616
1733
|
exports.ModifyGlobalReplicationGroupCommand = ModifyGlobalReplicationGroupCommand;
|
|
5617
|
-
exports.ModifyGlobalReplicationGroupMessage$ = ModifyGlobalReplicationGroupMessage$;
|
|
5618
|
-
exports.ModifyGlobalReplicationGroupResult$ = ModifyGlobalReplicationGroupResult$;
|
|
5619
|
-
exports.ModifyReplicationGroup$ = ModifyReplicationGroup$;
|
|
5620
1734
|
exports.ModifyReplicationGroupCommand = ModifyReplicationGroupCommand;
|
|
5621
|
-
exports.ModifyReplicationGroupMessage$ = ModifyReplicationGroupMessage$;
|
|
5622
|
-
exports.ModifyReplicationGroupResult$ = ModifyReplicationGroupResult$;
|
|
5623
|
-
exports.ModifyReplicationGroupShardConfiguration$ = ModifyReplicationGroupShardConfiguration$;
|
|
5624
1735
|
exports.ModifyReplicationGroupShardConfigurationCommand = ModifyReplicationGroupShardConfigurationCommand;
|
|
5625
|
-
exports.ModifyReplicationGroupShardConfigurationMessage$ = ModifyReplicationGroupShardConfigurationMessage$;
|
|
5626
|
-
exports.ModifyReplicationGroupShardConfigurationResult$ = ModifyReplicationGroupShardConfigurationResult$;
|
|
5627
|
-
exports.ModifyServerlessCache$ = ModifyServerlessCache$;
|
|
5628
1736
|
exports.ModifyServerlessCacheCommand = ModifyServerlessCacheCommand;
|
|
5629
|
-
exports.ModifyServerlessCacheRequest$ = ModifyServerlessCacheRequest$;
|
|
5630
|
-
exports.ModifyServerlessCacheResponse$ = ModifyServerlessCacheResponse$;
|
|
5631
|
-
exports.ModifyUser$ = ModifyUser$;
|
|
5632
1737
|
exports.ModifyUserCommand = ModifyUserCommand;
|
|
5633
|
-
exports.ModifyUserGroup$ = ModifyUserGroup$;
|
|
5634
1738
|
exports.ModifyUserGroupCommand = ModifyUserGroupCommand;
|
|
5635
|
-
exports.ModifyUserGroupMessage$ = ModifyUserGroupMessage$;
|
|
5636
|
-
exports.ModifyUserMessage$ = ModifyUserMessage$;
|
|
5637
1739
|
exports.MultiAZStatus = MultiAZStatus;
|
|
5638
1740
|
exports.NetworkType = NetworkType;
|
|
5639
|
-
exports.NoOperationFault = NoOperationFault;
|
|
5640
|
-
exports.NoOperationFault$ = NoOperationFault$;
|
|
5641
|
-
exports.NodeGroup$ = NodeGroup$;
|
|
5642
|
-
exports.NodeGroupConfiguration$ = NodeGroupConfiguration$;
|
|
5643
|
-
exports.NodeGroupMember$ = NodeGroupMember$;
|
|
5644
|
-
exports.NodeGroupMemberUpdateStatus$ = NodeGroupMemberUpdateStatus$;
|
|
5645
|
-
exports.NodeGroupNotFoundFault = NodeGroupNotFoundFault;
|
|
5646
|
-
exports.NodeGroupNotFoundFault$ = NodeGroupNotFoundFault$;
|
|
5647
|
-
exports.NodeGroupUpdateStatus$ = NodeGroupUpdateStatus$;
|
|
5648
|
-
exports.NodeGroupsPerReplicationGroupQuotaExceededFault = NodeGroupsPerReplicationGroupQuotaExceededFault;
|
|
5649
|
-
exports.NodeGroupsPerReplicationGroupQuotaExceededFault$ = NodeGroupsPerReplicationGroupQuotaExceededFault$;
|
|
5650
|
-
exports.NodeQuotaForClusterExceededFault = NodeQuotaForClusterExceededFault;
|
|
5651
|
-
exports.NodeQuotaForClusterExceededFault$ = NodeQuotaForClusterExceededFault$;
|
|
5652
|
-
exports.NodeQuotaForCustomerExceededFault = NodeQuotaForCustomerExceededFault;
|
|
5653
|
-
exports.NodeQuotaForCustomerExceededFault$ = NodeQuotaForCustomerExceededFault$;
|
|
5654
|
-
exports.NodeSnapshot$ = NodeSnapshot$;
|
|
5655
1741
|
exports.NodeUpdateInitiatedBy = NodeUpdateInitiatedBy;
|
|
5656
1742
|
exports.NodeUpdateStatus = NodeUpdateStatus;
|
|
5657
|
-
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
5658
1743
|
exports.OutpostMode = OutpostMode;
|
|
5659
|
-
exports.Parameter$ = Parameter$;
|
|
5660
|
-
exports.ParameterNameValue$ = ParameterNameValue$;
|
|
5661
1744
|
exports.PendingAutomaticFailoverStatus = PendingAutomaticFailoverStatus;
|
|
5662
|
-
exports.PendingLogDeliveryConfiguration$ = PendingLogDeliveryConfiguration$;
|
|
5663
|
-
exports.PendingModifiedValues$ = PendingModifiedValues$;
|
|
5664
|
-
exports.ProcessedUpdateAction$ = ProcessedUpdateAction$;
|
|
5665
|
-
exports.PurchaseReservedCacheNodesOffering$ = PurchaseReservedCacheNodesOffering$;
|
|
5666
1745
|
exports.PurchaseReservedCacheNodesOfferingCommand = PurchaseReservedCacheNodesOfferingCommand;
|
|
5667
|
-
exports.PurchaseReservedCacheNodesOfferingMessage$ = PurchaseReservedCacheNodesOfferingMessage$;
|
|
5668
|
-
exports.PurchaseReservedCacheNodesOfferingResult$ = PurchaseReservedCacheNodesOfferingResult$;
|
|
5669
|
-
exports.RebalanceSlotsInGlobalReplicationGroup$ = RebalanceSlotsInGlobalReplicationGroup$;
|
|
5670
1746
|
exports.RebalanceSlotsInGlobalReplicationGroupCommand = RebalanceSlotsInGlobalReplicationGroupCommand;
|
|
5671
|
-
exports.RebalanceSlotsInGlobalReplicationGroupMessage$ = RebalanceSlotsInGlobalReplicationGroupMessage$;
|
|
5672
|
-
exports.RebalanceSlotsInGlobalReplicationGroupResult$ = RebalanceSlotsInGlobalReplicationGroupResult$;
|
|
5673
|
-
exports.RebootCacheCluster$ = RebootCacheCluster$;
|
|
5674
1747
|
exports.RebootCacheClusterCommand = RebootCacheClusterCommand;
|
|
5675
|
-
exports.RebootCacheClusterMessage$ = RebootCacheClusterMessage$;
|
|
5676
|
-
exports.RebootCacheClusterResult$ = RebootCacheClusterResult$;
|
|
5677
|
-
exports.RecurringCharge$ = RecurringCharge$;
|
|
5678
|
-
exports.RegionalConfiguration$ = RegionalConfiguration$;
|
|
5679
|
-
exports.RemoveTagsFromResource$ = RemoveTagsFromResource$;
|
|
5680
1748
|
exports.RemoveTagsFromResourceCommand = RemoveTagsFromResourceCommand;
|
|
5681
|
-
exports.RemoveTagsFromResourceMessage$ = RemoveTagsFromResourceMessage$;
|
|
5682
|
-
exports.ReplicationGroup$ = ReplicationGroup$;
|
|
5683
|
-
exports.ReplicationGroupAlreadyExistsFault = ReplicationGroupAlreadyExistsFault;
|
|
5684
|
-
exports.ReplicationGroupAlreadyExistsFault$ = ReplicationGroupAlreadyExistsFault$;
|
|
5685
|
-
exports.ReplicationGroupAlreadyUnderMigrationFault = ReplicationGroupAlreadyUnderMigrationFault;
|
|
5686
|
-
exports.ReplicationGroupAlreadyUnderMigrationFault$ = ReplicationGroupAlreadyUnderMigrationFault$;
|
|
5687
|
-
exports.ReplicationGroupMessage$ = ReplicationGroupMessage$;
|
|
5688
|
-
exports.ReplicationGroupNotFoundFault = ReplicationGroupNotFoundFault;
|
|
5689
|
-
exports.ReplicationGroupNotFoundFault$ = ReplicationGroupNotFoundFault$;
|
|
5690
|
-
exports.ReplicationGroupNotUnderMigrationFault = ReplicationGroupNotUnderMigrationFault;
|
|
5691
|
-
exports.ReplicationGroupNotUnderMigrationFault$ = ReplicationGroupNotUnderMigrationFault$;
|
|
5692
|
-
exports.ReplicationGroupPendingModifiedValues$ = ReplicationGroupPendingModifiedValues$;
|
|
5693
|
-
exports.ReservedCacheNode$ = ReservedCacheNode$;
|
|
5694
|
-
exports.ReservedCacheNodeAlreadyExistsFault = ReservedCacheNodeAlreadyExistsFault;
|
|
5695
|
-
exports.ReservedCacheNodeAlreadyExistsFault$ = ReservedCacheNodeAlreadyExistsFault$;
|
|
5696
|
-
exports.ReservedCacheNodeMessage$ = ReservedCacheNodeMessage$;
|
|
5697
|
-
exports.ReservedCacheNodeNotFoundFault = ReservedCacheNodeNotFoundFault;
|
|
5698
|
-
exports.ReservedCacheNodeNotFoundFault$ = ReservedCacheNodeNotFoundFault$;
|
|
5699
|
-
exports.ReservedCacheNodeQuotaExceededFault = ReservedCacheNodeQuotaExceededFault;
|
|
5700
|
-
exports.ReservedCacheNodeQuotaExceededFault$ = ReservedCacheNodeQuotaExceededFault$;
|
|
5701
|
-
exports.ReservedCacheNodesOffering$ = ReservedCacheNodesOffering$;
|
|
5702
|
-
exports.ReservedCacheNodesOfferingMessage$ = ReservedCacheNodesOfferingMessage$;
|
|
5703
|
-
exports.ReservedCacheNodesOfferingNotFoundFault = ReservedCacheNodesOfferingNotFoundFault;
|
|
5704
|
-
exports.ReservedCacheNodesOfferingNotFoundFault$ = ReservedCacheNodesOfferingNotFoundFault$;
|
|
5705
|
-
exports.ResetCacheParameterGroup$ = ResetCacheParameterGroup$;
|
|
5706
1749
|
exports.ResetCacheParameterGroupCommand = ResetCacheParameterGroupCommand;
|
|
5707
|
-
exports.ResetCacheParameterGroupMessage$ = ResetCacheParameterGroupMessage$;
|
|
5708
|
-
exports.ReshardingConfiguration$ = ReshardingConfiguration$;
|
|
5709
|
-
exports.ReshardingStatus$ = ReshardingStatus$;
|
|
5710
|
-
exports.RevokeCacheSecurityGroupIngress$ = RevokeCacheSecurityGroupIngress$;
|
|
5711
1750
|
exports.RevokeCacheSecurityGroupIngressCommand = RevokeCacheSecurityGroupIngressCommand;
|
|
5712
|
-
exports.RevokeCacheSecurityGroupIngressMessage$ = RevokeCacheSecurityGroupIngressMessage$;
|
|
5713
|
-
exports.RevokeCacheSecurityGroupIngressResult$ = RevokeCacheSecurityGroupIngressResult$;
|
|
5714
|
-
exports.ScaleConfig$ = ScaleConfig$;
|
|
5715
|
-
exports.SecurityGroupMembership$ = SecurityGroupMembership$;
|
|
5716
|
-
exports.ServerlessCache$ = ServerlessCache$;
|
|
5717
|
-
exports.ServerlessCacheAlreadyExistsFault = ServerlessCacheAlreadyExistsFault;
|
|
5718
|
-
exports.ServerlessCacheAlreadyExistsFault$ = ServerlessCacheAlreadyExistsFault$;
|
|
5719
|
-
exports.ServerlessCacheConfiguration$ = ServerlessCacheConfiguration$;
|
|
5720
|
-
exports.ServerlessCacheNotFoundFault = ServerlessCacheNotFoundFault;
|
|
5721
|
-
exports.ServerlessCacheNotFoundFault$ = ServerlessCacheNotFoundFault$;
|
|
5722
|
-
exports.ServerlessCacheQuotaForCustomerExceededFault = ServerlessCacheQuotaForCustomerExceededFault;
|
|
5723
|
-
exports.ServerlessCacheQuotaForCustomerExceededFault$ = ServerlessCacheQuotaForCustomerExceededFault$;
|
|
5724
|
-
exports.ServerlessCacheSnapshot$ = ServerlessCacheSnapshot$;
|
|
5725
|
-
exports.ServerlessCacheSnapshotAlreadyExistsFault = ServerlessCacheSnapshotAlreadyExistsFault;
|
|
5726
|
-
exports.ServerlessCacheSnapshotAlreadyExistsFault$ = ServerlessCacheSnapshotAlreadyExistsFault$;
|
|
5727
|
-
exports.ServerlessCacheSnapshotNotFoundFault = ServerlessCacheSnapshotNotFoundFault;
|
|
5728
|
-
exports.ServerlessCacheSnapshotNotFoundFault$ = ServerlessCacheSnapshotNotFoundFault$;
|
|
5729
|
-
exports.ServerlessCacheSnapshotQuotaExceededFault = ServerlessCacheSnapshotQuotaExceededFault;
|
|
5730
|
-
exports.ServerlessCacheSnapshotQuotaExceededFault$ = ServerlessCacheSnapshotQuotaExceededFault$;
|
|
5731
|
-
exports.ServiceLinkedRoleNotFoundFault = ServiceLinkedRoleNotFoundFault;
|
|
5732
|
-
exports.ServiceLinkedRoleNotFoundFault$ = ServiceLinkedRoleNotFoundFault$;
|
|
5733
|
-
exports.ServiceUpdate$ = ServiceUpdate$;
|
|
5734
|
-
exports.ServiceUpdateNotFoundFault = ServiceUpdateNotFoundFault;
|
|
5735
|
-
exports.ServiceUpdateNotFoundFault$ = ServiceUpdateNotFoundFault$;
|
|
5736
1751
|
exports.ServiceUpdateSeverity = ServiceUpdateSeverity;
|
|
5737
1752
|
exports.ServiceUpdateStatus = ServiceUpdateStatus;
|
|
5738
1753
|
exports.ServiceUpdateType = ServiceUpdateType;
|
|
5739
|
-
exports.ServiceUpdatesMessage$ = ServiceUpdatesMessage$;
|
|
5740
1754
|
exports.SlaMet = SlaMet;
|
|
5741
|
-
exports.SlotMigration$ = SlotMigration$;
|
|
5742
|
-
exports.Snapshot$ = Snapshot$;
|
|
5743
|
-
exports.SnapshotAlreadyExistsFault = SnapshotAlreadyExistsFault;
|
|
5744
|
-
exports.SnapshotAlreadyExistsFault$ = SnapshotAlreadyExistsFault$;
|
|
5745
|
-
exports.SnapshotFeatureNotSupportedFault = SnapshotFeatureNotSupportedFault;
|
|
5746
|
-
exports.SnapshotFeatureNotSupportedFault$ = SnapshotFeatureNotSupportedFault$;
|
|
5747
|
-
exports.SnapshotNotFoundFault = SnapshotNotFoundFault;
|
|
5748
|
-
exports.SnapshotNotFoundFault$ = SnapshotNotFoundFault$;
|
|
5749
|
-
exports.SnapshotQuotaExceededFault = SnapshotQuotaExceededFault;
|
|
5750
|
-
exports.SnapshotQuotaExceededFault$ = SnapshotQuotaExceededFault$;
|
|
5751
1755
|
exports.SourceType = SourceType;
|
|
5752
|
-
exports.StartMigration$ = StartMigration$;
|
|
5753
1756
|
exports.StartMigrationCommand = StartMigrationCommand;
|
|
5754
|
-
exports.StartMigrationMessage$ = StartMigrationMessage$;
|
|
5755
|
-
exports.StartMigrationResponse$ = StartMigrationResponse$;
|
|
5756
|
-
exports.Subnet$ = Subnet$;
|
|
5757
|
-
exports.SubnetInUse = SubnetInUse;
|
|
5758
|
-
exports.SubnetInUse$ = SubnetInUse$;
|
|
5759
|
-
exports.SubnetNotAllowedFault = SubnetNotAllowedFault;
|
|
5760
|
-
exports.SubnetNotAllowedFault$ = SubnetNotAllowedFault$;
|
|
5761
|
-
exports.SubnetOutpost$ = SubnetOutpost$;
|
|
5762
|
-
exports.Tag$ = Tag$;
|
|
5763
|
-
exports.TagListMessage$ = TagListMessage$;
|
|
5764
|
-
exports.TagNotFoundFault = TagNotFoundFault;
|
|
5765
|
-
exports.TagNotFoundFault$ = TagNotFoundFault$;
|
|
5766
|
-
exports.TagQuotaPerResourceExceeded = TagQuotaPerResourceExceeded;
|
|
5767
|
-
exports.TagQuotaPerResourceExceeded$ = TagQuotaPerResourceExceeded$;
|
|
5768
|
-
exports.TestFailover$ = TestFailover$;
|
|
5769
1757
|
exports.TestFailoverCommand = TestFailoverCommand;
|
|
5770
|
-
exports.TestFailoverMessage$ = TestFailoverMessage$;
|
|
5771
|
-
exports.TestFailoverNotAvailableFault = TestFailoverNotAvailableFault;
|
|
5772
|
-
exports.TestFailoverNotAvailableFault$ = TestFailoverNotAvailableFault$;
|
|
5773
|
-
exports.TestFailoverResult$ = TestFailoverResult$;
|
|
5774
|
-
exports.TestMigration$ = TestMigration$;
|
|
5775
1758
|
exports.TestMigrationCommand = TestMigrationCommand;
|
|
5776
|
-
exports.TestMigrationMessage$ = TestMigrationMessage$;
|
|
5777
|
-
exports.TestMigrationResponse$ = TestMigrationResponse$;
|
|
5778
|
-
exports.TimeRangeFilter$ = TimeRangeFilter$;
|
|
5779
1759
|
exports.TransitEncryptionMode = TransitEncryptionMode;
|
|
5780
|
-
exports.UnprocessedUpdateAction$ = UnprocessedUpdateAction$;
|
|
5781
|
-
exports.UpdateAction$ = UpdateAction$;
|
|
5782
|
-
exports.UpdateActionResultsMessage$ = UpdateActionResultsMessage$;
|
|
5783
1760
|
exports.UpdateActionStatus = UpdateActionStatus;
|
|
5784
|
-
exports.UpdateActionsMessage$ = UpdateActionsMessage$;
|
|
5785
|
-
exports.User$ = User$;
|
|
5786
|
-
exports.UserAlreadyExistsFault = UserAlreadyExistsFault;
|
|
5787
|
-
exports.UserAlreadyExistsFault$ = UserAlreadyExistsFault$;
|
|
5788
|
-
exports.UserGroup$ = UserGroup$;
|
|
5789
|
-
exports.UserGroupAlreadyExistsFault = UserGroupAlreadyExistsFault;
|
|
5790
|
-
exports.UserGroupAlreadyExistsFault$ = UserGroupAlreadyExistsFault$;
|
|
5791
|
-
exports.UserGroupNotFoundFault = UserGroupNotFoundFault;
|
|
5792
|
-
exports.UserGroupNotFoundFault$ = UserGroupNotFoundFault$;
|
|
5793
|
-
exports.UserGroupPendingChanges$ = UserGroupPendingChanges$;
|
|
5794
|
-
exports.UserGroupQuotaExceededFault = UserGroupQuotaExceededFault;
|
|
5795
|
-
exports.UserGroupQuotaExceededFault$ = UserGroupQuotaExceededFault$;
|
|
5796
|
-
exports.UserGroupsUpdateStatus$ = UserGroupsUpdateStatus$;
|
|
5797
|
-
exports.UserNotFoundFault = UserNotFoundFault;
|
|
5798
|
-
exports.UserNotFoundFault$ = UserNotFoundFault$;
|
|
5799
|
-
exports.UserQuotaExceededFault = UserQuotaExceededFault;
|
|
5800
|
-
exports.UserQuotaExceededFault$ = UserQuotaExceededFault$;
|
|
5801
1761
|
exports.paginateDescribeCacheClusters = paginateDescribeCacheClusters;
|
|
5802
1762
|
exports.paginateDescribeCacheEngineVersions = paginateDescribeCacheEngineVersions;
|
|
5803
1763
|
exports.paginateDescribeCacheParameterGroups = paginateDescribeCacheParameterGroups;
|
|
@@ -5825,3 +1785,15 @@ exports.waitUntilCacheClusterAvailable = waitUntilCacheClusterAvailable;
|
|
|
5825
1785
|
exports.waitUntilCacheClusterDeleted = waitUntilCacheClusterDeleted;
|
|
5826
1786
|
exports.waitUntilReplicationGroupAvailable = waitUntilReplicationGroupAvailable;
|
|
5827
1787
|
exports.waitUntilReplicationGroupDeleted = waitUntilReplicationGroupDeleted;
|
|
1788
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1789
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1790
|
+
enumerable: true,
|
|
1791
|
+
get: function () { return schemas_0[k]; }
|
|
1792
|
+
});
|
|
1793
|
+
});
|
|
1794
|
+
Object.keys(errors).forEach(function (k) {
|
|
1795
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1796
|
+
enumerable: true,
|
|
1797
|
+
get: function () { return errors[k]; }
|
|
1798
|
+
});
|
|
1799
|
+
});
|