@aws-sdk/client-elasticache 3.287.0 → 3.289.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-types/commands/AddTagsToResourceCommand.d.ts +35 -0
- package/dist-types/commands/AuthorizeCacheSecurityGroupIngressCommand.d.ts +13 -0
- package/dist-types/commands/CopySnapshotCommand.d.ts +45 -0
- package/dist-types/commands/CreateCacheClusterCommand.d.ts +42 -0
- package/dist-types/commands/CreateCacheParameterGroupCommand.d.ts +22 -0
- package/dist-types/commands/CreateCacheSecurityGroupCommand.d.ts +12 -0
- package/dist-types/commands/CreateCacheSubnetGroupCommand.d.ts +46 -0
- package/dist-types/commands/CreateReplicationGroupCommand.d.ts +93 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +89 -0
- package/dist-types/commands/DeleteCacheClusterCommand.d.ts +40 -0
- package/dist-types/commands/DeleteCacheParameterGroupCommand.d.ts +11 -0
- package/dist-types/commands/DeleteCacheSecurityGroupCommand.d.ts +11 -0
- package/dist-types/commands/DeleteCacheSubnetGroupCommand.d.ts +11 -0
- package/dist-types/commands/DeleteReplicationGroupCommand.d.ts +23 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +43 -0
- package/dist-types/commands/DescribeCacheClustersCommand.d.ts +42 -0
- package/dist-types/commands/DescribeCacheEngineVersionsCommand.d.ts +99 -0
- package/dist-types/commands/DescribeCacheParameterGroupsCommand.d.ts +22 -0
- package/dist-types/commands/DescribeCacheParametersCommand.d.ts +403 -0
- package/dist-types/commands/DescribeCacheSecurityGroupsCommand.d.ts +11 -0
- package/dist-types/commands/DescribeCacheSubnetGroupsCommand.d.ts +49 -0
- package/dist-types/commands/DescribeEngineDefaultParametersCommand.d.ts +614 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +49 -0
- package/dist-types/commands/DescribeReplicationGroupsCommand.d.ts +63 -0
- package/dist-types/commands/DescribeReservedCacheNodesCommand.d.ts +11 -0
- package/dist-types/commands/DescribeReservedCacheNodesOfferingsCommand.d.ts +273 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +46 -0
- package/dist-types/commands/ListAllowedNodeTypeModificationsCommand.d.ts +25 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +25 -0
- package/dist-types/commands/ModifyCacheClusterCommand.d.ts +40 -0
- package/dist-types/commands/ModifyCacheParameterGroupCommand.d.ts +26 -0
- package/dist-types/commands/ModifyCacheSubnetGroupCommand.d.ts +55 -0
- package/dist-types/commands/ModifyReplicationGroupCommand.d.ts +74 -0
- package/dist-types/commands/PurchaseReservedCacheNodesOfferingCommand.d.ts +11 -0
- package/dist-types/commands/RebootCacheClusterCommand.d.ts +44 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +42 -0
- package/dist-types/commands/ResetCacheParameterGroupCommand.d.ts +17 -0
- package/dist-types/commands/RevokeCacheSecurityGroupIngressCommand.d.ts +13 -0
- package/package.json +30 -30
|
@@ -30,6 +30,620 @@ export interface DescribeEngineDefaultParametersCommandOutput extends DescribeEn
|
|
|
30
30
|
* @see {@link DescribeEngineDefaultParametersCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ElastiCacheClientResolvedConfig | config} for ElastiCacheClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @example DescribeEngineDefaultParameters
|
|
34
|
+
* ```javascript
|
|
35
|
+
* // Returns the default engine and system parameter information for the specified cache engine.
|
|
36
|
+
* const input = {
|
|
37
|
+
* "CacheParameterGroupFamily": "redis2.8",
|
|
38
|
+
* "MaxRecords": 25
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DescribeEngineDefaultParametersCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* /* response ==
|
|
43
|
+
* {
|
|
44
|
+
* "EngineDefaults": {
|
|
45
|
+
* "CacheNodeTypeSpecificParameters": [
|
|
46
|
+
* {
|
|
47
|
+
* "AllowedValues": "0-",
|
|
48
|
+
* "CacheNodeTypeSpecificValues": [
|
|
49
|
+
* {
|
|
50
|
+
* "CacheNodeType": "cache.c1.xlarge",
|
|
51
|
+
* "Value": "650117120"
|
|
52
|
+
* },
|
|
53
|
+
* {
|
|
54
|
+
* "CacheNodeType": "cache.m1.large",
|
|
55
|
+
* "Value": "702545920"
|
|
56
|
+
* },
|
|
57
|
+
* {
|
|
58
|
+
* "CacheNodeType": "cache.m1.medium",
|
|
59
|
+
* "Value": "309329920"
|
|
60
|
+
* },
|
|
61
|
+
* {
|
|
62
|
+
* "CacheNodeType": "cache.m1.small",
|
|
63
|
+
* "Value": "94371840"
|
|
64
|
+
* },
|
|
65
|
+
* {
|
|
66
|
+
* "CacheNodeType": "cache.m1.xlarge",
|
|
67
|
+
* "Value": "1488977920"
|
|
68
|
+
* },
|
|
69
|
+
* {
|
|
70
|
+
* "CacheNodeType": "cache.m2.2xlarge",
|
|
71
|
+
* "Value": "3502243840"
|
|
72
|
+
* },
|
|
73
|
+
* {
|
|
74
|
+
* "CacheNodeType": "cache.m2.4xlarge",
|
|
75
|
+
* "Value": "7088373760"
|
|
76
|
+
* },
|
|
77
|
+
* {
|
|
78
|
+
* "CacheNodeType": "cache.m2.xlarge",
|
|
79
|
+
* "Value": "1709178880"
|
|
80
|
+
* },
|
|
81
|
+
* {
|
|
82
|
+
* "CacheNodeType": "cache.m3.2xlarge",
|
|
83
|
+
* "Value": "2998927360"
|
|
84
|
+
* },
|
|
85
|
+
* {
|
|
86
|
+
* "CacheNodeType": "cache.m3.large",
|
|
87
|
+
* "Value": "650117120"
|
|
88
|
+
* },
|
|
89
|
+
* {
|
|
90
|
+
* "CacheNodeType": "cache.m3.medium",
|
|
91
|
+
* "Value": "309329920"
|
|
92
|
+
* },
|
|
93
|
+
* {
|
|
94
|
+
* "CacheNodeType": "cache.m3.xlarge",
|
|
95
|
+
* "Value": "1426063360"
|
|
96
|
+
* },
|
|
97
|
+
* {
|
|
98
|
+
* "CacheNodeType": "cache.m4.10xlarge",
|
|
99
|
+
* "Value": "16604761424"
|
|
100
|
+
* },
|
|
101
|
+
* {
|
|
102
|
+
* "CacheNodeType": "cache.m4.2xlarge",
|
|
103
|
+
* "Value": "3188912636"
|
|
104
|
+
* },
|
|
105
|
+
* {
|
|
106
|
+
* "CacheNodeType": "cache.m4.4xlarge",
|
|
107
|
+
* "Value": "6525729063"
|
|
108
|
+
* },
|
|
109
|
+
* {
|
|
110
|
+
* "CacheNodeType": "cache.m4.large",
|
|
111
|
+
* "Value": "689259315"
|
|
112
|
+
* },
|
|
113
|
+
* {
|
|
114
|
+
* "CacheNodeType": "cache.m4.xlarge",
|
|
115
|
+
* "Value": "1532850176"
|
|
116
|
+
* },
|
|
117
|
+
* {
|
|
118
|
+
* "CacheNodeType": "cache.r3.2xlarge",
|
|
119
|
+
* "Value": "6081740800"
|
|
120
|
+
* },
|
|
121
|
+
* {
|
|
122
|
+
* "CacheNodeType": "cache.r3.4xlarge",
|
|
123
|
+
* "Value": "12268339200"
|
|
124
|
+
* },
|
|
125
|
+
* {
|
|
126
|
+
* "CacheNodeType": "cache.r3.8xlarge",
|
|
127
|
+
* "Value": "24536678400"
|
|
128
|
+
* },
|
|
129
|
+
* {
|
|
130
|
+
* "CacheNodeType": "cache.r3.large",
|
|
131
|
+
* "Value": "1468006400"
|
|
132
|
+
* },
|
|
133
|
+
* {
|
|
134
|
+
* "CacheNodeType": "cache.r3.xlarge",
|
|
135
|
+
* "Value": "3040870400"
|
|
136
|
+
* },
|
|
137
|
+
* {
|
|
138
|
+
* "CacheNodeType": "cache.t1.micro",
|
|
139
|
+
* "Value": "14260633"
|
|
140
|
+
* },
|
|
141
|
+
* {
|
|
142
|
+
* "CacheNodeType": "cache.t2.medium",
|
|
143
|
+
* "Value": "346134937"
|
|
144
|
+
* },
|
|
145
|
+
* {
|
|
146
|
+
* "CacheNodeType": "cache.t2.micro",
|
|
147
|
+
* "Value": "58195968"
|
|
148
|
+
* },
|
|
149
|
+
* {
|
|
150
|
+
* "CacheNodeType": "cache.t2.small",
|
|
151
|
+
* "Value": "166513868"
|
|
152
|
+
* }
|
|
153
|
+
* ],
|
|
154
|
+
* "ChangeType": "immediate",
|
|
155
|
+
* "DataType": "integer",
|
|
156
|
+
* "Description": "Slave client output buffer hard limit in bytes.",
|
|
157
|
+
* "IsModifiable": false,
|
|
158
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
159
|
+
* "ParameterName": "client-output-buffer-limit-slave-hard-limit",
|
|
160
|
+
* "Source": "system"
|
|
161
|
+
* },
|
|
162
|
+
* {
|
|
163
|
+
* "AllowedValues": "0-",
|
|
164
|
+
* "CacheNodeTypeSpecificValues": [
|
|
165
|
+
* {
|
|
166
|
+
* "CacheNodeType": "cache.c1.xlarge",
|
|
167
|
+
* "Value": "650117120"
|
|
168
|
+
* },
|
|
169
|
+
* {
|
|
170
|
+
* "CacheNodeType": "cache.m1.large",
|
|
171
|
+
* "Value": "702545920"
|
|
172
|
+
* },
|
|
173
|
+
* {
|
|
174
|
+
* "CacheNodeType": "cache.m1.medium",
|
|
175
|
+
* "Value": "309329920"
|
|
176
|
+
* },
|
|
177
|
+
* {
|
|
178
|
+
* "CacheNodeType": "cache.m1.small",
|
|
179
|
+
* "Value": "94371840"
|
|
180
|
+
* },
|
|
181
|
+
* {
|
|
182
|
+
* "CacheNodeType": "cache.m1.xlarge",
|
|
183
|
+
* "Value": "1488977920"
|
|
184
|
+
* },
|
|
185
|
+
* {
|
|
186
|
+
* "CacheNodeType": "cache.m2.2xlarge",
|
|
187
|
+
* "Value": "3502243840"
|
|
188
|
+
* },
|
|
189
|
+
* {
|
|
190
|
+
* "CacheNodeType": "cache.m2.4xlarge",
|
|
191
|
+
* "Value": "7088373760"
|
|
192
|
+
* },
|
|
193
|
+
* {
|
|
194
|
+
* "CacheNodeType": "cache.m2.xlarge",
|
|
195
|
+
* "Value": "1709178880"
|
|
196
|
+
* },
|
|
197
|
+
* {
|
|
198
|
+
* "CacheNodeType": "cache.m3.2xlarge",
|
|
199
|
+
* "Value": "2998927360"
|
|
200
|
+
* },
|
|
201
|
+
* {
|
|
202
|
+
* "CacheNodeType": "cache.m3.large",
|
|
203
|
+
* "Value": "650117120"
|
|
204
|
+
* },
|
|
205
|
+
* {
|
|
206
|
+
* "CacheNodeType": "cache.m3.medium",
|
|
207
|
+
* "Value": "309329920"
|
|
208
|
+
* },
|
|
209
|
+
* {
|
|
210
|
+
* "CacheNodeType": "cache.m3.xlarge",
|
|
211
|
+
* "Value": "1426063360"
|
|
212
|
+
* },
|
|
213
|
+
* {
|
|
214
|
+
* "CacheNodeType": "cache.m4.10xlarge",
|
|
215
|
+
* "Value": "16604761424"
|
|
216
|
+
* },
|
|
217
|
+
* {
|
|
218
|
+
* "CacheNodeType": "cache.m4.2xlarge",
|
|
219
|
+
* "Value": "3188912636"
|
|
220
|
+
* },
|
|
221
|
+
* {
|
|
222
|
+
* "CacheNodeType": "cache.m4.4xlarge",
|
|
223
|
+
* "Value": "6525729063"
|
|
224
|
+
* },
|
|
225
|
+
* {
|
|
226
|
+
* "CacheNodeType": "cache.m4.large",
|
|
227
|
+
* "Value": "689259315"
|
|
228
|
+
* },
|
|
229
|
+
* {
|
|
230
|
+
* "CacheNodeType": "cache.m4.xlarge",
|
|
231
|
+
* "Value": "1532850176"
|
|
232
|
+
* },
|
|
233
|
+
* {
|
|
234
|
+
* "CacheNodeType": "cache.r3.2xlarge",
|
|
235
|
+
* "Value": "6081740800"
|
|
236
|
+
* },
|
|
237
|
+
* {
|
|
238
|
+
* "CacheNodeType": "cache.r3.4xlarge",
|
|
239
|
+
* "Value": "12268339200"
|
|
240
|
+
* },
|
|
241
|
+
* {
|
|
242
|
+
* "CacheNodeType": "cache.r3.8xlarge",
|
|
243
|
+
* "Value": "24536678400"
|
|
244
|
+
* },
|
|
245
|
+
* {
|
|
246
|
+
* "CacheNodeType": "cache.r3.large",
|
|
247
|
+
* "Value": "1468006400"
|
|
248
|
+
* },
|
|
249
|
+
* {
|
|
250
|
+
* "CacheNodeType": "cache.r3.xlarge",
|
|
251
|
+
* "Value": "3040870400"
|
|
252
|
+
* },
|
|
253
|
+
* {
|
|
254
|
+
* "CacheNodeType": "cache.t1.micro",
|
|
255
|
+
* "Value": "14260633"
|
|
256
|
+
* },
|
|
257
|
+
* {
|
|
258
|
+
* "CacheNodeType": "cache.t2.medium",
|
|
259
|
+
* "Value": "346134937"
|
|
260
|
+
* },
|
|
261
|
+
* {
|
|
262
|
+
* "CacheNodeType": "cache.t2.micro",
|
|
263
|
+
* "Value": "58195968"
|
|
264
|
+
* },
|
|
265
|
+
* {
|
|
266
|
+
* "CacheNodeType": "cache.t2.small",
|
|
267
|
+
* "Value": "166513868"
|
|
268
|
+
* }
|
|
269
|
+
* ],
|
|
270
|
+
* "ChangeType": "immediate",
|
|
271
|
+
* "DataType": "integer",
|
|
272
|
+
* "Description": "Slave client output buffer soft limit in bytes.",
|
|
273
|
+
* "IsModifiable": false,
|
|
274
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
275
|
+
* "ParameterName": "client-output-buffer-limit-slave-soft-limit",
|
|
276
|
+
* "Source": "system"
|
|
277
|
+
* },
|
|
278
|
+
* {
|
|
279
|
+
* "AllowedValues": "0-",
|
|
280
|
+
* "CacheNodeTypeSpecificValues": [
|
|
281
|
+
* {
|
|
282
|
+
* "CacheNodeType": "cache.c1.xlarge",
|
|
283
|
+
* "Value": "6501171200"
|
|
284
|
+
* },
|
|
285
|
+
* {
|
|
286
|
+
* "CacheNodeType": "cache.m1.large",
|
|
287
|
+
* "Value": "7025459200"
|
|
288
|
+
* },
|
|
289
|
+
* {
|
|
290
|
+
* "CacheNodeType": "cache.m1.medium",
|
|
291
|
+
* "Value": "3093299200"
|
|
292
|
+
* },
|
|
293
|
+
* {
|
|
294
|
+
* "CacheNodeType": "cache.m1.small",
|
|
295
|
+
* "Value": "943718400"
|
|
296
|
+
* },
|
|
297
|
+
* {
|
|
298
|
+
* "CacheNodeType": "cache.m1.xlarge",
|
|
299
|
+
* "Value": "14889779200"
|
|
300
|
+
* },
|
|
301
|
+
* {
|
|
302
|
+
* "CacheNodeType": "cache.m2.2xlarge",
|
|
303
|
+
* "Value": "35022438400"
|
|
304
|
+
* },
|
|
305
|
+
* {
|
|
306
|
+
* "CacheNodeType": "cache.m2.4xlarge",
|
|
307
|
+
* "Value": "70883737600"
|
|
308
|
+
* },
|
|
309
|
+
* {
|
|
310
|
+
* "CacheNodeType": "cache.m2.xlarge",
|
|
311
|
+
* "Value": "17091788800"
|
|
312
|
+
* },
|
|
313
|
+
* {
|
|
314
|
+
* "CacheNodeType": "cache.m3.2xlarge",
|
|
315
|
+
* "Value": "29989273600"
|
|
316
|
+
* },
|
|
317
|
+
* {
|
|
318
|
+
* "CacheNodeType": "cache.m3.large",
|
|
319
|
+
* "Value": "6501171200"
|
|
320
|
+
* },
|
|
321
|
+
* {
|
|
322
|
+
* "CacheNodeType": "cache.m3.medium",
|
|
323
|
+
* "Value": "2988441600"
|
|
324
|
+
* },
|
|
325
|
+
* {
|
|
326
|
+
* "CacheNodeType": "cache.m3.xlarge",
|
|
327
|
+
* "Value": "14260633600"
|
|
328
|
+
* },
|
|
329
|
+
* {
|
|
330
|
+
* "CacheNodeType": "cache.m4.10xlarge",
|
|
331
|
+
* "Value": "166047614239"
|
|
332
|
+
* },
|
|
333
|
+
* {
|
|
334
|
+
* "CacheNodeType": "cache.m4.2xlarge",
|
|
335
|
+
* "Value": "31889126359"
|
|
336
|
+
* },
|
|
337
|
+
* {
|
|
338
|
+
* "CacheNodeType": "cache.m4.4xlarge",
|
|
339
|
+
* "Value": "65257290629"
|
|
340
|
+
* },
|
|
341
|
+
* {
|
|
342
|
+
* "CacheNodeType": "cache.m4.large",
|
|
343
|
+
* "Value": "6892593152"
|
|
344
|
+
* },
|
|
345
|
+
* {
|
|
346
|
+
* "CacheNodeType": "cache.m4.xlarge",
|
|
347
|
+
* "Value": "15328501760"
|
|
348
|
+
* },
|
|
349
|
+
* {
|
|
350
|
+
* "CacheNodeType": "cache.r3.2xlarge",
|
|
351
|
+
* "Value": "62495129600"
|
|
352
|
+
* },
|
|
353
|
+
* {
|
|
354
|
+
* "CacheNodeType": "cache.r3.4xlarge",
|
|
355
|
+
* "Value": "126458265600"
|
|
356
|
+
* },
|
|
357
|
+
* {
|
|
358
|
+
* "CacheNodeType": "cache.r3.8xlarge",
|
|
359
|
+
* "Value": "254384537600"
|
|
360
|
+
* },
|
|
361
|
+
* {
|
|
362
|
+
* "CacheNodeType": "cache.r3.large",
|
|
363
|
+
* "Value": "14470348800"
|
|
364
|
+
* },
|
|
365
|
+
* {
|
|
366
|
+
* "CacheNodeType": "cache.r3.xlarge",
|
|
367
|
+
* "Value": "30513561600"
|
|
368
|
+
* },
|
|
369
|
+
* {
|
|
370
|
+
* "CacheNodeType": "cache.t1.micro",
|
|
371
|
+
* "Value": "142606336"
|
|
372
|
+
* },
|
|
373
|
+
* {
|
|
374
|
+
* "CacheNodeType": "cache.t2.medium",
|
|
375
|
+
* "Value": "3461349376"
|
|
376
|
+
* },
|
|
377
|
+
* {
|
|
378
|
+
* "CacheNodeType": "cache.t2.micro",
|
|
379
|
+
* "Value": "581959680"
|
|
380
|
+
* },
|
|
381
|
+
* {
|
|
382
|
+
* "CacheNodeType": "cache.t2.small",
|
|
383
|
+
* "Value": "1665138688"
|
|
384
|
+
* }
|
|
385
|
+
* ],
|
|
386
|
+
* "ChangeType": "immediate",
|
|
387
|
+
* "DataType": "integer",
|
|
388
|
+
* "Description": "The maximum configurable amount of memory to use to store items, in bytes.",
|
|
389
|
+
* "IsModifiable": false,
|
|
390
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
391
|
+
* "ParameterName": "maxmemory",
|
|
392
|
+
* "Source": "system"
|
|
393
|
+
* }
|
|
394
|
+
* ],
|
|
395
|
+
* "CacheParameterGroupFamily": "redis2.8",
|
|
396
|
+
* "Marker": "bWluLXNsYXZlcy10by13cml0ZQ==",
|
|
397
|
+
* "Parameters": [
|
|
398
|
+
* {
|
|
399
|
+
* "AllowedValues": "yes,no",
|
|
400
|
+
* "ChangeType": "requires-reboot",
|
|
401
|
+
* "DataType": "string",
|
|
402
|
+
* "Description": "Apply rehashing or not.",
|
|
403
|
+
* "IsModifiable": true,
|
|
404
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
405
|
+
* "ParameterName": "activerehashing",
|
|
406
|
+
* "ParameterValue": "yes",
|
|
407
|
+
* "Source": "system"
|
|
408
|
+
* },
|
|
409
|
+
* {
|
|
410
|
+
* "AllowedValues": "always,everysec,no",
|
|
411
|
+
* "ChangeType": "immediate",
|
|
412
|
+
* "DataType": "string",
|
|
413
|
+
* "Description": "fsync policy for AOF persistence",
|
|
414
|
+
* "IsModifiable": true,
|
|
415
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
416
|
+
* "ParameterName": "appendfsync",
|
|
417
|
+
* "ParameterValue": "everysec",
|
|
418
|
+
* "Source": "system"
|
|
419
|
+
* },
|
|
420
|
+
* {
|
|
421
|
+
* "AllowedValues": "yes,no",
|
|
422
|
+
* "ChangeType": "immediate",
|
|
423
|
+
* "DataType": "string",
|
|
424
|
+
* "Description": "Enable Redis persistence.",
|
|
425
|
+
* "IsModifiable": true,
|
|
426
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
427
|
+
* "ParameterName": "appendonly",
|
|
428
|
+
* "ParameterValue": "no",
|
|
429
|
+
* "Source": "system"
|
|
430
|
+
* },
|
|
431
|
+
* {
|
|
432
|
+
* "AllowedValues": "0-",
|
|
433
|
+
* "ChangeType": "immediate",
|
|
434
|
+
* "DataType": "integer",
|
|
435
|
+
* "Description": "Normal client output buffer hard limit in bytes.",
|
|
436
|
+
* "IsModifiable": true,
|
|
437
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
438
|
+
* "ParameterName": "client-output-buffer-limit-normal-hard-limit",
|
|
439
|
+
* "ParameterValue": "0",
|
|
440
|
+
* "Source": "system"
|
|
441
|
+
* },
|
|
442
|
+
* {
|
|
443
|
+
* "AllowedValues": "0-",
|
|
444
|
+
* "ChangeType": "immediate",
|
|
445
|
+
* "DataType": "integer",
|
|
446
|
+
* "Description": "Normal client output buffer soft limit in bytes.",
|
|
447
|
+
* "IsModifiable": true,
|
|
448
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
449
|
+
* "ParameterName": "client-output-buffer-limit-normal-soft-limit",
|
|
450
|
+
* "ParameterValue": "0",
|
|
451
|
+
* "Source": "system"
|
|
452
|
+
* },
|
|
453
|
+
* {
|
|
454
|
+
* "AllowedValues": "0-",
|
|
455
|
+
* "ChangeType": "immediate",
|
|
456
|
+
* "DataType": "integer",
|
|
457
|
+
* "Description": "Normal client output buffer soft limit in seconds.",
|
|
458
|
+
* "IsModifiable": true,
|
|
459
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
460
|
+
* "ParameterName": "client-output-buffer-limit-normal-soft-seconds",
|
|
461
|
+
* "ParameterValue": "0",
|
|
462
|
+
* "Source": "system"
|
|
463
|
+
* },
|
|
464
|
+
* {
|
|
465
|
+
* "AllowedValues": "0-",
|
|
466
|
+
* "ChangeType": "immediate",
|
|
467
|
+
* "DataType": "integer",
|
|
468
|
+
* "Description": "Pubsub client output buffer hard limit in bytes.",
|
|
469
|
+
* "IsModifiable": true,
|
|
470
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
471
|
+
* "ParameterName": "client-output-buffer-limit-pubsub-hard-limit",
|
|
472
|
+
* "ParameterValue": "33554432",
|
|
473
|
+
* "Source": "system"
|
|
474
|
+
* },
|
|
475
|
+
* {
|
|
476
|
+
* "AllowedValues": "0-",
|
|
477
|
+
* "ChangeType": "immediate",
|
|
478
|
+
* "DataType": "integer",
|
|
479
|
+
* "Description": "Pubsub client output buffer soft limit in bytes.",
|
|
480
|
+
* "IsModifiable": true,
|
|
481
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
482
|
+
* "ParameterName": "client-output-buffer-limit-pubsub-soft-limit",
|
|
483
|
+
* "ParameterValue": "8388608",
|
|
484
|
+
* "Source": "system"
|
|
485
|
+
* },
|
|
486
|
+
* {
|
|
487
|
+
* "AllowedValues": "0-",
|
|
488
|
+
* "ChangeType": "immediate",
|
|
489
|
+
* "DataType": "integer",
|
|
490
|
+
* "Description": "Pubsub client output buffer soft limit in seconds.",
|
|
491
|
+
* "IsModifiable": true,
|
|
492
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
493
|
+
* "ParameterName": "client-output-buffer-limit-pubsub-soft-seconds",
|
|
494
|
+
* "ParameterValue": "60",
|
|
495
|
+
* "Source": "system"
|
|
496
|
+
* },
|
|
497
|
+
* {
|
|
498
|
+
* "AllowedValues": "0-",
|
|
499
|
+
* "ChangeType": "immediate",
|
|
500
|
+
* "DataType": "integer",
|
|
501
|
+
* "Description": "Slave client output buffer soft limit in seconds.",
|
|
502
|
+
* "IsModifiable": false,
|
|
503
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
504
|
+
* "ParameterName": "client-output-buffer-limit-slave-soft-seconds",
|
|
505
|
+
* "ParameterValue": "60",
|
|
506
|
+
* "Source": "system"
|
|
507
|
+
* },
|
|
508
|
+
* {
|
|
509
|
+
* "AllowedValues": "yes,no",
|
|
510
|
+
* "ChangeType": "immediate",
|
|
511
|
+
* "DataType": "string",
|
|
512
|
+
* "Description": "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.",
|
|
513
|
+
* "IsModifiable": true,
|
|
514
|
+
* "MinimumEngineVersion": "2.8.23",
|
|
515
|
+
* "ParameterName": "close-on-slave-write",
|
|
516
|
+
* "ParameterValue": "yes",
|
|
517
|
+
* "Source": "system"
|
|
518
|
+
* },
|
|
519
|
+
* {
|
|
520
|
+
* "AllowedValues": "1-1200000",
|
|
521
|
+
* "ChangeType": "requires-reboot",
|
|
522
|
+
* "DataType": "integer",
|
|
523
|
+
* "Description": "Set the number of databases.",
|
|
524
|
+
* "IsModifiable": true,
|
|
525
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
526
|
+
* "ParameterName": "databases",
|
|
527
|
+
* "ParameterValue": "16",
|
|
528
|
+
* "Source": "system"
|
|
529
|
+
* },
|
|
530
|
+
* {
|
|
531
|
+
* "AllowedValues": "0-",
|
|
532
|
+
* "ChangeType": "immediate",
|
|
533
|
+
* "DataType": "integer",
|
|
534
|
+
* "Description": "The maximum number of hash entries in order for the dataset to be compressed.",
|
|
535
|
+
* "IsModifiable": true,
|
|
536
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
537
|
+
* "ParameterName": "hash-max-ziplist-entries",
|
|
538
|
+
* "ParameterValue": "512",
|
|
539
|
+
* "Source": "system"
|
|
540
|
+
* },
|
|
541
|
+
* {
|
|
542
|
+
* "AllowedValues": "0-",
|
|
543
|
+
* "ChangeType": "immediate",
|
|
544
|
+
* "DataType": "integer",
|
|
545
|
+
* "Description": "The threshold of biggest hash entries in order for the dataset to be compressed.",
|
|
546
|
+
* "IsModifiable": true,
|
|
547
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
548
|
+
* "ParameterName": "hash-max-ziplist-value",
|
|
549
|
+
* "ParameterValue": "64",
|
|
550
|
+
* "Source": "system"
|
|
551
|
+
* },
|
|
552
|
+
* {
|
|
553
|
+
* "AllowedValues": "0-",
|
|
554
|
+
* "ChangeType": "immediate",
|
|
555
|
+
* "DataType": "integer",
|
|
556
|
+
* "Description": "The maximum number of list entries in order for the dataset to be compressed.",
|
|
557
|
+
* "IsModifiable": true,
|
|
558
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
559
|
+
* "ParameterName": "list-max-ziplist-entries",
|
|
560
|
+
* "ParameterValue": "512",
|
|
561
|
+
* "Source": "system"
|
|
562
|
+
* },
|
|
563
|
+
* {
|
|
564
|
+
* "AllowedValues": "0-",
|
|
565
|
+
* "ChangeType": "immediate",
|
|
566
|
+
* "DataType": "integer",
|
|
567
|
+
* "Description": "The threshold of biggest list entries in order for the dataset to be compressed.",
|
|
568
|
+
* "IsModifiable": true,
|
|
569
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
570
|
+
* "ParameterName": "list-max-ziplist-value",
|
|
571
|
+
* "ParameterValue": "64",
|
|
572
|
+
* "Source": "system"
|
|
573
|
+
* },
|
|
574
|
+
* {
|
|
575
|
+
* "AllowedValues": "5000",
|
|
576
|
+
* "ChangeType": "immediate",
|
|
577
|
+
* "DataType": "integer",
|
|
578
|
+
* "Description": "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.",
|
|
579
|
+
* "IsModifiable": false,
|
|
580
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
581
|
+
* "ParameterName": "lua-time-limit",
|
|
582
|
+
* "ParameterValue": "5000",
|
|
583
|
+
* "Source": "system"
|
|
584
|
+
* },
|
|
585
|
+
* {
|
|
586
|
+
* "AllowedValues": "1-65000",
|
|
587
|
+
* "ChangeType": "requires-reboot",
|
|
588
|
+
* "DataType": "integer",
|
|
589
|
+
* "Description": "The maximum number of Redis clients.",
|
|
590
|
+
* "IsModifiable": false,
|
|
591
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
592
|
+
* "ParameterName": "maxclients",
|
|
593
|
+
* "ParameterValue": "65000",
|
|
594
|
+
* "Source": "system"
|
|
595
|
+
* },
|
|
596
|
+
* {
|
|
597
|
+
* "AllowedValues": "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction",
|
|
598
|
+
* "ChangeType": "immediate",
|
|
599
|
+
* "DataType": "string",
|
|
600
|
+
* "Description": "Max memory policy.",
|
|
601
|
+
* "IsModifiable": true,
|
|
602
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
603
|
+
* "ParameterName": "maxmemory-policy",
|
|
604
|
+
* "ParameterValue": "volatile-lru",
|
|
605
|
+
* "Source": "system"
|
|
606
|
+
* },
|
|
607
|
+
* {
|
|
608
|
+
* "AllowedValues": "1-",
|
|
609
|
+
* "ChangeType": "immediate",
|
|
610
|
+
* "DataType": "integer",
|
|
611
|
+
* "Description": "Max memory samples.",
|
|
612
|
+
* "IsModifiable": true,
|
|
613
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
614
|
+
* "ParameterName": "maxmemory-samples",
|
|
615
|
+
* "ParameterValue": "3",
|
|
616
|
+
* "Source": "system"
|
|
617
|
+
* },
|
|
618
|
+
* {
|
|
619
|
+
* "AllowedValues": "0-",
|
|
620
|
+
* "ChangeType": "immediate",
|
|
621
|
+
* "DataType": "integer",
|
|
622
|
+
* "Description": "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.",
|
|
623
|
+
* "IsModifiable": true,
|
|
624
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
625
|
+
* "ParameterName": "min-slaves-max-lag",
|
|
626
|
+
* "ParameterValue": "10",
|
|
627
|
+
* "Source": "system"
|
|
628
|
+
* },
|
|
629
|
+
* {
|
|
630
|
+
* "AllowedValues": "0-",
|
|
631
|
+
* "ChangeType": "immediate",
|
|
632
|
+
* "DataType": "integer",
|
|
633
|
+
* "Description": "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.",
|
|
634
|
+
* "IsModifiable": true,
|
|
635
|
+
* "MinimumEngineVersion": "2.8.6",
|
|
636
|
+
* "ParameterName": "min-slaves-to-write",
|
|
637
|
+
* "ParameterValue": "0",
|
|
638
|
+
* "Source": "system"
|
|
639
|
+
* }
|
|
640
|
+
* ]
|
|
641
|
+
* }
|
|
642
|
+
* }
|
|
643
|
+
* *\/
|
|
644
|
+
* // example id: describeenginedefaultparameters-1481738057686
|
|
645
|
+
* ```
|
|
646
|
+
*
|
|
33
647
|
*/
|
|
34
648
|
export declare class DescribeEngineDefaultParametersCommand extends $Command<DescribeEngineDefaultParametersCommandInput, DescribeEngineDefaultParametersCommandOutput, ElastiCacheClientResolvedConfig> {
|
|
35
649
|
readonly input: DescribeEngineDefaultParametersCommandInput;
|
|
@@ -34,6 +34,55 @@ export interface DescribeEventsCommandOutput extends EventsMessage, __MetadataBe
|
|
|
34
34
|
* @see {@link DescribeEventsCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link ElastiCacheClientResolvedConfig | config} for ElastiCacheClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @example DescribeEvents
|
|
38
|
+
* ```javascript
|
|
39
|
+
* // Describes all the cache-cluster events for the past 120 minutes.
|
|
40
|
+
* const input = {
|
|
41
|
+
* "Duration": 360,
|
|
42
|
+
* "SourceType": "cache-cluster"
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DescribeEventsCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* /* response ==
|
|
47
|
+
* {
|
|
48
|
+
* "Events": [
|
|
49
|
+
* {
|
|
50
|
+
* "Date": "2016-12-22T16:27:56.088Z",
|
|
51
|
+
* "Message": "Added cache node 0001 in availability zone us-east-1e",
|
|
52
|
+
* "SourceIdentifier": "redis-cluster",
|
|
53
|
+
* "SourceType": "cache-cluster"
|
|
54
|
+
* },
|
|
55
|
+
* {
|
|
56
|
+
* "Date": "2016-12-22T16:27:56.078Z",
|
|
57
|
+
* "Message": "Cache cluster created",
|
|
58
|
+
* "SourceIdentifier": "redis-cluster",
|
|
59
|
+
* "SourceType": "cache-cluster"
|
|
60
|
+
* },
|
|
61
|
+
* {
|
|
62
|
+
* "Date": "2016-12-22T16:05:17.326Z",
|
|
63
|
+
* "Message": "Added cache node 0002 in availability zone us-east-1c",
|
|
64
|
+
* "SourceIdentifier": "my-memcached2",
|
|
65
|
+
* "SourceType": "cache-cluster"
|
|
66
|
+
* },
|
|
67
|
+
* {
|
|
68
|
+
* "Date": "2016-12-22T16:05:17.323Z",
|
|
69
|
+
* "Message": "Added cache node 0001 in availability zone us-east-1e",
|
|
70
|
+
* "SourceIdentifier": "my-memcached2",
|
|
71
|
+
* "SourceType": "cache-cluster"
|
|
72
|
+
* },
|
|
73
|
+
* {
|
|
74
|
+
* "Date": "2016-12-22T16:05:17.314Z",
|
|
75
|
+
* "Message": "Cache cluster created",
|
|
76
|
+
* "SourceIdentifier": "my-memcached2",
|
|
77
|
+
* "SourceType": "cache-cluster"
|
|
78
|
+
* }
|
|
79
|
+
* ],
|
|
80
|
+
* "Marker": ""
|
|
81
|
+
* }
|
|
82
|
+
* *\/
|
|
83
|
+
* // example id: describeevents-1481843894757
|
|
84
|
+
* ```
|
|
85
|
+
*
|
|
37
86
|
*/
|
|
38
87
|
export declare class DescribeEventsCommand extends $Command<DescribeEventsCommandInput, DescribeEventsCommandOutput, ElastiCacheClientResolvedConfig> {
|
|
39
88
|
readonly input: DescribeEventsCommandInput;
|