aws-sdk 2.637.0 → 2.641.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +23 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +437 -73
  4. package/apis/cognito-idp-2016-04-18.min.json +115 -112
  5. package/apis/ecs-2014-11-13.min.json +6 -0
  6. package/apis/elasticache-2015-02-02.min.json +424 -95
  7. package/apis/elasticache-2015-02-02.paginators.json +6 -0
  8. package/apis/iot-2015-05-28.min.json +111 -100
  9. package/apis/lex-models-2017-04-19.min.json +116 -1
  10. package/apis/mediaconvert-2017-08-29.min.json +121 -62
  11. package/apis/redshift-2012-12-01.min.json +112 -60
  12. package/apis/s3control-2018-08-20.min.json +100 -4
  13. package/apis/securityhub-2018-10-26.min.json +198 -155
  14. package/apis/ssm-2014-11-06.min.json +182 -176
  15. package/buildspec.yml +22 -0
  16. package/clients/apigatewayv2.d.ts +378 -45
  17. package/clients/appconfig.d.ts +6 -6
  18. package/clients/cognitoidentityserviceprovider.d.ts +10 -6
  19. package/clients/ec2.d.ts +1 -1
  20. package/clients/ecs.d.ts +15 -7
  21. package/clients/efs.d.ts +3 -3
  22. package/clients/elasticache.d.ts +390 -15
  23. package/clients/iot.d.ts +18 -3
  24. package/clients/lexmodelbuildingservice.d.ts +99 -0
  25. package/clients/mediaconvert.d.ts +73 -3
  26. package/clients/redshift.d.ts +44 -2
  27. package/clients/s3control.d.ts +72 -0
  28. package/clients/securityhub.d.ts +85 -4
  29. package/clients/ssm.d.ts +15 -4
  30. package/dist/aws-sdk-core-react-native.js +2 -2
  31. package/dist/aws-sdk-react-native.js +14 -14
  32. package/dist/aws-sdk.js +1076 -548
  33. package/dist/aws-sdk.min.js +63 -63
  34. package/lib/core.js +1 -1
  35. package/lib/event_listeners.js +1 -1
  36. package/package.json +1 -1
@@ -93,11 +93,19 @@ declare class ElastiCache extends Service {
93
93
  */
94
94
  createCacheSubnetGroup(callback?: (err: AWSError, data: ElastiCache.Types.CreateCacheSubnetGroupResult) => void): Request<ElastiCache.Types.CreateCacheSubnetGroupResult, AWSError>;
95
95
  /**
96
- * Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis (cluster mode enabled) replication group is a collection of 1 to 90 node groups (shards). Each node group (shard) has one read/write primary node and up to 5 read-only replica nodes. Writes to the primary are asynchronously propagated to the replicas. Redis (cluster mode enabled) replication groups partition the data across node groups (shards). When a Redis (cluster mode disabled) replication group has been successfully created, you can add one or more read replicas to it, up to a total of 5 read replicas. You cannot alter a Redis (cluster mode enabled) replication group after it has been created. However, if you need to increase or decrease the number of node groups (console: shards), you can avail yourself of ElastiCache for Redis' enhanced backup and restore. For more information, see Restoring From a Backup with Cluster Resizing in the ElastiCache User Guide. This operation is valid for Redis only.
96
+ * Global Datastore for Redis offers fully managed, fast, reliable and secure cross-region replication. Using Global Datastore for Redis, you can create cross-region read replica clusters for ElastiCache for Redis to enable low-latency reads and disaster recovery across regions. For more information, see Replication Across Regions Using Global Datastore. The GlobalReplicationGroupId is the name of the Global Datastore. The PrimaryReplicationGroupId represents the name of the primary cluster that accepts writes and will replicate updates to the secondary cluster.
97
+ */
98
+ createGlobalReplicationGroup(params: ElastiCache.Types.CreateGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.CreateGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.CreateGlobalReplicationGroupResult, AWSError>;
99
+ /**
100
+ * Global Datastore for Redis offers fully managed, fast, reliable and secure cross-region replication. Using Global Datastore for Redis, you can create cross-region read replica clusters for ElastiCache for Redis to enable low-latency reads and disaster recovery across regions. For more information, see Replication Across Regions Using Global Datastore. The GlobalReplicationGroupId is the name of the Global Datastore. The PrimaryReplicationGroupId represents the name of the primary cluster that accepts writes and will replicate updates to the secondary cluster.
101
+ */
102
+ createGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.CreateGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.CreateGlobalReplicationGroupResult, AWSError>;
103
+ /**
104
+ * Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. This API can be used to create a standalone regional replication group or a secondary replication group associated with a Global Datastore. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis (cluster mode enabled) replication group is a collection of 1 to 90 node groups (shards). Each node group (shard) has one read/write primary node and up to 5 read-only replica nodes. Writes to the primary are asynchronously propagated to the replicas. Redis (cluster mode enabled) replication groups partition the data across node groups (shards). When a Redis (cluster mode disabled) replication group has been successfully created, you can add one or more read replicas to it, up to a total of 5 read replicas. You cannot alter a Redis (cluster mode enabled) replication group after it has been created. However, if you need to increase or decrease the number of node groups (console: shards), you can avail yourself of ElastiCache for Redis' enhanced backup and restore. For more information, see Restoring From a Backup with Cluster Resizing in the ElastiCache User Guide. This operation is valid for Redis only.
97
105
  */
98
106
  createReplicationGroup(params: ElastiCache.Types.CreateReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.CreateReplicationGroupResult) => void): Request<ElastiCache.Types.CreateReplicationGroupResult, AWSError>;
99
107
  /**
100
- * Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis (cluster mode enabled) replication group is a collection of 1 to 90 node groups (shards). Each node group (shard) has one read/write primary node and up to 5 read-only replica nodes. Writes to the primary are asynchronously propagated to the replicas. Redis (cluster mode enabled) replication groups partition the data across node groups (shards). When a Redis (cluster mode disabled) replication group has been successfully created, you can add one or more read replicas to it, up to a total of 5 read replicas. You cannot alter a Redis (cluster mode enabled) replication group after it has been created. However, if you need to increase or decrease the number of node groups (console: shards), you can avail yourself of ElastiCache for Redis' enhanced backup and restore. For more information, see Restoring From a Backup with Cluster Resizing in the ElastiCache User Guide. This operation is valid for Redis only.
108
+ * Creates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group. This API can be used to create a standalone regional replication group or a secondary replication group associated with a Global Datastore. A Redis (cluster mode disabled) replication group is a collection of clusters, where one of the clusters is a read/write primary and the others are read-only replicas. Writes to the primary are asynchronously propagated to the replicas. A Redis (cluster mode enabled) replication group is a collection of 1 to 90 node groups (shards). Each node group (shard) has one read/write primary node and up to 5 read-only replica nodes. Writes to the primary are asynchronously propagated to the replicas. Redis (cluster mode enabled) replication groups partition the data across node groups (shards). When a Redis (cluster mode disabled) replication group has been successfully created, you can add one or more read replicas to it, up to a total of 5 read replicas. You cannot alter a Redis (cluster mode enabled) replication group after it has been created. However, if you need to increase or decrease the number of node groups (console: shards), you can avail yourself of ElastiCache for Redis' enhanced backup and restore. For more information, see Restoring From a Backup with Cluster Resizing in the ElastiCache User Guide. This operation is valid for Redis only.
101
109
  */
102
110
  createReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.CreateReplicationGroupResult) => void): Request<ElastiCache.Types.CreateReplicationGroupResult, AWSError>;
