aws-sdk-elasticache 1.1.0 → 1.2.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-elasticache.rb +1 -1
- data/lib/aws-sdk-elasticache/client.rb +387 -95
- data/lib/aws-sdk-elasticache/client_api.rb +8 -0
- data/lib/aws-sdk-elasticache/types.rb +510 -190
- metadata +2 -2
@@ -252,6 +252,9 @@ module Aws::ElastiCache
|
|
252
252
|
CacheCluster.add_member(:replication_group_id, Shapes::ShapeRef.new(shape: String, location_name: "ReplicationGroupId"))
|
253
253
|
CacheCluster.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
254
254
|
CacheCluster.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
255
|
+
CacheCluster.add_member(:auth_token_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AuthTokenEnabled"))
|
256
|
+
CacheCluster.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
257
|
+
CacheCluster.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
255
258
|
CacheCluster.struct_class = Types::CacheCluster
|
256
259
|
|
257
260
|
CacheClusterList.member = Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster")
|
@@ -448,6 +451,8 @@ module Aws::ElastiCache
|
|
448
451
|
CreateReplicationGroupMessage.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
449
452
|
CreateReplicationGroupMessage.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
450
453
|
CreateReplicationGroupMessage.add_member(:auth_token, Shapes::ShapeRef.new(shape: String, location_name: "AuthToken"))
|
454
|
+
CreateReplicationGroupMessage.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
455
|
+
CreateReplicationGroupMessage.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
451
456
|
CreateReplicationGroupMessage.struct_class = Types::CreateReplicationGroupMessage
|
452
457
|
|
453
458
|
CreateReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
|
@@ -784,6 +789,9 @@ module Aws::ElastiCache
|
|
784
789
|
ReplicationGroup.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
785
790
|
ReplicationGroup.add_member(:cluster_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ClusterEnabled"))
|
786
791
|
ReplicationGroup.add_member(:cache_node_type, Shapes::ShapeRef.new(shape: String, location_name: "CacheNodeType"))
|
792
|
+
ReplicationGroup.add_member(:auth_token_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AuthTokenEnabled"))
|
793
|
+
ReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
794
|
+
ReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
787
795
|
ReplicationGroup.struct_class = Types::ReplicationGroup
|
788
796
|
|
789
797
|
ReplicationGroupList.member = Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup")
|
@@ -160,27 +160,47 @@ module Aws::ElastiCache
|
|
160
160
|
# The name of the compute and memory capacity node type for the cache
|
161
161
|
# cluster.
|
162
162
|
#
|
163
|
-
#
|
163
|
+
# The following node types are supported by ElastiCache. Generally
|
164
|
+
# speaking, the current generation types provide more memory and
|
165
|
+
# computational power at lower cost when compared to their equivalent
|
166
|
+
# previous generation counterparts.
|
164
167
|
#
|
165
168
|
# * General purpose:
|
166
169
|
#
|
167
|
-
# * Current generation:
|
168
|
-
# `cache.t2.medium`, `cache.m3.medium`, `cache.m3.large`,
|
169
|
-
# `cache.m3.xlarge`, `cache.m3.2xlarge`, `cache.m4.large`,
|
170
|
-
# `cache.m4.xlarge`, `cache.m4.2xlarge`, `cache.m4.4xlarge`,
|
171
|
-
# `cache.m4.10xlarge`
|
170
|
+
# * Current generation:
|
172
171
|
#
|
173
|
-
#
|
174
|
-
# `cache.
|
172
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
173
|
+
# `cache.t2.medium`
|
175
174
|
#
|
176
|
-
#
|
175
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
176
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
177
|
+
#
|
178
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
179
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
180
|
+
#
|
181
|
+
# * Previous generation: (not recommended)
|
182
|
+
#
|
183
|
+
# **T1 node types:** `cache.t1.micro`
|
184
|
+
#
|
185
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
186
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
187
|
+
#
|
188
|
+
# * Compute optimized:
|
189
|
+
#
|
190
|
+
# * Previous generation: (not recommended)
|
191
|
+
#
|
192
|
+
# **C1 node types:** `cache.c1.xlarge`
|
177
193
|
#
|
178
194
|
# * Memory optimized:
|
179
195
|
#
|
180
|
-
# * Current generation:
|
196
|
+
# * Current generation:
|
197
|
+
#
|
198
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
181
199
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
182
200
|
#
|
183
|
-
# * Previous generation:
|
201
|
+
# * Previous generation: (not recommended)
|
202
|
+
#
|
203
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
184
204
|
# `cache.m2.4xlarge`
|
185
205
|
#
|
186
206
|
# **Notes:**
|
@@ -188,13 +208,18 @@ module Aws::ElastiCache
|
|
188
208
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
189
209
|
# (Amazon VPC).
|
190
210
|
#
|
191
|
-
# * Redis backup/restore is not
|
192
|
-
#
|
193
|
-
#
|
211
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
212
|
+
# supported on T1 and T2 instances.
|
213
|
+
#
|
214
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
215
|
+
# T1 instances.
|
194
216
|
#
|
195
217
|
# * Redis Append-only files (AOF) functionality is not supported for
|
196
218
|
# T1 or T2 instances.
|
197
219
|
#
|
220
|
+
# Supported node types are available in all regions except as noted in
|
221
|
+
# the following table.
|
222
|
+
#
|
198
223
|
# For a complete listing of node types and specifications, see [Amazon
|
199
224
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
200
225
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -325,6 +350,35 @@ module Aws::ElastiCache
|
|
325
350
|
# Example: `05:00-09:00`
|
326
351
|
# @return [String]
|
327
352
|
#
|
353
|
+
# @!attribute [rw] auth_token_enabled
|
354
|
+
# A flag that enables using an `AuthToken` (password) when issuing
|
355
|
+
# Redis commands.
|
356
|
+
#
|
357
|
+
# Default: `false`
|
358
|
+
# @return [Boolean]
|
359
|
+
#
|
360
|
+
# @!attribute [rw] transit_encryption_enabled
|
361
|
+
# A flag that enables in-transit encryption when set to `true`.
|
362
|
+
#
|
363
|
+
# You cannot modify the value of `TransitEncryptionEnabled` after the
|
364
|
+
# cluster is created. To enable in-transit encryption on a cluster you
|
365
|
+
# must set `TransitEncryptionEnabled` to `true` when you create a
|
366
|
+
# cluster.
|
367
|
+
#
|
368
|
+
# Default: `false`
|
369
|
+
# @return [Boolean]
|
370
|
+
#
|
371
|
+
# @!attribute [rw] at_rest_encryption_enabled
|
372
|
+
# A flag that enables encryption at-rest when set to `true`.
|
373
|
+
#
|
374
|
+
# You cannot modify the value of `AtRestEncryptionEnabled` after the
|
375
|
+
# cluster is created. To enable at-rest encryption on a cluster you
|
376
|
+
# must set `AtRestEncryptionEnabled` to `true` when you create a
|
377
|
+
# cluster.
|
378
|
+
#
|
379
|
+
# Default: `false`
|
380
|
+
# @return [Boolean]
|
381
|
+
#
|
328
382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
|
329
383
|
#
|
330
384
|
class CacheCluster < Struct.new(
|
@@ -349,7 +403,10 @@ module Aws::ElastiCache
|
|
349
403
|
:security_groups,
|
350
404
|
:replication_group_id,
|
351
405
|
:snapshot_retention_limit,
|
352
|
-
:snapshot_window
|
406
|
+
:snapshot_window,
|
407
|
+
:auth_token_enabled,
|
408
|
+
:transit_encryption_enabled,
|
409
|
+
:at_rest_encryption_enabled)
|
353
410
|
include Aws::Structure
|
354
411
|
end
|
355
412
|
|
@@ -432,27 +489,47 @@ module Aws::ElastiCache
|
|
432
489
|
# node runs its own instance of the cluster's protocol-compliant
|
433
490
|
# caching software - either Memcached or Redis.
|
434
491
|
#
|
435
|
-
#
|
492
|
+
# The following node types are supported by ElastiCache. Generally
|
493
|
+
# speaking, the current generation types provide more memory and
|
494
|
+
# computational power at lower cost when compared to their equivalent
|
495
|
+
# previous generation counterparts.
|
436
496
|
#
|
437
497
|
# * General purpose:
|
438
498
|
#
|
439
|
-
# * Current generation:
|
440
|
-
#
|
441
|
-
#
|
442
|
-
# `cache.
|
443
|
-
#
|
499
|
+
# * Current generation:
|
500
|
+
#
|
501
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
502
|
+
# `cache.t2.medium`
|
503
|
+
#
|
504
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
505
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
444
506
|
#
|
445
|
-
#
|
446
|
-
# `cache.
|
507
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
508
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
447
509
|
#
|
448
|
-
#
|
510
|
+
# * Previous generation: (not recommended)
|
511
|
+
#
|
512
|
+
# **T1 node types:** `cache.t1.micro`
|
513
|
+
#
|
514
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
515
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
516
|
+
#
|
517
|
+
# * Compute optimized:
|
518
|
+
#
|
519
|
+
# * Previous generation: (not recommended)
|
520
|
+
#
|
521
|
+
# **C1 node types:** `cache.c1.xlarge`
|
449
522
|
#
|
450
523
|
# * Memory optimized:
|
451
524
|
#
|
452
|
-
# * Current generation:
|
525
|
+
# * Current generation:
|
526
|
+
#
|
527
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
453
528
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
454
529
|
#
|
455
|
-
# * Previous generation:
|
530
|
+
# * Previous generation: (not recommended)
|
531
|
+
#
|
532
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
456
533
|
# `cache.m2.4xlarge`
|
457
534
|
#
|
458
535
|
# **Notes:**
|
@@ -460,13 +537,18 @@ module Aws::ElastiCache
|
|
460
537
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
461
538
|
# (Amazon VPC).
|
462
539
|
#
|
463
|
-
# * Redis backup/restore is not supported
|
464
|
-
#
|
465
|
-
#
|
540
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not supported
|
541
|
+
# on T1 and T2 instances.
|
542
|
+
#
|
543
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on T1
|
544
|
+
# instances.
|
466
545
|
#
|
467
546
|
# * Redis Append-only files (AOF) functionality is not supported for T1
|
468
547
|
# or T2 instances.
|
469
548
|
#
|
549
|
+
# Supported node types are available in all regions except as noted in
|
550
|
+
# the following table.
|
551
|
+
#
|
470
552
|
# For a complete listing of node types and specifications, see [Amazon
|
471
553
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
472
554
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -1043,27 +1125,47 @@ module Aws::ElastiCache
|
|
1043
1125
|
# The compute and memory capacity of the nodes in the node group
|
1044
1126
|
# (shard).
|
1045
1127
|
#
|
1046
|
-
#
|
1128
|
+
# The following node types are supported by ElastiCache. Generally
|
1129
|
+
# speaking, the current generation types provide more memory and
|
1130
|
+
# computational power at lower cost when compared to their equivalent
|
1131
|
+
# previous generation counterparts.
|
1047
1132
|
#
|
1048
1133
|
# * General purpose:
|
1049
1134
|
#
|
1050
|
-
# * Current generation:
|
1051
|
-
#
|
1052
|
-
#
|
1053
|
-
# `cache.
|
1054
|
-
#
|
1135
|
+
# * Current generation:
|
1136
|
+
#
|
1137
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
1138
|
+
# `cache.t2.medium`
|
1139
|
+
#
|
1140
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
1141
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
1142
|
+
#
|
1143
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
1144
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
1055
1145
|
#
|
1056
|
-
# * Previous generation:
|
1057
|
-
# `cache.m1.medium`, `cache.m1.large`, `cache.m1.xlarge`
|
1146
|
+
# * Previous generation: (not recommended)
|
1058
1147
|
#
|
1059
|
-
#
|
1148
|
+
# **T1 node types:** `cache.t1.micro`
|
1149
|
+
#
|
1150
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
1151
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
1152
|
+
#
|
1153
|
+
# * Compute optimized:
|
1154
|
+
#
|
1155
|
+
# * Previous generation: (not recommended)
|
1156
|
+
#
|
1157
|
+
# **C1 node types:** `cache.c1.xlarge`
|
1060
1158
|
#
|
1061
1159
|
# * Memory optimized:
|
1062
1160
|
#
|
1063
|
-
# * Current generation:
|
1161
|
+
# * Current generation:
|
1162
|
+
#
|
1163
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
1064
1164
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
1065
1165
|
#
|
1066
|
-
# * Previous generation:
|
1166
|
+
# * Previous generation: (not recommended)
|
1167
|
+
#
|
1168
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
1067
1169
|
# `cache.m2.4xlarge`
|
1068
1170
|
#
|
1069
1171
|
# **Notes:**
|
@@ -1071,13 +1173,18 @@ module Aws::ElastiCache
|
|
1071
1173
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
1072
1174
|
# (Amazon VPC).
|
1073
1175
|
#
|
1074
|
-
# * Redis backup/restore is not
|
1075
|
-
#
|
1076
|
-
#
|
1176
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
1177
|
+
# supported on T1 and T2 instances.
|
1178
|
+
#
|
1179
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
1180
|
+
# T1 instances.
|
1077
1181
|
#
|
1078
1182
|
# * Redis Append-only files (AOF) functionality is not supported for
|
1079
1183
|
# T1 or T2 instances.
|
1080
1184
|
#
|
1185
|
+
# Supported node types are available in all regions except as noted in
|
1186
|
+
# the following table.
|
1187
|
+
#
|
1081
1188
|
# For a complete listing of node types and specifications, see [Amazon
|
1082
1189
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
1083
1190
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -1149,8 +1256,7 @@ module Aws::ElastiCache
|
|
1149
1256
|
# @return [Array<String>]
|
1150
1257
|
#
|
1151
1258
|
# @!attribute [rw] tags
|
1152
|
-
# A list of cost allocation tags to be added to this resource.
|
1153
|
-
# is a key-value pair. A tag key must be accompanied by a tag value.
|
1259
|
+
# A list of cost allocation tags to be added to this resource.
|
1154
1260
|
# @return [Array<Types::Tag>]
|
1155
1261
|
#
|
1156
1262
|
# @!attribute [rw] snapshot_arns
|
@@ -1249,8 +1355,9 @@ module Aws::ElastiCache
|
|
1249
1355
|
# If you do not specify this parameter, ElastiCache automatically
|
1250
1356
|
# chooses an appropriate time range.
|
1251
1357
|
#
|
1252
|
-
#
|
1253
|
-
#
|
1358
|
+
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
1359
|
+
#
|
1360
|
+
# </note>
|
1254
1361
|
# @return [String]
|
1255
1362
|
#
|
1256
1363
|
# @!attribute [rw] auth_token
|
@@ -1265,9 +1372,10 @@ module Aws::ElastiCache
|
|
1265
1372
|
# length.
|
1266
1373
|
#
|
1267
1374
|
# * Cannot contain any of the following characters: '/', '"', or
|
1268
|
-
#
|
1375
|
+
# '@'.
|
1269
1376
|
#
|
1270
|
-
# For more information, see [AUTH password][1] at
|
1377
|
+
# For more information, see [AUTH password][1] at
|
1378
|
+
# http://redis.io/commands/AUTH.
|
1271
1379
|
#
|
1272
1380
|
#
|
1273
1381
|
#
|
@@ -1507,6 +1615,8 @@ module Aws::ElastiCache
|
|
1507
1615
|
# snapshot_retention_limit: 1,
|
1508
1616
|
# snapshot_window: "String",
|
1509
1617
|
# auth_token: "String",
|
1618
|
+
# transit_encryption_enabled: false,
|
1619
|
+
# at_rest_encryption_enabled: false,
|
1510
1620
|
# }
|
1511
1621
|
#
|
1512
1622
|
# @!attribute [rw] replication_group_id
|
@@ -1549,15 +1659,14 @@ module Aws::ElastiCache
|
|
1549
1659
|
#
|
1550
1660
|
# Default: false
|
1551
1661
|
#
|
1552
|
-
#
|
1553
|
-
#
|
1554
|
-
# * Redis versions earlier than 2.8.6.
|
1662
|
+
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
1663
|
+
# automatic failover on:
|
1555
1664
|
#
|
1556
|
-
# * Redis
|
1665
|
+
# * Redis versions earlier than 2.8.6.
|
1557
1666
|
#
|
1558
|
-
#
|
1667
|
+
# * Redis (cluster mode disabled): T1 and T2 cache node types.
|
1559
1668
|
#
|
1560
|
-
#
|
1669
|
+
# * Redis (cluster mode enabled): T1 node types.
|
1561
1670
|
# @return [Boolean]
|
1562
1671
|
#
|
1563
1672
|
# @!attribute [rw] num_cache_clusters
|
@@ -1625,27 +1734,47 @@ module Aws::ElastiCache
|
|
1625
1734
|
# The compute and memory capacity of the nodes in the node group
|
1626
1735
|
# (shard).
|
1627
1736
|
#
|
1628
|
-
#
|
1737
|
+
# The following node types are supported by ElastiCache. Generally
|
1738
|
+
# speaking, the current generation types provide more memory and
|
1739
|
+
# computational power at lower cost when compared to their equivalent
|
1740
|
+
# previous generation counterparts.
|
1629
1741
|
#
|
1630
1742
|
# * General purpose:
|
1631
1743
|
#
|
1632
|
-
# * Current generation:
|
1633
|
-
#
|
1634
|
-
#
|
1635
|
-
# `cache.
|
1636
|
-
#
|
1744
|
+
# * Current generation:
|
1745
|
+
#
|
1746
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
1747
|
+
# `cache.t2.medium`
|
1748
|
+
#
|
1749
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
1750
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
1751
|
+
#
|
1752
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
1753
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
1637
1754
|
#
|
1638
|
-
# * Previous generation:
|
1639
|
-
# `cache.m1.medium`, `cache.m1.large`, `cache.m1.xlarge`
|
1755
|
+
# * Previous generation: (not recommended)
|
1640
1756
|
#
|
1641
|
-
#
|
1757
|
+
# **T1 node types:** `cache.t1.micro`
|
1758
|
+
#
|
1759
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
1760
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
1761
|
+
#
|
1762
|
+
# * Compute optimized:
|
1763
|
+
#
|
1764
|
+
# * Previous generation: (not recommended)
|
1765
|
+
#
|
1766
|
+
# **C1 node types:** `cache.c1.xlarge`
|
1642
1767
|
#
|
1643
1768
|
# * Memory optimized:
|
1644
1769
|
#
|
1645
|
-
# * Current generation:
|
1770
|
+
# * Current generation:
|
1771
|
+
#
|
1772
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
1646
1773
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
1647
1774
|
#
|
1648
|
-
# * Previous generation:
|
1775
|
+
# * Previous generation: (not recommended)
|
1776
|
+
#
|
1777
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
1649
1778
|
# `cache.m2.4xlarge`
|
1650
1779
|
#
|
1651
1780
|
# **Notes:**
|
@@ -1653,13 +1782,18 @@ module Aws::ElastiCache
|
|
1653
1782
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
1654
1783
|
# (Amazon VPC).
|
1655
1784
|
#
|
1656
|
-
# * Redis backup/restore is not
|
1657
|
-
#
|
1658
|
-
#
|
1785
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
1786
|
+
# supported on T1 and T2 instances.
|
1787
|
+
#
|
1788
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
1789
|
+
# T1 instances.
|
1659
1790
|
#
|
1660
1791
|
# * Redis Append-only files (AOF) functionality is not supported for
|
1661
1792
|
# T1 or T2 instances.
|
1662
1793
|
#
|
1794
|
+
# Supported node types are available in all regions except as noted in
|
1795
|
+
# the following table.
|
1796
|
+
#
|
1663
1797
|
# For a complete listing of node types and specifications, see [Amazon
|
1664
1798
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
1665
1799
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -1738,7 +1872,7 @@ module Aws::ElastiCache
|
|
1738
1872
|
#
|
1739
1873
|
# @!attribute [rw] tags
|
1740
1874
|
# A list of cost allocation tags to be added to this resource. A tag
|
1741
|
-
# is a key-value pair.
|
1875
|
+
# is a key-value pair.
|
1742
1876
|
# @return [Array<Types::Tag>]
|
1743
1877
|
#
|
1744
1878
|
# @!attribute [rw] snapshot_arns
|
@@ -1751,10 +1885,6 @@ module Aws::ElastiCache
|
|
1751
1885
|
# configured by *NodeGroupConfiguration* regardless of the number of
|
1752
1886
|
# ARNs specified here.
|
1753
1887
|
#
|
1754
|
-
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
1755
|
-
#
|
1756
|
-
# </note>
|
1757
|
-
#
|
1758
1888
|
# Example of an Amazon S3 ARN: `arn:aws:s3:::my_bucket/snapshot1.rdb`
|
1759
1889
|
# @return [Array<String>]
|
1760
1890
|
#
|
@@ -1762,10 +1892,6 @@ module Aws::ElastiCache
|
|
1762
1892
|
# The name of a snapshot from which to restore data into the new
|
1763
1893
|
# replication group. The snapshot status changes to `restoring` while
|
1764
1894
|
# the new replication group is being created.
|
1765
|
-
#
|
1766
|
-
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
1767
|
-
#
|
1768
|
-
# </note>
|
1769
1895
|
# @return [String]
|
1770
1896
|
#
|
1771
1897
|
# @!attribute [rw] preferred_maintenance_window
|
@@ -1823,10 +1949,6 @@ module Aws::ElastiCache
|
|
1823
1949
|
# `SnapshotRetentionLimit` to 5, a snapshot that was taken today is
|
1824
1950
|
# retained for 5 days before being deleted.
|
1825
1951
|
#
|
1826
|
-
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
1827
|
-
#
|
1828
|
-
# </note>
|
1829
|
-
#
|
1830
1952
|
# Default: 0 (i.e., automatic backups are disabled for this cache
|
1831
1953
|
# cluster).
|
1832
1954
|
# @return [Integer]
|
@@ -1839,16 +1961,20 @@ module Aws::ElastiCache
|
|
1839
1961
|
#
|
1840
1962
|
# If you do not specify this parameter, ElastiCache automatically
|
1841
1963
|
# chooses an appropriate time range.
|
1842
|
-
#
|
1843
|
-
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
1844
|
-
#
|
1845
|
-
# </note>
|
1846
1964
|
# @return [String]
|
1847
1965
|
#
|
1848
1966
|
# @!attribute [rw] auth_token
|
1849
1967
|
# **Reserved parameter.** The password used to access a password
|
1850
1968
|
# protected server.
|
1851
1969
|
#
|
1970
|
+
# This parameter is valid only if:
|
1971
|
+
#
|
1972
|
+
# * The parameter `TransitEncryptionEnabled` was set to `true` when
|
1973
|
+
# the cluster was created.
|
1974
|
+
#
|
1975
|
+
# * The line `requirepass` was added to the database configuration
|
1976
|
+
# file.
|
1977
|
+
#
|
1852
1978
|
# Password constraints:
|
1853
1979
|
#
|
1854
1980
|
# * Must be only printable ASCII characters.
|
@@ -1857,15 +1983,50 @@ module Aws::ElastiCache
|
|
1857
1983
|
# length.
|
1858
1984
|
#
|
1859
1985
|
# * Cannot contain any of the following characters: '/', '"', or
|
1860
|
-
#
|
1986
|
+
# '@'.
|
1861
1987
|
#
|
1862
|
-
# For more information, see [AUTH password][1] at
|
1988
|
+
# For more information, see [AUTH password][1] at
|
1989
|
+
# http://redis.io/commands/AUTH.
|
1863
1990
|
#
|
1864
1991
|
#
|
1865
1992
|
#
|
1866
1993
|
# [1]: http://redis.io/commands/AUTH
|
1867
1994
|
# @return [String]
|
1868
1995
|
#
|
1996
|
+
# @!attribute [rw] transit_encryption_enabled
|
1997
|
+
# A flag that enables in-transit encryption when set to `true`.
|
1998
|
+
#
|
1999
|
+
# You cannot modify the value of `TransitEncryptionEnabled` after the
|
2000
|
+
# cluster is created. To enable in-transit encryption on a cluster you
|
2001
|
+
# must set `TransitEncryptionEnabled` to `true` when you create a
|
2002
|
+
# cluster.
|
2003
|
+
#
|
2004
|
+
# This parameter is valid only if the `Engine` parameter is `redis`,
|
2005
|
+
# the `EngineVersion` parameter is `3.2.4` or later, and the cluster
|
2006
|
+
# is being created in an Amazon VPC.
|
2007
|
+
#
|
2008
|
+
# If you enable in-transit encryption, you must also specify a value
|
2009
|
+
# for `CacheSubnetGroup`.
|
2010
|
+
#
|
2011
|
+
# Default: `false`
|
2012
|
+
# @return [Boolean]
|
2013
|
+
#
|
2014
|
+
# @!attribute [rw] at_rest_encryption_enabled
|
2015
|
+
# A flag that enables encryption at rest when set to `true`.
|
2016
|
+
#
|
2017
|
+
# You cannot modify the value of `AtRestEncryptionEnabled` after the
|
2018
|
+
# replication group is created. To enable encryption at rest on a
|
2019
|
+
# replication group you must set `AtRestEncryptionEnabled` to `true`
|
2020
|
+
# when you create the replication group.
|
2021
|
+
#
|
2022
|
+
# <note markdown="1"> This parameter is valid only if the `Engine` parameter is `redis`
|
2023
|
+
# and the cluster is being created in an Amazon VPC.
|
2024
|
+
#
|
2025
|
+
# </note>
|
2026
|
+
#
|
2027
|
+
# Default: `false`
|
2028
|
+
# @return [Boolean]
|
2029
|
+
#
|
1869
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
|
1870
2031
|
#
|
1871
2032
|
class CreateReplicationGroupMessage < Struct.new(
|
@@ -1894,7 +2055,9 @@ module Aws::ElastiCache
|
|
1894
2055
|
:auto_minor_version_upgrade,
|
1895
2056
|
:snapshot_retention_limit,
|
1896
2057
|
:snapshot_window,
|
1897
|
-
:auth_token
|
2058
|
+
:auth_token,
|
2059
|
+
:transit_encryption_enabled,
|
2060
|
+
:at_rest_encryption_enabled)
|
1898
2061
|
include Aws::Structure
|
1899
2062
|
end
|
1900
2063
|
|
@@ -2671,27 +2834,47 @@ module Aws::ElastiCache
|
|
2671
2834
|
# The cache node type filter value. Use this parameter to show only
|
2672
2835
|
# those reservations matching the specified cache node type.
|
2673
2836
|
#
|
2674
|
-
#
|
2837
|
+
# The following node types are supported by ElastiCache. Generally
|
2838
|
+
# speaking, the current generation types provide more memory and
|
2839
|
+
# computational power at lower cost when compared to their equivalent
|
2840
|
+
# previous generation counterparts.
|
2675
2841
|
#
|
2676
2842
|
# * General purpose:
|
2677
2843
|
#
|
2678
|
-
# * Current generation:
|
2679
|
-
#
|
2680
|
-
#
|
2681
|
-
# `cache.
|
2682
|
-
#
|
2844
|
+
# * Current generation:
|
2845
|
+
#
|
2846
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
2847
|
+
# `cache.t2.medium`
|
2848
|
+
#
|
2849
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
2850
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
2683
2851
|
#
|
2684
|
-
#
|
2685
|
-
# `cache.
|
2852
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
2853
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
2686
2854
|
#
|
2687
|
-
#
|
2855
|
+
# * Previous generation: (not recommended)
|
2856
|
+
#
|
2857
|
+
# **T1 node types:** `cache.t1.micro`
|
2858
|
+
#
|
2859
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
2860
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
2861
|
+
#
|
2862
|
+
# * Compute optimized:
|
2863
|
+
#
|
2864
|
+
# * Previous generation: (not recommended)
|
2865
|
+
#
|
2866
|
+
# **C1 node types:** `cache.c1.xlarge`
|
2688
2867
|
#
|
2689
2868
|
# * Memory optimized:
|
2690
2869
|
#
|
2691
|
-
# * Current generation:
|
2870
|
+
# * Current generation:
|
2871
|
+
#
|
2872
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
2692
2873
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
2693
2874
|
#
|
2694
|
-
# * Previous generation:
|
2875
|
+
# * Previous generation: (not recommended)
|
2876
|
+
#
|
2877
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
2695
2878
|
# `cache.m2.4xlarge`
|
2696
2879
|
#
|
2697
2880
|
# **Notes:**
|
@@ -2699,13 +2882,18 @@ module Aws::ElastiCache
|
|
2699
2882
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
2700
2883
|
# (Amazon VPC).
|
2701
2884
|
#
|
2702
|
-
# * Redis backup/restore is not
|
2703
|
-
#
|
2704
|
-
#
|
2885
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
2886
|
+
# supported on T1 and T2 instances.
|
2887
|
+
#
|
2888
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
2889
|
+
# T1 instances.
|
2705
2890
|
#
|
2706
2891
|
# * Redis Append-only files (AOF) functionality is not supported for
|
2707
2892
|
# T1 or T2 instances.
|
2708
2893
|
#
|
2894
|
+
# Supported node types are available in all regions except as noted in
|
2895
|
+
# the following table.
|
2896
|
+
#
|
2709
2897
|
# For a complete listing of node types and specifications, see [Amazon
|
2710
2898
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
2711
2899
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -2798,27 +2986,47 @@ module Aws::ElastiCache
|
|
2798
2986
|
# The cache node type filter value. Use this parameter to show only
|
2799
2987
|
# the available offerings matching the specified cache node type.
|
2800
2988
|
#
|
2801
|
-
#
|
2989
|
+
# The following node types are supported by ElastiCache. Generally
|
2990
|
+
# speaking, the current generation types provide more memory and
|
2991
|
+
# computational power at lower cost when compared to their equivalent
|
2992
|
+
# previous generation counterparts.
|
2802
2993
|
#
|
2803
2994
|
# * General purpose:
|
2804
2995
|
#
|
2805
|
-
# * Current generation:
|
2806
|
-
#
|
2807
|
-
#
|
2808
|
-
# `cache.
|
2809
|
-
#
|
2996
|
+
# * Current generation:
|
2997
|
+
#
|
2998
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
2999
|
+
# `cache.t2.medium`
|
3000
|
+
#
|
3001
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
3002
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
3003
|
+
#
|
3004
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
3005
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
2810
3006
|
#
|
2811
|
-
# * Previous generation:
|
2812
|
-
# `cache.m1.medium`, `cache.m1.large`, `cache.m1.xlarge`
|
3007
|
+
# * Previous generation: (not recommended)
|
2813
3008
|
#
|
2814
|
-
#
|
3009
|
+
# **T1 node types:** `cache.t1.micro`
|
3010
|
+
#
|
3011
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
3012
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
3013
|
+
#
|
3014
|
+
# * Compute optimized:
|
3015
|
+
#
|
3016
|
+
# * Previous generation: (not recommended)
|
3017
|
+
#
|
3018
|
+
# **C1 node types:** `cache.c1.xlarge`
|
2815
3019
|
#
|
2816
3020
|
# * Memory optimized:
|
2817
3021
|
#
|
2818
|
-
# * Current generation:
|
3022
|
+
# * Current generation:
|
3023
|
+
#
|
3024
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
2819
3025
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
2820
3026
|
#
|
2821
|
-
# * Previous generation:
|
3027
|
+
# * Previous generation: (not recommended)
|
3028
|
+
#
|
3029
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
2822
3030
|
# `cache.m2.4xlarge`
|
2823
3031
|
#
|
2824
3032
|
# **Notes:**
|
@@ -2826,13 +3034,18 @@ module Aws::ElastiCache
|
|
2826
3034
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
2827
3035
|
# (Amazon VPC).
|
2828
3036
|
#
|
2829
|
-
# * Redis backup/restore is not
|
2830
|
-
#
|
2831
|
-
#
|
3037
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
3038
|
+
# supported on T1 and T2 instances.
|
3039
|
+
#
|
3040
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
3041
|
+
# T1 instances.
|
2832
3042
|
#
|
2833
3043
|
# * Redis Append-only files (AOF) functionality is not supported for
|
2834
3044
|
# T1 or T2 instances.
|
2835
3045
|
#
|
3046
|
+
# Supported node types are available in all regions except as noted in
|
3047
|
+
# the following table.
|
3048
|
+
#
|
2836
3049
|
# For a complete listing of node types and specifications, see [Amazon
|
2837
3050
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
2838
3051
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -3274,7 +3487,7 @@ module Aws::ElastiCache
|
|
3274
3487
|
# `NumCacheNodes` in the request.
|
3275
3488
|
#
|
3276
3489
|
# For example: If you have 3 active cache nodes, 7 pending cache
|
3277
|
-
# nodes, and the number of cache nodes in this `
|
3490
|
+
# nodes, and the number of cache nodes in this `ModifyCacheCluster`
|
3278
3491
|
# call is 5, you must list 2 (7 - 5) cache node IDs to remove.
|
3279
3492
|
# @return [Array<String>]
|
3280
3493
|
#
|
@@ -3690,15 +3903,14 @@ module Aws::ElastiCache
|
|
3690
3903
|
#
|
3691
3904
|
# Valid values: `true` \| `false`
|
3692
3905
|
#
|
3693
|
-
#
|
3694
|
-
#
|
3695
|
-
# * Redis versions earlier than 2.8.6.
|
3906
|
+
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
3907
|
+
# automatic failover on:
|
3696
3908
|
#
|
3697
|
-
# * Redis
|
3909
|
+
# * Redis versions earlier than 2.8.6.
|
3698
3910
|
#
|
3699
|
-
#
|
3911
|
+
# * Redis (cluster mode disabled): T1 and T2 cache node types.
|
3700
3912
|
#
|
3701
|
-
#
|
3913
|
+
# * Redis (cluster mode enabled): T1 node types.
|
3702
3914
|
# @return [Boolean]
|
3703
3915
|
#
|
3704
3916
|
# @!attribute [rw] cache_security_group_names
|
@@ -4378,17 +4590,17 @@ module Aws::ElastiCache
|
|
4378
4590
|
# @return [String]
|
4379
4591
|
#
|
4380
4592
|
# @!attribute [rw] automatic_failover
|
4381
|
-
# Indicates the status of Multi-AZ for this
|
4382
|
-
#
|
4383
|
-
# <note markdown="1"> ElastiCache Multi-AZ replication groups are not supported on:
|
4593
|
+
# Indicates the status of Multi-AZ with automatic failover for this
|
4594
|
+
# Redis replication group.
|
4384
4595
|
#
|
4385
|
-
#
|
4596
|
+
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
4597
|
+
# automatic failover on:
|
4386
4598
|
#
|
4387
|
-
# * Redis
|
4599
|
+
# * Redis versions earlier than 2.8.6.
|
4388
4600
|
#
|
4389
|
-
#
|
4601
|
+
# * Redis (cluster mode disabled): T1 and T2 cache node types.
|
4390
4602
|
#
|
4391
|
-
#
|
4603
|
+
# * Redis (cluster mode enabled): T1 node types.
|
4392
4604
|
# @return [String]
|
4393
4605
|
#
|
4394
4606
|
# @!attribute [rw] configuration_endpoint
|
@@ -4415,8 +4627,9 @@ module Aws::ElastiCache
|
|
4415
4627
|
# If you do not specify this parameter, ElastiCache automatically
|
4416
4628
|
# chooses an appropriate time range.
|
4417
4629
|
#
|
4418
|
-
#
|
4419
|
-
#
|
4630
|
+
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
4631
|
+
#
|
4632
|
+
# </note>
|
4420
4633
|
# @return [String]
|
4421
4634
|
#
|
4422
4635
|
# @!attribute [rw] cluster_enabled
|
@@ -4432,6 +4645,35 @@ module Aws::ElastiCache
|
|
4432
4645
|
# in the replication group.
|
4433
4646
|
# @return [String]
|
4434
4647
|
#
|
4648
|
+
# @!attribute [rw] auth_token_enabled
|
4649
|
+
# A flag that enables using an `AuthToken` (password) when issuing
|
4650
|
+
# Redis commands.
|
4651
|
+
#
|
4652
|
+
# Default: `false`
|
4653
|
+
# @return [Boolean]
|
4654
|
+
#
|
4655
|
+
# @!attribute [rw] transit_encryption_enabled
|
4656
|
+
# A flag that enables in-transit encryption when set to `true`.
|
4657
|
+
#
|
4658
|
+
# You cannot modify the value of `TransitEncryptionEnabled` after the
|
4659
|
+
# cluster is created. To enable in-transit encryption on a cluster you
|
4660
|
+
# must set `TransitEncryptionEnabled` to `true` when you create a
|
4661
|
+
# cluster.
|
4662
|
+
#
|
4663
|
+
# Default: `false`
|
4664
|
+
# @return [Boolean]
|
4665
|
+
#
|
4666
|
+
# @!attribute [rw] at_rest_encryption_enabled
|
4667
|
+
# A flag that enables encryption at-rest when set to `true`.
|
4668
|
+
#
|
4669
|
+
# You cannot modify the value of `AtRestEncryptionEnabled` after the
|
4670
|
+
# cluster is created. To enable encryption at-rest on a cluster you
|
4671
|
+
# must set `AtRestEncryptionEnabled` to `true` when you create a
|
4672
|
+
# cluster.
|
4673
|
+
#
|
4674
|
+
# Default: `false`
|
4675
|
+
# @return [Boolean]
|
4676
|
+
#
|
4435
4677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
4436
4678
|
#
|
4437
4679
|
class ReplicationGroup < Struct.new(
|
@@ -4447,7 +4689,10 @@ module Aws::ElastiCache
|
|
4447
4689
|
:snapshot_retention_limit,
|
4448
4690
|
:snapshot_window,
|
4449
4691
|
:cluster_enabled,
|
4450
|
-
:cache_node_type
|
4692
|
+
:cache_node_type,
|
4693
|
+
:auth_token_enabled,
|
4694
|
+
:transit_encryption_enabled,
|
4695
|
+
:at_rest_encryption_enabled)
|
4451
4696
|
include Aws::Structure
|
4452
4697
|
end
|
4453
4698
|
|
@@ -4480,17 +4725,17 @@ module Aws::ElastiCache
|
|
4480
4725
|
# @return [String]
|
4481
4726
|
#
|
4482
4727
|
# @!attribute [rw] automatic_failover_status
|
4483
|
-
# Indicates the status of Multi-AZ
|
4484
|
-
#
|
4485
|
-
# <note markdown="1"> ElastiCache Multi-AZ replication groups are not supported on:
|
4728
|
+
# Indicates the status of Multi-AZ with automatic failover for this
|
4729
|
+
# Redis replication group.
|
4486
4730
|
#
|
4487
|
-
#
|
4731
|
+
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
4732
|
+
# automatic failover on:
|
4488
4733
|
#
|
4489
|
-
# * Redis
|
4734
|
+
# * Redis versions earlier than 2.8.6.
|
4490
4735
|
#
|
4491
|
-
#
|
4736
|
+
# * Redis (cluster mode disabled): T1 and T2 cache node types.
|
4492
4737
|
#
|
4493
|
-
#
|
4738
|
+
# * Redis (cluster mode enabled): T1 node types.
|
4494
4739
|
# @return [String]
|
4495
4740
|
#
|
4496
4741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroupPendingModifiedValues AWS API Documentation
|
@@ -4515,27 +4760,47 @@ module Aws::ElastiCache
|
|
4515
4760
|
# @!attribute [rw] cache_node_type
|
4516
4761
|
# The cache node type for the reserved cache nodes.
|
4517
4762
|
#
|
4518
|
-
#
|
4763
|
+
# The following node types are supported by ElastiCache. Generally
|
4764
|
+
# speaking, the current generation types provide more memory and
|
4765
|
+
# computational power at lower cost when compared to their equivalent
|
4766
|
+
# previous generation counterparts.
|
4519
4767
|
#
|
4520
4768
|
# * General purpose:
|
4521
4769
|
#
|
4522
|
-
# * Current generation:
|
4523
|
-
# `cache.t2.medium`, `cache.m3.medium`, `cache.m3.large`,
|
4524
|
-
# `cache.m3.xlarge`, `cache.m3.2xlarge`, `cache.m4.large`,
|
4525
|
-
# `cache.m4.xlarge`, `cache.m4.2xlarge`, `cache.m4.4xlarge`,
|
4526
|
-
# `cache.m4.10xlarge`
|
4770
|
+
# * Current generation:
|
4527
4771
|
#
|
4528
|
-
#
|
4529
|
-
# `cache.
|
4772
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
4773
|
+
# `cache.t2.medium`
|
4530
4774
|
#
|
4531
|
-
#
|
4775
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
4776
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
4777
|
+
#
|
4778
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
4779
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4780
|
+
#
|
4781
|
+
# * Previous generation: (not recommended)
|
4782
|
+
#
|
4783
|
+
# **T1 node types:** `cache.t1.micro`
|
4784
|
+
#
|
4785
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
4786
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
4787
|
+
#
|
4788
|
+
# * Compute optimized:
|
4789
|
+
#
|
4790
|
+
# * Previous generation: (not recommended)
|
4791
|
+
#
|
4792
|
+
# **C1 node types:** `cache.c1.xlarge`
|
4532
4793
|
#
|
4533
4794
|
# * Memory optimized:
|
4534
4795
|
#
|
4535
|
-
# * Current generation:
|
4796
|
+
# * Current generation:
|
4797
|
+
#
|
4798
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
4536
4799
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
4537
4800
|
#
|
4538
|
-
# * Previous generation:
|
4801
|
+
# * Previous generation: (not recommended)
|
4802
|
+
#
|
4803
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
4539
4804
|
# `cache.m2.4xlarge`
|
4540
4805
|
#
|
4541
4806
|
# **Notes:**
|
@@ -4543,13 +4808,18 @@ module Aws::ElastiCache
|
|
4543
4808
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
4544
4809
|
# (Amazon VPC).
|
4545
4810
|
#
|
4546
|
-
# * Redis backup/restore is not
|
4547
|
-
#
|
4548
|
-
#
|
4811
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
4812
|
+
# supported on T1 and T2 instances.
|
4813
|
+
#
|
4814
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
4815
|
+
# T1 instances.
|
4549
4816
|
#
|
4550
4817
|
# * Redis Append-only files (AOF) functionality is not supported for
|
4551
4818
|
# T1 or T2 instances.
|
4552
4819
|
#
|
4820
|
+
# Supported node types are available in all regions except as noted in
|
4821
|
+
# the following table.
|
4822
|
+
#
|
4553
4823
|
# For a complete listing of node types and specifications, see [Amazon
|
4554
4824
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
4555
4825
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -4644,27 +4914,47 @@ module Aws::ElastiCache
|
|
4644
4914
|
# @!attribute [rw] cache_node_type
|
4645
4915
|
# The cache node type for the reserved cache node.
|
4646
4916
|
#
|
4647
|
-
#
|
4917
|
+
# The following node types are supported by ElastiCache. Generally
|
4918
|
+
# speaking, the current generation types provide more memory and
|
4919
|
+
# computational power at lower cost when compared to their equivalent
|
4920
|
+
# previous generation counterparts.
|
4648
4921
|
#
|
4649
4922
|
# * General purpose:
|
4650
4923
|
#
|
4651
|
-
# * Current generation:
|
4652
|
-
#
|
4653
|
-
#
|
4654
|
-
# `cache.
|
4655
|
-
# `cache.m4.10xlarge`
|
4924
|
+
# * Current generation:
|
4925
|
+
#
|
4926
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
4927
|
+
# `cache.t2.medium`
|
4656
4928
|
#
|
4657
|
-
#
|
4658
|
-
# `cache.
|
4929
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
4930
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
4659
4931
|
#
|
4660
|
-
#
|
4932
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
4933
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4934
|
+
#
|
4935
|
+
# * Previous generation: (not recommended)
|
4936
|
+
#
|
4937
|
+
# **T1 node types:** `cache.t1.micro`
|
4938
|
+
#
|
4939
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
4940
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
4941
|
+
#
|
4942
|
+
# * Compute optimized:
|
4943
|
+
#
|
4944
|
+
# * Previous generation: (not recommended)
|
4945
|
+
#
|
4946
|
+
# **C1 node types:** `cache.c1.xlarge`
|
4661
4947
|
#
|
4662
4948
|
# * Memory optimized:
|
4663
4949
|
#
|
4664
|
-
# * Current generation:
|
4950
|
+
# * Current generation:
|
4951
|
+
#
|
4952
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
4665
4953
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
4666
4954
|
#
|
4667
|
-
# * Previous generation:
|
4955
|
+
# * Previous generation: (not recommended)
|
4956
|
+
#
|
4957
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
4668
4958
|
# `cache.m2.4xlarge`
|
4669
4959
|
#
|
4670
4960
|
# **Notes:**
|
@@ -4672,13 +4962,18 @@ module Aws::ElastiCache
|
|
4672
4962
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
4673
4963
|
# (Amazon VPC).
|
4674
4964
|
#
|
4675
|
-
# * Redis backup/restore is not
|
4676
|
-
#
|
4677
|
-
#
|
4965
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
4966
|
+
# supported on T1 and T2 instances.
|
4967
|
+
#
|
4968
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
4969
|
+
# T1 instances.
|
4678
4970
|
#
|
4679
4971
|
# * Redis Append-only files (AOF) functionality is not supported for
|
4680
4972
|
# T1 or T2 instances.
|
4681
4973
|
#
|
4974
|
+
# Supported node types are available in all regions except as noted in
|
4975
|
+
# the following table.
|
4976
|
+
#
|
4682
4977
|
# For a complete listing of node types and specifications, see [Amazon
|
4683
4978
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
4684
4979
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -4899,27 +5194,47 @@ module Aws::ElastiCache
|
|
4899
5194
|
# The name of the compute and memory capacity node type for the source
|
4900
5195
|
# cache cluster.
|
4901
5196
|
#
|
4902
|
-
#
|
5197
|
+
# The following node types are supported by ElastiCache. Generally
|
5198
|
+
# speaking, the current generation types provide more memory and
|
5199
|
+
# computational power at lower cost when compared to their equivalent
|
5200
|
+
# previous generation counterparts.
|
4903
5201
|
#
|
4904
5202
|
# * General purpose:
|
4905
5203
|
#
|
4906
|
-
# * Current generation:
|
4907
|
-
#
|
4908
|
-
#
|
4909
|
-
# `cache.
|
4910
|
-
#
|
5204
|
+
# * Current generation:
|
5205
|
+
#
|
5206
|
+
# **T2 node types:** `cache.t2.micro`, `cache.t2.small`,
|
5207
|
+
# `cache.t2.medium`
|
5208
|
+
#
|
5209
|
+
# **M3 node types:** `cache.m3.medium`, `cache.m3.large`,
|
5210
|
+
# `cache.m3.xlarge`, `cache.m3.2xlarge`
|
4911
5211
|
#
|
4912
|
-
#
|
4913
|
-
# `cache.
|
5212
|
+
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
5213
|
+
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4914
5214
|
#
|
4915
|
-
#
|
5215
|
+
# * Previous generation: (not recommended)
|
5216
|
+
#
|
5217
|
+
# **T1 node types:** `cache.t1.micro`
|
5218
|
+
#
|
5219
|
+
# **M1 node types:** `cache.m1.small`, `cache.m1.medium`,
|
5220
|
+
# `cache.m1.large`, `cache.m1.xlarge`
|
5221
|
+
#
|
5222
|
+
# * Compute optimized:
|
5223
|
+
#
|
5224
|
+
# * Previous generation: (not recommended)
|
5225
|
+
#
|
5226
|
+
# **C1 node types:** `cache.c1.xlarge`
|
4916
5227
|
#
|
4917
5228
|
# * Memory optimized:
|
4918
5229
|
#
|
4919
|
-
# * Current generation:
|
5230
|
+
# * Current generation:
|
5231
|
+
#
|
5232
|
+
# **R3 node types:** `cache.r3.large`, `cache.r3.xlarge`,
|
4920
5233
|
# `cache.r3.2xlarge`, `cache.r3.4xlarge`, `cache.r3.8xlarge`
|
4921
5234
|
#
|
4922
|
-
# * Previous generation:
|
5235
|
+
# * Previous generation: (not recommended)
|
5236
|
+
#
|
5237
|
+
# **M2 node types:** `cache.m2.xlarge`, `cache.m2.2xlarge`,
|
4923
5238
|
# `cache.m2.4xlarge`
|
4924
5239
|
#
|
4925
5240
|
# **Notes:**
|
@@ -4927,13 +5242,18 @@ module Aws::ElastiCache
|
|
4927
5242
|
# * All T2 instances are created in an Amazon Virtual Private Cloud
|
4928
5243
|
# (Amazon VPC).
|
4929
5244
|
#
|
4930
|
-
# * Redis backup/restore is not
|
4931
|
-
#
|
4932
|
-
#
|
5245
|
+
# * Redis (cluster mode disabled): Redis backup/restore is not
|
5246
|
+
# supported on T1 and T2 instances.
|
5247
|
+
#
|
5248
|
+
# * Redis (cluster mode enabled): Backup/restore is not supported on
|
5249
|
+
# T1 instances.
|
4933
5250
|
#
|
4934
5251
|
# * Redis Append-only files (AOF) functionality is not supported for
|
4935
5252
|
# T1 or T2 instances.
|
4936
5253
|
#
|
5254
|
+
# Supported node types are available in all regions except as noted in
|
5255
|
+
# the following table.
|
5256
|
+
#
|
4937
5257
|
# For a complete listing of node types and specifications, see [Amazon
|
4938
5258
|
# ElastiCache Product Features and Details][1] and either [Cache Node
|
4939
5259
|
# Type-Specific Parameters for Memcached][2] or [Cache Node
|
@@ -5052,17 +5372,17 @@ module Aws::ElastiCache
|
|
5052
5372
|
# @return [Integer]
|
5053
5373
|
#
|
5054
5374
|
# @!attribute [rw] automatic_failover
|
5055
|
-
# Indicates the status of Multi-AZ
|
5375
|
+
# Indicates the status of Multi-AZ with automatic failover for the
|
5376
|
+
# source Redis replication group.
|
5056
5377
|
#
|
5057
|
-
#
|
5378
|
+
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
5379
|
+
# automatic failover on:
|
5058
5380
|
#
|
5059
|
-
#
|
5381
|
+
# * Redis versions earlier than 2.8.6.
|
5060
5382
|
#
|
5061
|
-
# * Redis (cluster mode disabled):T1 and T2 cache node types.
|
5383
|
+
# * Redis (cluster mode disabled): T1 and T2 cache node types.
|
5062
5384
|
#
|
5063
|
-
#
|
5064
|
-
#
|
5065
|
-
# </note>
|
5385
|
+
# * Redis (cluster mode enabled): T1 node types.
|
5066
5386
|
# @return [String]
|
5067
5387
|
#
|
5068
5388
|
# @!attribute [rw] node_snapshots
|