103
111
  /**
@@ -109,11 +117,19 @@ declare class ElastiCache extends Service {
109
117
  */
110
118
  createSnapshot(callback?: (err: AWSError, data: ElastiCache.Types.CreateSnapshotResult) => void): Request<ElastiCache.Types.CreateSnapshotResult, AWSError>;
111
119
  /**
112
- * Dynamically decreases the number of replics in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group. This operation is performed with no cluster down time.
120
+ * Decreases the number of node groups in a Global Datastore
121
+ */
122
+ decreaseNodeGroupsInGlobalReplicationGroup(params: ElastiCache.Types.DecreaseNodeGroupsInGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.DecreaseNodeGroupsInGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.DecreaseNodeGroupsInGlobalReplicationGroupResult, AWSError>;
123
+ /**
124
+ * Decreases the number of node groups in a Global Datastore
125
+ */
126
+ decreaseNodeGroupsInGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.DecreaseNodeGroupsInGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.DecreaseNodeGroupsInGlobalReplicationGroupResult, AWSError>;
127
+ /**
128
+ * Dynamically decreases the number of replicas in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group. This operation is performed with no cluster down time.
113
129
  */
114
130
  decreaseReplicaCount(params: ElastiCache.Types.DecreaseReplicaCountMessage, callback?: (err: AWSError, data: ElastiCache.Types.DecreaseReplicaCountResult) => void): Request<ElastiCache.Types.DecreaseReplicaCountResult, AWSError>;
115
131
  /**
116
- * Dynamically decreases the number of replics in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group. This operation is performed with no cluster down time.
132
+ * Dynamically decreases the number of replicas in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group. This operation is performed with no cluster down time.
117
133
  */
118
134
  decreaseReplicaCount(callback?: (err: AWSError, data: ElastiCache.Types.DecreaseReplicaCountResult) => void): Request<ElastiCache.Types.DecreaseReplicaCountResult, AWSError>;
119
135
  /**
@@ -148,6 +164,14 @@ declare class ElastiCache extends Service {
148
164
  * Deletes a cache subnet group. You cannot delete a cache subnet group if it is associated with any clusters.
149
165
  */
150
166
  deleteCacheSubnetGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
167
+ /**
168
+ * Deleting a Global Datastore is a two-step process: First, you must DisassociateGlobalReplicationGroup to remove the secondary clusters in the Global Datastore. Once the Global Datastore contains only the primary cluster, you can use DeleteGlobalReplicationGroup API to delete the Global Datastore while retainining the primary cluster using Retain…= true. Since the Global Datastore has only a primary cluster, you can delete the Global Datastore while retaining the primary by setting RetainPrimaryCluster=true. When you receive a successful response from this operation, Amazon ElastiCache immediately begins deleting the selected resources; you cannot cancel or revert this operation. This operation is valid for Redis only.
169
+ */
170
+ deleteGlobalReplicationGroup(params: ElastiCache.Types.DeleteGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.DeleteGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.DeleteGlobalReplicationGroupResult, AWSError>;
171
+ /**
172
+ * Deleting a Global Datastore is a two-step process: First, you must DisassociateGlobalReplicationGroup to remove the secondary clusters in the Global Datastore. Once the Global Datastore contains only the primary cluster, you can use DeleteGlobalReplicationGroup API to delete the Global Datastore while retainining the primary cluster using Retain…= true. Since the Global Datastore has only a primary cluster, you can delete the Global Datastore while retaining the primary by setting RetainPrimaryCluster=true. When you receive a successful response from this operation, Amazon ElastiCache immediately begins deleting the selected resources; you cannot cancel or revert this operation. This operation is valid for Redis only.
173
+ */
174
+ deleteGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.DeleteGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.DeleteGlobalReplicationGroupResult, AWSError>;
151
175
  /**
152
176
  * Deletes an existing replication group. By default, this operation deletes the entire replication group, including the primary/primaries and all of the read replicas. If the replication group has only one primary, you can optionally delete only the read replicas, while retaining the primary by setting RetainPrimaryCluster=true. When you receive a successful response from this operation, Amazon ElastiCache immediately begins deleting the selected resources; you cannot cancel or revert this operation. This operation is valid for Redis only.
153
177
  */
@@ -228,6 +252,14 @@ declare class ElastiCache extends Service {
228
252
  * Returns events related to clusters, cache security groups, and cache parameter groups. You can obtain events specific to a particular cluster, cache security group, or cache parameter group by providing the name as a parameter. By default, only the events occurring within the last hour are returned; however, you can retrieve up to 14 days' worth of events if necessary.
229
253
  */
230
254
  describeEvents(callback?: (err: AWSError, data: ElastiCache.Types.EventsMessage) => void): Request<ElastiCache.Types.EventsMessage, AWSError>;
255
+ /**
256
+ * Returns information about a particular global replication group. If no identifier is specified, returns information about all Global Datastores.
257
+ */
258
+ describeGlobalReplicationGroups(params: ElastiCache.Types.DescribeGlobalReplicationGroupsMessage, callback?: (err: AWSError, data: ElastiCache.Types.DescribeGlobalReplicationGroupsResult) => void): Request<ElastiCache.Types.DescribeGlobalReplicationGroupsResult, AWSError>;
259
+ /**
260
+ * Returns information about a particular global replication group. If no identifier is specified, returns information about all Global Datastores.
261
+ */
262
+ describeGlobalReplicationGroups(callback?: (err: AWSError, data: ElastiCache.Types.DescribeGlobalReplicationGroupsResult) => void): Request<ElastiCache.Types.DescribeGlobalReplicationGroupsResult, AWSError>;
231
263
  /**
232
264
  * Returns information about a particular replication group. If no identifier is specified, DescribeReplicationGroups returns information about all replication groups. This operation is valid for Redis only.
233
265
  */
@@ -276,6 +308,30 @@ declare class ElastiCache extends Service {
276
308
  * Returns details of the update actions
277
309
  */
278
310
  describeUpdateActions(callback?: (err: AWSError, data: ElastiCache.Types.UpdateActionsMessage) => void): Request<ElastiCache.Types.UpdateActionsMessage, AWSError>;
311
+ /**
312
+ * Remove a secondary cluster from the Global Datastore using the Global Datastore name. The secondary cluster will no longer receive updates from the primary cluster, but will remain as a standalone cluster in that AWS region.
313
+ */
314
+ disassociateGlobalReplicationGroup(params: ElastiCache.Types.DisassociateGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.DisassociateGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.DisassociateGlobalReplicationGroupResult, AWSError>;
315
+ /**
316
+ * Remove a secondary cluster from the Global Datastore using the Global Datastore name. The secondary cluster will no longer receive updates from the primary cluster, but will remain as a standalone cluster in that AWS region.
317
+ */
318
+ disassociateGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.DisassociateGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.DisassociateGlobalReplicationGroupResult, AWSError>;
319
+ /**
320
+ * Used to failover the primary region to a selected secondary region.
321
+ */
322
+ failoverGlobalReplicationGroup(params: ElastiCache.Types.FailoverGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.FailoverGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.FailoverGlobalReplicationGroupResult, AWSError>;
323
+ /**
324
+ * Used to failover the primary region to a selected secondary region.
325
+ */
326
+ failoverGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.FailoverGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.FailoverGlobalReplicationGroupResult, AWSError>;
327
+ /**
328
+ * Increase the number of node groups in the Global Datastore
329
+ */
330
+ increaseNodeGroupsInGlobalReplicationGroup(params: ElastiCache.Types.IncreaseNodeGroupsInGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.IncreaseNodeGroupsInGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.IncreaseNodeGroupsInGlobalReplicationGroupResult, AWSError>;
331
+ /**
332
+ * Increase the number of node groups in the Global Datastore
333
+ */
334
+ increaseNodeGroupsInGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.IncreaseNodeGroupsInGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.IncreaseNodeGroupsInGlobalReplicationGroupResult, AWSError>;
279
335
  /**
280
336
  * Dynamically increases the number of replics in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group. This operation is performed with no cluster down time.
281
337
  */
@@ -324,6 +380,14 @@ declare class ElastiCache extends Service {
324
380
  * Modifies an existing cache subnet group.
325
381
  */
326
382
  modifyCacheSubnetGroup(callback?: (err: AWSError, data: ElastiCache.Types.ModifyCacheSubnetGroupResult) => void): Request<ElastiCache.Types.ModifyCacheSubnetGroupResult, AWSError>;
383
+ /**
384
+ * Modifies the settings for a Global Datastore.
385
+ */
386
+ modifyGlobalReplicationGroup(params: ElastiCache.Types.ModifyGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.ModifyGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.ModifyGlobalReplicationGroupResult, AWSError>;
387
+ /**
388
+ * Modifies the settings for a Global Datastore.
389
+ */
390
+ modifyGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.ModifyGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.ModifyGlobalReplicationGroupResult, AWSError>;
327
391
  /**
328
392
  * Modifies the settings for a replication group. For Redis (cluster mode enabled) clusters, this operation cannot be used to change a cluster's node type or engine version. For more information, see: Scaling for Amazon ElastiCache for Redis (cluster mode enabled) in the ElastiCache User Guide ModifyReplicationGroupShardConfiguration in the ElastiCache API Reference This operation is valid for Redis only.
329
393
  */
@@ -348,6 +412,14 @@ declare class ElastiCache extends Service {
348
412
  * Allows you to purchase a reserved cache node offering.
349
413
  */
350
414
  purchaseReservedCacheNodesOffering(callback?: (err: AWSError, data: ElastiCache.Types.PurchaseReservedCacheNodesOfferingResult) => void): Request<ElastiCache.Types.PurchaseReservedCacheNodesOfferingResult, AWSError>;
415
+ /**
416
+ * Redistribute slots to ensure unifirom distribution across existing shards in the cluster.
417
+ */
418
+ rebalanceSlotsInGlobalReplicationGroup(params: ElastiCache.Types.RebalanceSlotsInGlobalReplicationGroupMessage, callback?: (err: AWSError, data: ElastiCache.Types.RebalanceSlotsInGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.RebalanceSlotsInGlobalReplicationGroupResult, AWSError>;
419
+ /**
420
+ * Redistribute slots to ensure unifirom distribution across existing shards in the cluster.
421
+ */
422
+ rebalanceSlotsInGlobalReplicationGroup(callback?: (err: AWSError, data: ElastiCache.Types.RebalanceSlotsInGlobalReplicationGroupResult) => void): Request<ElastiCache.Types.RebalanceSlotsInGlobalReplicationGroupResult, AWSError>;
351
423
  /**
352
424
  * Reboots some, or all, of the cache nodes within a provisioned cluster. This operation applies any modified cache parameter groups to the cluster. The reboot operation takes place as soon as possible, and results in a momentary outage to the cluster. During the reboot, the cluster status is set to REBOOTING. The reboot causes the contents of the cache (for each cache node being rebooted) to be lost. When the reboot is complete, a cluster event is created. Rebooting a cluster is currently supported on Memcached and Redis (cluster mode disabled) clusters. Rebooting is not supported on Redis (cluster mode enabled) clusters. If you make changes to parameters that require a Redis (cluster mode enabled) cluster reboot for the changes to be applied, see Rebooting a Cluster for an alternate process.
353
425
  */
@@ -448,7 +520,7 @@ declare namespace ElastiCache {
448
520
  */
449
521
  ScaleUpModifications?: NodeTypeList;
450
522
  /**
451
- * A string list, each element of which specifies a cache node type which you can use to scale your cluster or replication group. When scaling down on a Redis cluster or replication group using ModifyCacheCluster or ModifyReplicationGroup, use a value from this list for the CacheNodeType parameter.
523
+ * A string list, each element of which specifies a cache node type which you can use to scale your cluster or replication group. When scaling down a Redis cluster or replication group using ModifyCacheCluster or ModifyReplicationGroup, use a value from this list for the CacheNodeType parameter.
452
524
  */
453
525
  ScaleDownModifications?: NodeTypeList;
454
526
  }
@@ -523,7 +595,7 @@ declare namespace ElastiCache {
523
595
  */
524
596
  ClientDownloadLandingPage?: String;
525
597
  /**
526
- * The name of the compute and memory capacity node type for the cluster. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
598
+ * The name of the compute and memory capacity node type for the cluster. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
527
599
  */
528
600
  CacheNodeType?: String;
529
601
  /**
@@ -663,7 +735,7 @@ declare namespace ElastiCache {
663
735
  */
664
736
  CacheNodeId?: String;
665
737
  /**
666
- * The current state of this cache node.
738
+ * The current state of this cache node, one of the following values: available, creating, rebooting, or deleting.
667
739
  */
668
740
  CacheNodeStatus?: String;
669
741
  /**
@@ -787,6 +859,10 @@ declare namespace ElastiCache {
787
859
  * The description for this cache parameter group.
788
860
  */
789
861
  Description?: String;
862
+ /**
863
+ * Indicates whether the parameter group is associated with a Global Datastore
864
+ */
865
+ IsGlobal?: Boolean;
790
866
  }
791
867
  export interface CacheParameterGroupDetails {
792
868
  /**
@@ -979,7 +1055,7 @@ declare namespace ElastiCache {
979
1055
  */
980
1056
  NumCacheNodes?: IntegerOptional;
981
1057
  /**
982
- * The compute and memory capacity of the nodes in the node group (shard). The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
1058
+ * The compute and memory capacity of the nodes in the node group (shard). The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
983
1059
  */
984
1060
  CacheNodeType?: String;
985
1061
  /**
@@ -1097,6 +1173,23 @@ declare namespace ElastiCache {
1097
1173
  export interface CreateCacheSubnetGroupResult {
1098
1174
  CacheSubnetGroup?: CacheSubnetGroup;
1099
1175
  }
1176
+ export interface CreateGlobalReplicationGroupMessage {
1177
+ /**
1178
+ * The suffix for name of a Global Datastore. The suffix guarantees uniqueness of the Global Datastore name across multiple regions.
1179
+ */
1180
+ GlobalReplicationGroupIdSuffix: String;
1181
+ /**
1182
+ * Provides details of the Global Datastore
1183
+ */
1184
+ GlobalReplicationGroupDescription?: String;
1185
+ /**
1186
+ * The name of the primary cluster that accepts writes and will replicate updates to the secondary cluster.
1187
+ */
1188
+ PrimaryReplicationGroupId: String;
1189
+ }
1190
+ export interface CreateGlobalReplicationGroupResult {
1191
+ GlobalReplicationGroup?: GlobalReplicationGroup;
1192
+ }
1100
1193
  export interface CreateReplicationGroupMessage {
1101
1194
  /**
1102
1195
  * The replication group identifier. This parameter is stored as a lowercase string. Constraints: A name must contain from 1 to 40 alphanumeric characters or hyphens. The first character must be a letter. A name cannot end with a hyphen or contain two consecutive hyphens.
@@ -1106,6 +1199,10 @@ declare namespace ElastiCache {
1106
1199
  * A user-created description for the replication group.
1107
1200
  */
1108
1201
  ReplicationGroupDescription: String;
1202
+ /**
1203
+ * The name of the Global Datastore
1204
+ */
1205
+ GlobalReplicationGroupId?: String;
1109
1206
  /**
1110
1207
  * The identifier of the cluster that serves as the primary for this replication group. This cluster must already exist and have a status of available. This parameter is not required if NumCacheClusters, NumNodeGroups, or ReplicasPerNodeGroup is specified.
1111
1208
  */
@@ -1135,7 +1232,7 @@ declare namespace ElastiCache {
1135
1232
  */
1136
1233
  NodeGroupConfiguration?: NodeGroupConfigurationList;
1137
1234
  /**
1138
- * The compute and memory capacity of the nodes in the node group (shard). The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
1235
+ * The compute and memory capacity of the nodes in the node group (shard). The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
1139
1236
  */
1140
1237
  CacheNodeType?: String;
1141
1238
  /**
@@ -1211,7 +1308,7 @@ declare namespace ElastiCache {
1211
1308
  */
1212
1309
  AtRestEncryptionEnabled?: BooleanOptional;
1213
1310
  /**
1214
- * The ID of the KMS key used to encrypt the disk on the cluster.
1311
+ * The ID of the KMS key used to encrypt the disk in the cluster.
1215
1312
  */
1216
1313
  KmsKeyId?: String;
1217
1314
  }
@@ -1250,6 +1347,31 @@ declare namespace ElastiCache {
1250
1347
  Port?: IntegerOptional;
1251
1348
  }
1252
1349
  export type CustomerNodeEndpointList = CustomerNodeEndpoint[];
1350
+ export interface DecreaseNodeGroupsInGlobalReplicationGroupMessage {
1351
+ /**
1352
+ * The name of the Global Datastore
1353
+ */
1354
+ GlobalReplicationGroupId: String;
1355
+ /**
1356
+ * The number of node groups (shards) that results from the modification of the shard configuration
1357
+ */
1358
+ NodeGroupCount: Integer;
1359
+ /**
1360
+ * If the value of NodeGroupCount is less than the current number of node groups (shards), then either NodeGroupsToRemove or NodeGroupsToRetain is required. NodeGroupsToRemove is a list of NodeGroupIds to remove from the cluster. ElastiCache for Redis will attempt to remove all node groups listed by NodeGroupsToRemove from the cluster.
1361
+ */
1362
+ GlobalNodeGroupsToRemove?: GlobalNodeGroupIdList;
1363
+ /**
1364
+ * If the value of NodeGroupCount is less than the current number of node groups (shards), then either NodeGroupsToRemove or NodeGroupsToRetain is required. NodeGroupsToRemove is a list of NodeGroupIds to remove from the cluster. ElastiCache for Redis will attempt to remove all node groups listed by NodeGroupsToRemove from the cluster.
1365
+ */
1366
+ GlobalNodeGroupsToRetain?: GlobalNodeGroupIdList;
1367
+ /**
1368
+ * Indicates that the shard reconfiguration process begins immediately. At present, the only permitted value for this parameter is true.
1369
+ */
1370
+ ApplyImmediately: Boolean;
1371
+ }
1372
+ export interface DecreaseNodeGroupsInGlobalReplicationGroupResult {
1373
+ GlobalReplicationGroup?: GlobalReplicationGroup;
1374
+ }
1253
1375
  export interface DecreaseReplicaCountMessage {
1254
1376
  /**
1255
1377
  * The id of the replication group from which you want to remove replica nodes.
@@ -1306,6 +1428,19 @@ declare namespace ElastiCache {
1306
1428
  */
1307
1429
  CacheSubnetGroupName: String;
1308
1430
  }
1431
+ export interface DeleteGlobalReplicationGroupMessage {
1432
+ /**
1433
+ * The name of the Global Datastore
1434
+ */
1435
+ GlobalReplicationGroupId: String;
1436
+ /**
1437
+ * If set to true, the primary replication is retained as a standalone replication group.
1438
+ */
1439
+ RetainPrimaryReplicationGroup: Boolean;
1440
+ }
1441
+ export interface DeleteGlobalReplicationGroupResult {
1442
+ GlobalReplicationGroup?: GlobalReplicationGroup;
1443
+ }
1309
1444
  export interface DeleteReplicationGroupMessage {
1310
1445
  /**
1311
1446
  * The identifier for the cluster to be deleted. This parameter is not case sensitive.
@@ -1487,6 +1622,34 @@ declare namespace ElastiCache {
1487
1622
  */
1488
1623
  Marker?: String;
1489
1624
  }
1625
+ export interface DescribeGlobalReplicationGroupsMessage {
1626
+ /**
1627
+ * The name of the Global Datastore
1628
+ */
1629
+ GlobalReplicationGroupId?: String;
1630
+ /**
1631
+ * The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.
1632
+ */
1633
+ MaxRecords?: IntegerOptional;
1634
+ /**
1635
+ * An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
1636
+ */
1637
+ Marker?: String;
1638
+ /**
1639
+ * Returns the list of members that comprise the Global Datastore.
1640
+ */
1641
+ ShowMemberInfo?: BooleanOptional;
1642
+ }
1643
+ export interface DescribeGlobalReplicationGroupsResult {
1644
+ /**
1645
+ * An optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. &gt;
1646
+ */
1647
+ Marker?: String;
1648
+ /**
1649
+ * Indicates the slot configuration and global identifier for each slice group.
1650
+ */
1651
+ GlobalReplicationGroups?: GlobalReplicationGroupList;
1652
+ }
1490
1653
  export interface DescribeReplicationGroupsMessage {
1491
1654
  /**
1492
1655
  * The identifier for the replication group to be described. This parameter is not case sensitive. If you do not specify this parameter, information about all replication groups is returned.
@@ -1511,7 +1674,7 @@ declare namespace ElastiCache {
1511
1674
  */
1512
1675
  ReservedCacheNodesOfferingId?: String;
1513
1676
  /**
1514
- * The cache node type filter value. Use this parameter to show only those reservations matching the specified cache node type. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
1677
+ * The cache node type filter value. Use this parameter to show only those reservations matching the specified cache node type. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
1515
1678
  */
1516
1679
  CacheNodeType?: String;
1517
1680
  /**
@@ -1541,7 +1704,7 @@ declare namespace ElastiCache {
1541
1704
  */
1542
1705
  ReservedCacheNodesOfferingId?: String;
1543
1706
  /**
1544
- * The cache node type filter value. Use this parameter to show only the available offerings matching the specified cache node type. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
1707
+ * The cache node type filter value. Use this parameter to show only the available offerings matching the specified cache node type. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
1545
1708
  */
1546
1709
  CacheNodeType?: String;
1547
1710
  /**
@@ -1665,6 +1828,23 @@ declare namespace ElastiCache {
1665
1828
  */
1666
1829
  Marker?: String;
1667
1830
  }
1831
+ export interface DisassociateGlobalReplicationGroupMessage {
1832
+ /**
1833
+ * The name of the Global Datastore
1834
+ */
1835
+ GlobalReplicationGroupId: String;
1836
+ /**
1837
+ * The name of the secondary cluster you wish to remove from the Global Datastore
1838
+ */
1839
+ ReplicationGroupId: String;
1840
+ /**
1841
+ * The AWS region of secondary cluster you wish to remove from the Global Datastore
1842
+ */
1843
+ ReplicationGroupRegion: String;
1844
+ }
1845
+ export interface DisassociateGlobalReplicationGroupResult {
1846
+ GlobalReplicationGroup?: GlobalReplicationGroup;
1847
+ }
1668
1848
  export type Double = number;
1669
1849
  export interface EC2SecurityGroup {
1670
1850
  /**
@@ -1738,6 +1918,140 @@ declare namespace ElastiCache {
1738
1918
  */
1739
1919
  Events?: EventList;
1740
1920
  }
1921
+ export interface FailoverGlobalReplicationGroupMessage {
1922
+ /**
1923
+ * The name of the Global Datastore
1924
+ */
1925
+ GlobalReplicationGroupId: String;
1926
+ /**
1927
+ * The AWS region of the primary cluster of the Global Datastore
1928
+ */
1929
+ PrimaryRegion: String;
1930
+ /**
1931
+ * The name of the primary replication group
1932
+ */
1933
+ PrimaryReplicationGroupId: String;
1934
+ }
1935
+ export interface FailoverGlobalReplicationGroupResult {
1936
+ GlobalReplicationGroup?: GlobalReplicationGroup;
1937
+ }
1938
+ export interface GlobalNodeGroup {
1939
+ /**
1940
+ * The name of the global node group
1941
+ */
1942
+ GlobalNodeGroupId?: String;
1943
+ /**
1944
+ * The keyspace for this node group
1945
+ */
1946
+ Slots?: String;
1947
+ }
1948
+ export type GlobalNodeGroupIdList = String[];
1949
+ export type GlobalNodeGroupList = GlobalNodeGroup[];
1950
+ export interface GlobalReplicationGroup {
1951
+ /**
1952
+ * The name of the Global Datastore
1953
+ */
1954
+ GlobalReplicationGroupId?: String;
1955
+ /**
1956
+ * The optional description of the Global Datastore
1957
+ */
1958
+ GlobalReplicationGroupDescription?: String;
1959
+ /**
1960
+ * The status of the Global Datastore
1961
+ */
1962
+ Status?: String;
1963
+ /**
1964
+ * The cache node type of the Global Datastore
1965
+ */
1966
+ CacheNodeType?: String;
1967
+ /**
1968
+ * The Elasticache engine. For preview, it is Redis only.
1969
+ */
1970
+ Engine?: String;
1971
+ /**
1972
+ * The Elasticache Redis engine version. For preview, it is Redis version 5.0.5 only.
1973
+ */
1974
+ EngineVersion?: String;
1975
+ /**
1976
+ * The replication groups that comprise the Global Datastore.
1977
+ */
1978
+ Members?: GlobalReplicationGroupMemberList;
1979
+ /**
1980
+ * A flag that indicates whether the Global Datastore is cluster enabled.
1981
+ */
1982
+ ClusterEnabled?: BooleanOptional;
1983
+ /**
1984
+ * Indicates the slot configuration and global identifier for each slice group.
1985
+ */
1986
+ GlobalNodeGroups?: GlobalNodeGroupList;
1987
+ /**
1988
+ * A flag that enables using an AuthToken (password) when issuing Redis commands. Default: false
1989
+ */
1990
+ AuthTokenEnabled?: BooleanOptional;
1991
+ /**
1992
+ * A flag that enables in-transit encryption when set to true. You cannot modify the value of TransitEncryptionEnabled after the cluster is created. To enable in-transit encryption on a cluster you must set TransitEncryptionEnabled to true when you create a cluster.
1993
+ */
1994
+ TransitEncryptionEnabled?: BooleanOptional;
1995
+ /**
1996
+ * A flag that enables encryption at rest when set to true. You cannot modify the value of AtRestEncryptionEnabled after the replication group is created. To enable encryption at rest on a replication group you must set AtRestEncryptionEnabled to true when you create the replication group. Required: Only available when creating a replication group in an Amazon VPC using redis version 3.2.6, 4.x or later.
1997
+ */
1998
+ AtRestEncryptionEnabled?: BooleanOptional;
1999
+ }
2000
+ export interface GlobalReplicationGroupInfo {
2001
+ /**
2002
+ * The name of the Global Datastore
2003
+ */
2004
+ GlobalReplicationGroupId?: String;
2005
+ /**
2006
+ * The role of the replication group in a Global Datastore. Can be primary or secondary.
2007
+ */
2008
+ GlobalReplicationGroupMemberRole?: String;
2009
+ }
2010
+ export type GlobalReplicationGroupList = GlobalReplicationGroup[];
2011
+ export interface GlobalReplicationGroupMember {
2012
+ /**
2013
+ * The replication group id of the Global Datastore member.
2014
+ */
2015
+ ReplicationGroupId?: String;
2016
+ /**
2017
+ * The AWS region of the Global Datastore member.
2018
+ */
2019
+ ReplicationGroupRegion?: String;
2020
+ /**
2021
+ * Indicates the role of the replication group, primary or secondary.
2022
+ */
2023
+ Role?: String;
2024
+ /**
2025
+ * Indicates whether automatic failover is enabled for the replication group.
2026
+ */
2027
+ AutomaticFailover?: AutomaticFailoverStatus;
2028
+ /**
2029
+ * The status of the membership of the replication group.
2030
+ */
2031
+ Status?: String;
2032
+ }
2033
+ export type GlobalReplicationGroupMemberList = GlobalReplicationGroupMember[];
2034
+ export interface IncreaseNodeGroupsInGlobalReplicationGroupMessage {
2035
+ /**
2036
+ * The name of the Global Datastore
2037
+ */
2038
+ GlobalReplicationGroupId: String;
2039
+ /**
2040
+ * The number of node groups you wish to add
2041
+ */
2042
+ NodeGroupCount: Integer;
2043
+ /**
2044
+ * Describes the replication group IDs, the AWS regions where they are stored and the shard configuration for each that comprise the Global Datastore
2045
+ */
2046
+ RegionalConfigurations?: RegionalConfigurationList;
2047
+ /**
2048
+ * Indicates that the process begins immediately. At present, the only permitted value for this parameter is true.
2049
+ */
2050
+ ApplyImmediately: Boolean;
2051
+ }
2052
+ export interface IncreaseNodeGroupsInGlobalReplicationGroupResult {
2053
+ GlobalReplicationGroup?: GlobalReplicationGroup;
2054
+ }
1741
2055
  export interface IncreaseReplicaCountMessage {
1742
2056
  /**
1743
2057
  * The id of the replication group to which you want to add replica nodes.
@@ -1886,6 +2200,35 @@ declare namespace ElastiCache {
1886
2200
  export interface ModifyCacheSubnetGroupResult {
1887
2201
  CacheSubnetGroup?: CacheSubnetGroup;
1888
2202
  }
2203
+ export interface ModifyGlobalReplicationGroupMessage {
2204
+ /**
2205
+ * The name of the Global Datastore
2206
+ */
2207
+ GlobalReplicationGroupId: String;
2208
+ /**
2209
+ * If true, this parameter causes the modifications in this request and any pending modifications to be applied, asynchronously and as soon as possible, regardless of the PreferredMaintenanceWindow setting for the replication group. If false, changes to the nodes in the replication group are applied on the next maintenance reboot, or the next failure reboot, whichever occurs first.
2210
+ */
2211
+ ApplyImmediately: Boolean;
2212
+ /**
2213
+ * A valid cache node type that you want to scale this Global Datastore to.
2214
+ */
2215
+ CacheNodeType?: String;
2216
+ /**
2217
+ * The upgraded version of the cache engine to be run on the clusters in the Global Datastore.
2218
+ */
2219
+ EngineVersion?: String;
2220
+ /**
2221
+ * A description of the Global Datastore
2222
+ */
2223
+ GlobalReplicationGroupDescription?: String;
2224
+ /**
2225
+ * Determines whether a read replica is automatically promoted to read/write primary if the existing primary encounters a failure.
2226
+ */
2227
+ AutomaticFailoverEnabled?: BooleanOptional;
2228
+ }
2229
+ export interface ModifyGlobalReplicationGroupResult {
2230
+ GlobalReplicationGroup?: GlobalReplicationGroup;
2231
+ }
1889
2232
  export interface ModifyReplicationGroupMessage {
1890
2233
  /**
1891
2234
  * The identifier of the replication group to modify.
@@ -2279,6 +2622,19 @@ declare namespace ElastiCache {
2279
2622
  export interface PurchaseReservedCacheNodesOfferingResult {
2280
2623
  ReservedCacheNode?: ReservedCacheNode;
2281
2624
  }
2625
+ export interface RebalanceSlotsInGlobalReplicationGroupMessage {
2626
+ /**
2627
+ * The name of the Global Datastore
2628
+ */
2629
+ GlobalReplicationGroupId: String;
2630
+ /**
2631
+ * If True, redistribution is applied immediately.
2632
+ */
2633
+ ApplyImmediately: Boolean;
2634
+ }
2635
+ export interface RebalanceSlotsInGlobalReplicationGroupResult {
2636
+ GlobalReplicationGroup?: GlobalReplicationGroup;
2637
+ }
2282
2638
  export interface RebootCacheClusterMessage {
2283
2639
  /**
2284
2640
  * The cluster identifier. This parameter is stored as a lowercase string.
@@ -2303,6 +2659,21 @@ declare namespace ElastiCache {
2303
2659
  RecurringChargeFrequency?: String;
2304
2660
  }
2305
2661
  export type RecurringChargeList = RecurringCharge[];
2662
+ export interface RegionalConfiguration {
2663
+ /**
2664
+ * The name of the secondary cluster
2665
+ */
2666
+ ReplicationGroupId: String;
2667
+ /**
2668
+ * The AWS region where the cluster is stored
2669
+ */
2670
+ ReplicationGroupRegion: String;
2671
+ /**
2672
+ * A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.
2673
+ */
2674
+ ReshardingConfiguration: ReshardingConfigurationList;
2675
+ }
2676
+ export type RegionalConfigurationList = RegionalConfiguration[];
2306
2677
  export type RemoveReplicasList = String[];
2307
2678
  export interface RemoveTagsFromResourceMessage {
2308
2679
  /**
@@ -2324,6 +2695,10 @@ declare namespace ElastiCache {
2324
2695
  * The user supplied description of the replication group.
2325
2696
  */
2326
2697
  Description?: String;
2698
+ /**
2699
+ * The name of the Global Datastore and role of this replication group in the Global Datastore.
2700
+ */
2701
+ GlobalReplicationGroupInfo?: GlobalReplicationGroupInfo;
2327
2702
  /**
2328
2703
  * The current state of this replication group - creating, available, modifying, deleting, create-failed, snapshotting.
2329
2704
  */
@@ -2429,7 +2804,7 @@ declare namespace ElastiCache {
2429
2804
  */
2430
2805
  ReservedCacheNodesOfferingId?: String;
2431
2806
  /**
2432
- * The cache node type for the reserved cache nodes. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
2807
+ * The cache node type for the reserved cache nodes. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
2433
2808
  */
2434
2809
  CacheNodeType?: String;
2435
2810
  /**
@@ -2490,7 +2865,7 @@ declare namespace ElastiCache {
2490
2865
  */
2491
2866
  ReservedCacheNodesOfferingId?: String;
2492
2867
  /**
2493
- * The cache node type for the reserved cache node. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
2868
+ * The cache node type for the reserved cache node. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
2494
2869
  */
2495
2870
  CacheNodeType?: String;
2496
2871
  /**
@@ -2687,7 +3062,7 @@ declare namespace ElastiCache {
2687
3062
  */
2688
3063
  SnapshotSource?: String;
2689
3064
  /**
2690
- * The name of the compute and memory capacity node type for the source cluster. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
3065
+ * The name of the compute and memory capacity node type for the source cluster. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts. General purpose: Current generation: M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium Previous generation: (not recommended) T1 node types: cache.t1.micro M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge Compute optimized: Previous generation: (not recommended) C1 node types: cache.c1.xlarge Memory optimized: Current generation: R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge Previous generation: (not recommended) M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge Additional node type info All current generation instance types are created in Amazon VPC by default. Redis append-only files (AOF) are not supported for T1 or T2 instances. Redis Multi-AZ with automatic failover is not supported on T1 instances. Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.
2691
3066
  */
2692
3067
  CacheNodeType?: String;
2693
3068
  /**