aws-sdk-elasticache 1.107.0 → 1.108.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticache/client.rb +261 -246
- data/lib/aws-sdk-elasticache/types.rb +328 -304
- data/lib/aws-sdk-elasticache.rb +1 -1
- metadata +2 -2
@@ -55,7 +55,7 @@ module Aws::ElastiCache
|
|
55
55
|
# A string list, each element of which specifies a cache node type
|
56
56
|
# which you can use to scale your cluster or replication group.
|
57
57
|
#
|
58
|
-
# When scaling up a Redis cluster or replication group using
|
58
|
+
# When scaling up a Redis OSS cluster or replication group using
|
59
59
|
# `ModifyCacheCluster` or `ModifyReplicationGroup`, use a value from
|
60
60
|
# this list for the `CacheNodeType` parameter.
|
61
61
|
# @return [Array<String>]
|
@@ -63,7 +63,7 @@ module Aws::ElastiCache
|
|
63
63
|
# @!attribute [rw] scale_down_modifications
|
64
64
|
# A string list, each element of which specifies a cache node type
|
65
65
|
# which you can use to scale your cluster or replication group. When
|
66
|
-
# scaling down a Redis cluster or replication group using
|
66
|
+
# scaling down a Redis OSS cluster or replication group using
|
67
67
|
# ModifyCacheCluster or ModifyReplicationGroup, use a value from this
|
68
68
|
# list for the CacheNodeType parameter.
|
69
69
|
# @return [Array<String>]
|
@@ -276,7 +276,7 @@ module Aws::ElastiCache
|
|
276
276
|
#
|
277
277
|
# </note>
|
278
278
|
#
|
279
|
-
# **M6g node types** (available only for Redis engine version
|
279
|
+
# **M6g node types** (available only for Redis OSS engine version
|
280
280
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
281
281
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
282
282
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -289,7 +289,7 @@ module Aws::ElastiCache
|
|
289
289
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
290
290
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
291
291
|
#
|
292
|
-
# **T4g node types** (available only for Redis engine version
|
292
|
+
# **T4g node types** (available only for Redis OSS engine version
|
293
293
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
294
294
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
295
295
|
#
|
@@ -331,7 +331,7 @@ module Aws::ElastiCache
|
|
331
331
|
#
|
332
332
|
# </note>
|
333
333
|
#
|
334
|
-
# **R6g node types** (available only for Redis engine version
|
334
|
+
# **R6g node types** (available only for Redis OSS engine version
|
335
335
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
336
336
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
337
337
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -360,14 +360,14 @@ module Aws::ElastiCache
|
|
360
360
|
# * All current generation instance types are created in Amazon VPC by
|
361
361
|
# default.
|
362
362
|
#
|
363
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
363
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
364
364
|
# instances.
|
365
365
|
#
|
366
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
366
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
367
367
|
# instances.
|
368
368
|
#
|
369
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
370
|
-
# not supported on Redis version 2.8.22 and later.
|
369
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
370
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
371
371
|
#
|
372
372
|
#
|
373
373
|
#
|
@@ -393,7 +393,7 @@ module Aws::ElastiCache
|
|
393
393
|
# @!attribute [rw] num_cache_nodes
|
394
394
|
# The number of cache nodes in the cluster.
|
395
395
|
#
|
396
|
-
# For clusters running Redis, this value must be 1. For clusters
|
396
|
+
# For clusters running Redis OSS, this value must be 1. For clusters
|
397
397
|
# running Memcached, this value must be between 1 and 40.
|
398
398
|
# @return [Integer]
|
399
399
|
#
|
@@ -465,7 +465,7 @@ module Aws::ElastiCache
|
|
465
465
|
# @return [Array<Types::CacheNode>]
|
466
466
|
#
|
467
467
|
# @!attribute [rw] auto_minor_version_upgrade
|
468
|
-
# If you are running Redis engine version 6.0 or later, set this
|
468
|
+
# If you are running Redis OSS engine version 6.0 or later, set this
|
469
469
|
# parameter to yes if you want to opt-in to the next auto minor
|
470
470
|
# version upgrade campaign. This parameter is disabled for previous
|
471
471
|
# versions.
|
@@ -499,7 +499,7 @@ module Aws::ElastiCache
|
|
499
499
|
#
|
500
500
|
# @!attribute [rw] auth_token_enabled
|
501
501
|
# A flag that enables using an `AuthToken` (password) when issuing
|
502
|
-
# Redis commands.
|
502
|
+
# Redis OSS commands.
|
503
503
|
#
|
504
504
|
# Default: `false`
|
505
505
|
# @return [Boolean]
|
@@ -512,7 +512,7 @@ module Aws::ElastiCache
|
|
512
512
|
# A flag that enables in-transit encryption when set to `true`.
|
513
513
|
#
|
514
514
|
# **Required:** Only available when creating a replication group in an
|
515
|
-
# Amazon VPC using
|
515
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
516
516
|
#
|
517
517
|
# Default: `false`
|
518
518
|
# @return [Boolean]
|
@@ -526,7 +526,7 @@ module Aws::ElastiCache
|
|
526
526
|
# cluster.
|
527
527
|
#
|
528
528
|
# **Required:** Only available when creating a replication group in an
|
529
|
-
# Amazon VPC using
|
529
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
530
530
|
#
|
531
531
|
# Default: `false`
|
532
532
|
# @return [Boolean]
|
@@ -546,7 +546,7 @@ module Aws::ElastiCache
|
|
546
546
|
#
|
547
547
|
# @!attribute [rw] network_type
|
548
548
|
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
549
|
-
# for workloads using Redis engine version 6.2 onward or Memcached
|
549
|
+
# for workloads using Redis OSS engine version 6.2 onward or Memcached
|
550
550
|
# engine version 1.6.6 on all instances built on the [Nitro
|
551
551
|
# system][1].
|
552
552
|
#
|
@@ -557,9 +557,9 @@ module Aws::ElastiCache
|
|
557
557
|
#
|
558
558
|
# @!attribute [rw] ip_discovery
|
559
559
|
# The network type associated with the cluster, either `ipv4` \|
|
560
|
-
# `ipv6`. IPv6 is supported for workloads using Redis engine
|
561
|
-
# 6.2 onward or Memcached engine version 1.6.6 on all
|
562
|
-
# on the [Nitro system][1].
|
560
|
+
# `ipv6`. IPv6 is supported for workloads using Redis OSS engine
|
561
|
+
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
562
|
+
# instances built on the [Nitro system][1].
|
563
563
|
#
|
564
564
|
#
|
565
565
|
#
|
@@ -704,7 +704,7 @@ module Aws::ElastiCache
|
|
704
704
|
|
705
705
|
# Represents an individual cache node within a cluster. Each cache node
|
706
706
|
# runs its own instance of the cluster's protocol-compliant caching
|
707
|
-
# software - either Memcached or Redis.
|
707
|
+
# software - either Memcached or Redis OSS.
|
708
708
|
#
|
709
709
|
# The following node types are supported by ElastiCache. Generally
|
710
710
|
# speaking, the current generation types provide more memory and
|
@@ -723,8 +723,8 @@ module Aws::ElastiCache
|
|
723
723
|
#
|
724
724
|
# </note>
|
725
725
|
#
|
726
|
-
# **M6g node types** (available only for Redis engine version
|
727
|
-
# onward and for Memcached engine version 1.5.16 onward):
|
726
|
+
# **M6g node types** (available only for Redis OSS engine version
|
727
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
728
728
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
729
729
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
730
730
|
# `cache.m6g.16xlarge`
|
@@ -736,8 +736,8 @@ module Aws::ElastiCache
|
|
736
736
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
737
737
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
738
738
|
#
|
739
|
-
# **T4g node types** (available only for Redis engine version
|
740
|
-
# onward and Memcached engine version 1.5.16 onward):
|
739
|
+
# **T4g node types** (available only for Redis OSS engine version
|
740
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
741
741
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
742
742
|
#
|
743
743
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
@@ -778,8 +778,8 @@ module Aws::ElastiCache
|
|
778
778
|
#
|
779
779
|
# </note>
|
780
780
|
#
|
781
|
-
# **R6g node types** (available only for Redis engine version
|
782
|
-
# onward and for Memcached engine version 1.5.16 onward):
|
781
|
+
# **R6g node types** (available only for Redis OSS engine version
|
782
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
783
783
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
784
784
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
785
785
|
# `cache.r6g.16xlarge`
|
@@ -807,14 +807,14 @@ module Aws::ElastiCache
|
|
807
807
|
# * All current generation instance types are created in Amazon VPC by
|
808
808
|
# default.
|
809
809
|
#
|
810
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
810
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
811
811
|
# instances.
|
812
812
|
#
|
813
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
813
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
814
814
|
# instances.
|
815
815
|
#
|
816
|
-
# * Redis configuration variables `appendonly` and `appendfsync` are
|
817
|
-
# supported on Redis version 2.8.22 and later.
|
816
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync` are
|
817
|
+
# not supported on Redis OSS version 2.8.22 and later.
|
818
818
|
#
|
819
819
|
#
|
820
820
|
#
|
@@ -873,8 +873,8 @@ module Aws::ElastiCache
|
|
873
873
|
end
|
874
874
|
|
875
875
|
# A parameter that has a different value for each cache node type it is
|
876
|
-
# applied to. For example, in a Redis cluster, a `cache.m1.large`
|
877
|
-
# node type would have a larger `maxmemory` value than a
|
876
|
+
# applied to. For example, in a Redis OSS cluster, a `cache.m1.large`
|
877
|
+
# cache node type would have a larger `maxmemory` value than a
|
878
878
|
# `cache.m1.small` type.
|
879
879
|
#
|
880
880
|
# @!attribute [rw] parameter_name
|
@@ -1290,8 +1290,9 @@ module Aws::ElastiCache
|
|
1290
1290
|
#
|
1291
1291
|
# @!attribute [rw] supported_network_types
|
1292
1292
|
# Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
1293
|
-
# workloads using Redis engine version 6.2 onward or Memcached
|
1294
|
-
# version 1.6.6 on all instances built on the [Nitro
|
1293
|
+
# workloads using Redis OSS engine version 6.2 onward or Memcached
|
1294
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
1295
|
+
# system][1].
|
1295
1296
|
#
|
1296
1297
|
#
|
1297
1298
|
#
|
@@ -1428,7 +1429,7 @@ module Aws::ElastiCache
|
|
1428
1429
|
end
|
1429
1430
|
|
1430
1431
|
# @!attribute [rw] replication_group
|
1431
|
-
# Contains all of the attributes of a specific Redis replication
|
1432
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
1432
1433
|
# group.
|
1433
1434
|
# @return [Types::ReplicationGroup]
|
1434
1435
|
#
|
@@ -1445,10 +1446,10 @@ module Aws::ElastiCache
|
|
1445
1446
|
# members: NodeGroupId, NewReplicaCount, and PreferredAvailabilityZones.
|
1446
1447
|
#
|
1447
1448
|
# @!attribute [rw] node_group_id
|
1448
|
-
# The 4-digit id for the node group you are configuring. For Redis
|
1449
|
+
# The 4-digit id for the node group you are configuring. For Redis OSS
|
1449
1450
|
# (cluster mode disabled) replication groups, the node group id is
|
1450
|
-
# always 0001. To find a Redis (cluster mode enabled)'s node
|
1451
|
-
# (shard's) id, see [Finding a Shard's Id][1].
|
1451
|
+
# always 0001. To find a Redis OSS (cluster mode enabled)'s node
|
1452
|
+
# group's (shard's) id, see [Finding a Shard's Id][1].
|
1452
1453
|
#
|
1453
1454
|
#
|
1454
1455
|
#
|
@@ -1458,19 +1459,19 @@ module Aws::ElastiCache
|
|
1458
1459
|
# @!attribute [rw] new_replica_count
|
1459
1460
|
# The number of replicas you want in this node group at the end of
|
1460
1461
|
# this operation. The maximum value for `NewReplicaCount` is 5. The
|
1461
|
-
# minimum value depends upon the type of Redis replication group
|
1462
|
-
# are working with.
|
1462
|
+
# minimum value depends upon the type of Redis OSS replication group
|
1463
|
+
# you are working with.
|
1463
1464
|
#
|
1464
1465
|
# The minimum number of replicas in a shard or replication group is:
|
1465
1466
|
#
|
1466
|
-
# * Redis (cluster mode disabled)
|
1467
|
+
# * Redis OSS (cluster mode disabled)
|
1467
1468
|
#
|
1468
1469
|
# * If Multi-AZ: 1
|
1469
1470
|
#
|
1470
1471
|
# * If Multi-AZ: 0
|
1471
1472
|
#
|
1472
|
-
# * Redis (cluster mode enabled): 0 (though you will not be able
|
1473
|
-
# failover to a replica if your primary node fails)
|
1473
|
+
# * Redis OSS (cluster mode enabled): 0 (though you will not be able
|
1474
|
+
# to failover to a replica if your primary node fails)
|
1474
1475
|
# @return [Integer]
|
1475
1476
|
#
|
1476
1477
|
# @!attribute [rw] preferred_availability_zones
|
@@ -1478,7 +1479,7 @@ module Aws::ElastiCache
|
|
1478
1479
|
# availability zones the replication group's nodes are to be in. The
|
1479
1480
|
# nummber of `PreferredAvailabilityZone` values must equal the value
|
1480
1481
|
# of `NewReplicaCount` plus 1 to account for the primary node. If this
|
1481
|
-
# member of `ReplicaConfiguration` is omitted, ElastiCache
|
1482
|
+
# member of `ReplicaConfiguration` is omitted, ElastiCache (Redis OSS)
|
1482
1483
|
# selects the availability zone for each of the replicas.
|
1483
1484
|
# @return [Array<String>]
|
1484
1485
|
#
|
@@ -1499,22 +1500,23 @@ module Aws::ElastiCache
|
|
1499
1500
|
|
1500
1501
|
# @!attribute [rw] source_serverless_cache_snapshot_name
|
1501
1502
|
# The identifier of the existing serverless cache’s snapshot to be
|
1502
|
-
# copied. Available for Redis only.
|
1503
|
+
# copied. Available for Redis OSS and Serverless Memcached only.
|
1503
1504
|
# @return [String]
|
1504
1505
|
#
|
1505
1506
|
# @!attribute [rw] target_serverless_cache_snapshot_name
|
1506
1507
|
# The identifier for the snapshot to be created. Available for Redis
|
1507
|
-
# only.
|
1508
|
+
# OSS and Serverless Memcached only.
|
1508
1509
|
# @return [String]
|
1509
1510
|
#
|
1510
1511
|
# @!attribute [rw] kms_key_id
|
1511
1512
|
# The identifier of the KMS key used to encrypt the target snapshot.
|
1512
|
-
# Available for Redis only.
|
1513
|
+
# Available for Redis OSS and Serverless Memcached only.
|
1513
1514
|
# @return [String]
|
1514
1515
|
#
|
1515
1516
|
# @!attribute [rw] tags
|
1516
1517
|
# A list of tags to be added to the target snapshot resource. A tag is
|
1517
|
-
# a key-value pair. Available for Redis
|
1518
|
+
# a key-value pair. Available for Redis OSS and Serverless Memcached
|
1519
|
+
# only. Default: NULL
|
1518
1520
|
# @return [Array<Types::Tag>]
|
1519
1521
|
#
|
1520
1522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopyServerlessCacheSnapshotRequest AWS API Documentation
|
@@ -1530,7 +1532,7 @@ module Aws::ElastiCache
|
|
1530
1532
|
|
1531
1533
|
# @!attribute [rw] serverless_cache_snapshot
|
1532
1534
|
# The response for the attempt to copy the serverless cache snapshot.
|
1533
|
-
# Available for Redis only.
|
1535
|
+
# Available for Redis OSS and Serverless Memcached only.
|
1534
1536
|
# @return [Types::ServerlessCacheSnapshot]
|
1535
1537
|
#
|
1536
1538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopyServerlessCacheSnapshotResponse AWS API Documentation
|
@@ -1595,8 +1597,8 @@ module Aws::ElastiCache
|
|
1595
1597
|
end
|
1596
1598
|
|
1597
1599
|
# @!attribute [rw] snapshot
|
1598
|
-
# Represents a copy of an entire Redis cluster as of the time when
|
1599
|
-
# snapshot was taken.
|
1600
|
+
# Represents a copy of an entire Redis OSS cluster as of the time when
|
1601
|
+
# the snapshot was taken.
|
1600
1602
|
# @return [Types::Snapshot]
|
1601
1603
|
#
|
1602
1604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshotResult AWS API Documentation
|
@@ -1687,7 +1689,7 @@ module Aws::ElastiCache
|
|
1687
1689
|
# @!attribute [rw] num_cache_nodes
|
1688
1690
|
# The initial number of cache nodes that the cluster has.
|
1689
1691
|
#
|
1690
|
-
# For clusters running Redis, this value must be 1. For clusters
|
1692
|
+
# For clusters running Redis OSS, this value must be 1. For clusters
|
1691
1693
|
# running Memcached, this value must be between 1 and 40.
|
1692
1694
|
#
|
1693
1695
|
# If you need more than 40 nodes for your Memcached cluster, please
|
@@ -1720,7 +1722,7 @@ module Aws::ElastiCache
|
|
1720
1722
|
#
|
1721
1723
|
# </note>
|
1722
1724
|
#
|
1723
|
-
# **M6g node types** (available only for Redis engine version
|
1725
|
+
# **M6g node types** (available only for Redis OSS engine version
|
1724
1726
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
1725
1727
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
1726
1728
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -1733,7 +1735,7 @@ module Aws::ElastiCache
|
|
1733
1735
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
1734
1736
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
1735
1737
|
#
|
1736
|
-
# **T4g node types** (available only for Redis engine version
|
1738
|
+
# **T4g node types** (available only for Redis OSS engine version
|
1737
1739
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
1738
1740
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
1739
1741
|
#
|
@@ -1775,7 +1777,7 @@ module Aws::ElastiCache
|
|
1775
1777
|
#
|
1776
1778
|
# </note>
|
1777
1779
|
#
|
1778
|
-
# **R6g node types** (available only for Redis engine version
|
1780
|
+
# **R6g node types** (available only for Redis OSS engine version
|
1779
1781
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
1780
1782
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
1781
1783
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -1804,14 +1806,14 @@ module Aws::ElastiCache
|
|
1804
1806
|
# * All current generation instance types are created in Amazon VPC by
|
1805
1807
|
# default.
|
1806
1808
|
#
|
1807
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
1809
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
1808
1810
|
# instances.
|
1809
1811
|
#
|
1810
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
1812
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
1811
1813
|
# instances.
|
1812
1814
|
#
|
1813
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
1814
|
-
# not supported on Redis version 2.8.22 and later.
|
1815
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
1816
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
1815
1817
|
#
|
1816
1818
|
#
|
1817
1819
|
#
|
@@ -1882,8 +1884,8 @@ module Aws::ElastiCache
|
|
1882
1884
|
#
|
1883
1885
|
# @!attribute [rw] snapshot_arns
|
1884
1886
|
# A single-element string list containing an Amazon Resource Name
|
1885
|
-
# (ARN) that uniquely identifies a Redis RDB snapshot file stored
|
1886
|
-
# Amazon S3. The snapshot file is used to populate the node group
|
1887
|
+
# (ARN) that uniquely identifies a Redis OSS RDB snapshot file stored
|
1888
|
+
# in Amazon S3. The snapshot file is used to populate the node group
|
1887
1889
|
# (shard). The Amazon S3 object name in the ARN cannot contain any
|
1888
1890
|
# commas.
|
1889
1891
|
#
|
@@ -1895,9 +1897,9 @@ module Aws::ElastiCache
|
|
1895
1897
|
# @return [Array<String>]
|
1896
1898
|
#
|
1897
1899
|
# @!attribute [rw] snapshot_name
|
1898
|
-
# The name of a Redis snapshot from which to restore data into the
|
1899
|
-
# node group (shard). The snapshot status changes to `restoring`
|
1900
|
-
# the new node group (shard) is being created.
|
1900
|
+
# The name of a Redis OSS snapshot from which to restore data into the
|
1901
|
+
# new node group (shard). The snapshot status changes to `restoring`
|
1902
|
+
# while the new node group (shard) is being created.
|
1901
1903
|
#
|
1902
1904
|
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
1903
1905
|
#
|
@@ -1926,7 +1928,7 @@ module Aws::ElastiCache
|
|
1926
1928
|
# @return [String]
|
1927
1929
|
#
|
1928
1930
|
# @!attribute [rw] auto_minor_version_upgrade
|
1929
|
-
# If you are running Redis engine version 6.0 or later, set this
|
1931
|
+
# If you are running Redis OSS engine version 6.0 or later, set this
|
1930
1932
|
# parameter to yes if you want to opt-in to the next auto minor
|
1931
1933
|
# version upgrade campaign. This parameter is disabled for previous
|
1932
1934
|
# versions.
|
@@ -2006,7 +2008,7 @@ module Aws::ElastiCache
|
|
2006
2008
|
#
|
2007
2009
|
# @!attribute [rw] network_type
|
2008
2010
|
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
2009
|
-
# for workloads using Redis engine version 6.2 onward or Memcached
|
2011
|
+
# for workloads using Redis OSS engine version 6.2 onward or Memcached
|
2010
2012
|
# engine version 1.6.6 on all instances built on the [Nitro
|
2011
2013
|
# system][1].
|
2012
2014
|
#
|
@@ -2017,7 +2019,7 @@ module Aws::ElastiCache
|
|
2017
2019
|
#
|
2018
2020
|
# @!attribute [rw] ip_discovery
|
2019
2021
|
# The network type you choose when modifying a cluster, either `ipv4`
|
2020
|
-
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
2022
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis OSS engine
|
2021
2023
|
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
2022
2024
|
# instances built on the [Nitro system][1].
|
2023
2025
|
#
|
@@ -2322,8 +2324,8 @@ module Aws::ElastiCache
|
|
2322
2324
|
# Specifies whether a read-only replica is automatically promoted to
|
2323
2325
|
# read/write primary if the existing primary fails.
|
2324
2326
|
#
|
2325
|
-
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster
|
2326
|
-
# enabled) replication groups.
|
2327
|
+
# `AutomaticFailoverEnabled` must be enabled for Redis OSS (cluster
|
2328
|
+
# mode enabled) replication groups.
|
2327
2329
|
#
|
2328
2330
|
# Default: false
|
2329
2331
|
# @return [Boolean]
|
@@ -2376,9 +2378,9 @@ module Aws::ElastiCache
|
|
2376
2378
|
#
|
2377
2379
|
# @!attribute [rw] num_node_groups
|
2378
2380
|
# An optional parameter that specifies the number of node groups
|
2379
|
-
# (shards) for this Redis (cluster mode enabled) replication
|
2380
|
-
# For Redis (cluster mode disabled) either omit this
|
2381
|
-
# it to 1.
|
2381
|
+
# (shards) for this Redis OSS (cluster mode enabled) replication
|
2382
|
+
# group. For Redis OSS (cluster mode disabled) either omit this
|
2383
|
+
# parameter or set it to 1.
|
2382
2384
|
#
|
2383
2385
|
# Default: 1
|
2384
2386
|
# @return [Integer]
|
@@ -2394,13 +2396,13 @@ module Aws::ElastiCache
|
|
2394
2396
|
# `PrimaryAvailabilityZone`, `ReplicaAvailabilityZones`,
|
2395
2397
|
# `ReplicaCount`, and `Slots`.
|
2396
2398
|
#
|
2397
|
-
# If you're creating a Redis (cluster mode disabled) or a Redis
|
2398
|
-
# (cluster mode enabled) replication group, you can use this
|
2399
|
-
# to individually configure each node group (shard), or you
|
2400
|
-
# this parameter. However, it is required when seeding a
|
2401
|
-
# (cluster mode enabled) cluster from a S3 rdb file. You
|
2402
|
-
# configure each node group (shard) using this parameter because
|
2403
|
-
# must specify the slots for each node group.
|
2399
|
+
# If you're creating a Redis OSS (cluster mode disabled) or a Redis
|
2400
|
+
# OSS (cluster mode enabled) replication group, you can use this
|
2401
|
+
# parameter to individually configure each node group (shard), or you
|
2402
|
+
# can omit this parameter. However, it is required when seeding a
|
2403
|
+
# Redis OSS (cluster mode enabled) cluster from a S3 rdb file. You
|
2404
|
+
# must configure each node group (shard) using this parameter because
|
2405
|
+
# you must specify the slots for each node group.
|
2404
2406
|
# @return [Array<Types::NodeGroupConfiguration>]
|
2405
2407
|
#
|
2406
2408
|
# @!attribute [rw] cache_node_type
|
@@ -2424,7 +2426,7 @@ module Aws::ElastiCache
|
|
2424
2426
|
#
|
2425
2427
|
# </note>
|
2426
2428
|
#
|
2427
|
-
# **M6g node types** (available only for Redis engine version
|
2429
|
+
# **M6g node types** (available only for Redis OSS engine version
|
2428
2430
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
2429
2431
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
2430
2432
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -2437,7 +2439,7 @@ module Aws::ElastiCache
|
|
2437
2439
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
2438
2440
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
2439
2441
|
#
|
2440
|
-
# **T4g node types** (available only for Redis engine version
|
2442
|
+
# **T4g node types** (available only for Redis OSS engine version
|
2441
2443
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
2442
2444
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
2443
2445
|
#
|
@@ -2479,7 +2481,7 @@ module Aws::ElastiCache
|
|
2479
2481
|
#
|
2480
2482
|
# </note>
|
2481
2483
|
#
|
2482
|
-
# **R6g node types** (available only for Redis engine version
|
2484
|
+
# **R6g node types** (available only for Redis OSS engine version
|
2483
2485
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
2484
2486
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
2485
2487
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -2508,14 +2510,14 @@ module Aws::ElastiCache
|
|
2508
2510
|
# * All current generation instance types are created in Amazon VPC by
|
2509
2511
|
# default.
|
2510
2512
|
#
|
2511
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
2513
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
2512
2514
|
# instances.
|
2513
2515
|
#
|
2514
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
2516
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
2515
2517
|
# instances.
|
2516
2518
|
#
|
2517
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
2518
|
-
# not supported on Redis version 2.8.22 and later.
|
2519
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
2520
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
2519
2521
|
#
|
2520
2522
|
#
|
2521
2523
|
#
|
@@ -2549,15 +2551,15 @@ module Aws::ElastiCache
|
|
2549
2551
|
# group. If this argument is omitted, the default cache parameter
|
2550
2552
|
# group for the specified engine is used.
|
2551
2553
|
#
|
2552
|
-
# If you are running Redis version 3.2.4 or later, only one node
|
2553
|
-
# (shard), and want to use a default parameter group, we
|
2554
|
-
# that you specify the parameter group by name.
|
2554
|
+
# If you are running Redis OSS version 3.2.4 or later, only one node
|
2555
|
+
# group (shard), and want to use a default parameter group, we
|
2556
|
+
# recommend that you specify the parameter group by name.
|
2555
2557
|
#
|
2556
|
-
# * To create a Redis (cluster mode disabled) replication group,
|
2557
|
-
# `CacheParameterGroupName=default.redis3.2`.
|
2558
|
+
# * To create a Redis OSS (cluster mode disabled) replication group,
|
2559
|
+
# use `CacheParameterGroupName=default.redis3.2`.
|
2558
2560
|
#
|
2559
|
-
# * To create a Redis (cluster mode enabled) replication group,
|
2560
|
-
# `CacheParameterGroupName=default.redis3.2.cluster.on`.
|
2561
|
+
# * To create a Redis OSS (cluster mode enabled) replication group,
|
2562
|
+
# use `CacheParameterGroupName=default.redis3.2.cluster.on`.
|
2561
2563
|
# @return [String]
|
2562
2564
|
#
|
2563
2565
|
# @!attribute [rw] cache_subnet_group_name
|
@@ -2597,8 +2599,8 @@ module Aws::ElastiCache
|
|
2597
2599
|
#
|
2598
2600
|
# @!attribute [rw] snapshot_arns
|
2599
2601
|
# A list of Amazon Resource Names (ARN) that uniquely identify the
|
2600
|
-
# Redis RDB snapshot files stored in Amazon S3. The snapshot files
|
2601
|
-
# used to populate the new replication group. The Amazon S3 object
|
2602
|
+
# Redis OSS RDB snapshot files stored in Amazon S3. The snapshot files
|
2603
|
+
# are used to populate the new replication group. The Amazon S3 object
|
2602
2604
|
# name in the ARN cannot contain any commas. The new replication group
|
2603
2605
|
# will have the number of node groups (console: shards) specified by
|
2604
2606
|
# the parameter *NumNodeGroups* or the number of node groups
|
@@ -2654,7 +2656,7 @@ module Aws::ElastiCache
|
|
2654
2656
|
# @return [String]
|
2655
2657
|
#
|
2656
2658
|
# @!attribute [rw] auto_minor_version_upgrade
|
2657
|
-
# If you are running Redis engine version 6.0 or later, set this
|
2659
|
+
# If you are running Redis OSS engine version 6.0 or later, set this
|
2658
2660
|
# parameter to yes if you want to opt-in to the next auto minor
|
2659
2661
|
# version upgrade campaign. This parameter is disabled for previous
|
2660
2662
|
# versions.
|
@@ -2719,7 +2721,7 @@ module Aws::ElastiCache
|
|
2719
2721
|
# for `CacheSubnetGroup`.
|
2720
2722
|
#
|
2721
2723
|
# **Required:** Only available when creating a replication group in an
|
2722
|
-
# Amazon VPC using
|
2724
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
2723
2725
|
#
|
2724
2726
|
# Default: `false`
|
2725
2727
|
#
|
@@ -2736,7 +2738,7 @@ module Aws::ElastiCache
|
|
2736
2738
|
# when you create the replication group.
|
2737
2739
|
#
|
2738
2740
|
# **Required:** Only available when creating a replication group in an
|
2739
|
-
# Amazon VPC using
|
2741
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
2740
2742
|
#
|
2741
2743
|
# Default: `false`
|
2742
2744
|
# @return [Boolean]
|
@@ -2765,7 +2767,7 @@ module Aws::ElastiCache
|
|
2765
2767
|
#
|
2766
2768
|
# @!attribute [rw] network_type
|
2767
2769
|
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
2768
|
-
# for workloads using Redis engine version 6.2 onward or Memcached
|
2770
|
+
# for workloads using Redis OSS engine version 6.2 onward or Memcached
|
2769
2771
|
# engine version 1.6.6 on all instances built on the [Nitro
|
2770
2772
|
# system][1].
|
2771
2773
|
#
|
@@ -2777,8 +2779,8 @@ module Aws::ElastiCache
|
|
2777
2779
|
# @!attribute [rw] ip_discovery
|
2778
2780
|
# The network type you choose when creating a replication group,
|
2779
2781
|
# either `ipv4` \| `ipv6`. IPv6 is supported for workloads using Redis
|
2780
|
-
# engine version 6.2 onward or Memcached engine version 1.6.6 on
|
2781
|
-
# instances built on the [Nitro system][1].
|
2782
|
+
# OSS engine version 6.2 onward or Memcached engine version 1.6.6 on
|
2783
|
+
# all instances built on the [Nitro system][1].
|
2782
2784
|
#
|
2783
2785
|
#
|
2784
2786
|
#
|
@@ -2792,9 +2794,9 @@ module Aws::ElastiCache
|
|
2792
2794
|
# When setting `TransitEncryptionEnabled` to `true`, you can set your
|
2793
2795
|
# `TransitEncryptionMode` to `preferred` in the same request, to allow
|
2794
2796
|
# both encrypted and unencrypted connections at the same time. Once
|
2795
|
-
# you migrate all your Redis clients to use encrypted connections
|
2796
|
-
# can modify the value to `required` to allow encrypted
|
2797
|
-
# only.
|
2797
|
+
# you migrate all your Redis OSS clients to use encrypted connections
|
2798
|
+
# you can modify the value to `required` to allow encrypted
|
2799
|
+
# connections only.
|
2798
2800
|
#
|
2799
2801
|
# Setting `TransitEncryptionMode` to `required` is a two-step process
|
2800
2802
|
# that requires you to first set the `TransitEncryptionMode` to
|
@@ -2808,15 +2810,16 @@ module Aws::ElastiCache
|
|
2808
2810
|
# @!attribute [rw] cluster_mode
|
2809
2811
|
# Enabled or Disabled. To modify cluster mode from Disabled to
|
2810
2812
|
# Enabled, you must first set the cluster mode to Compatible.
|
2811
|
-
# Compatible mode allows your Redis clients to connect using both
|
2813
|
+
# Compatible mode allows your Redis OSS clients to connect using both
|
2812
2814
|
# cluster mode enabled and cluster mode disabled. After you migrate
|
2813
|
-
# all Redis clients to use cluster mode enabled, you can then
|
2814
|
-
# cluster mode configuration and set the cluster mode to
|
2815
|
+
# all Redis OSS clients to use cluster mode enabled, you can then
|
2816
|
+
# complete cluster mode configuration and set the cluster mode to
|
2817
|
+
# Enabled.
|
2815
2818
|
# @return [String]
|
2816
2819
|
#
|
2817
2820
|
# @!attribute [rw] serverless_cache_snapshot_name
|
2818
2821
|
# The name of the snapshot used to create a replication group.
|
2819
|
-
# Available for Redis only.
|
2822
|
+
# Available for Redis OSS only.
|
2820
2823
|
# @return [String]
|
2821
2824
|
#
|
2822
2825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
|
@@ -2866,7 +2869,7 @@ module Aws::ElastiCache
|
|
2866
2869
|
end
|
2867
2870
|
|
2868
2871
|
# @!attribute [rw] replication_group
|
2869
|
-
# Contains all of the attributes of a specific Redis replication
|
2872
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
2870
2873
|
# group.
|
2871
2874
|
# @return [Types::ReplicationGroup]
|
2872
2875
|
#
|
@@ -2919,7 +2922,7 @@ module Aws::ElastiCache
|
|
2919
2922
|
#
|
2920
2923
|
# @!attribute [rw] snapshot_arns_to_restore
|
2921
2924
|
# The ARN(s) of the snapshot that the new serverless cache will be
|
2922
|
-
# created from. Available for Redis only.
|
2925
|
+
# created from. Available for Redis OSS and Serverless Memcached only.
|
2923
2926
|
# @return [Array<String>]
|
2924
2927
|
#
|
2925
2928
|
# @!attribute [rw] tags
|
@@ -2929,7 +2932,7 @@ module Aws::ElastiCache
|
|
2929
2932
|
#
|
2930
2933
|
# @!attribute [rw] user_group_id
|
2931
2934
|
# The identifier of the UserGroup to be associated with the serverless
|
2932
|
-
# cache. Available for Redis only. Default is NULL.
|
2935
|
+
# cache. Available for Redis OSS only. Default is NULL.
|
2933
2936
|
# @return [String]
|
2934
2937
|
#
|
2935
2938
|
# @!attribute [rw] subnet_ids
|
@@ -2942,14 +2945,14 @@ module Aws::ElastiCache
|
|
2942
2945
|
# The number of snapshots that will be retained for the serverless
|
2943
2946
|
# cache that is being created. As new snapshots beyond this limit are
|
2944
2947
|
# added, the oldest snapshots will be deleted on a rolling basis.
|
2945
|
-
# Available for Redis only.
|
2948
|
+
# Available for Redis OSS and Serverless Memcached only.
|
2946
2949
|
# @return [Integer]
|
2947
2950
|
#
|
2948
2951
|
# @!attribute [rw] daily_snapshot_time
|
2949
2952
|
# The daily time that snapshots will be created from the new
|
2950
2953
|
# serverless cache. By default this number is populated with 0, i.e.
|
2951
2954
|
# no snapshots will be created on an automatic daily basis. Available
|
2952
|
-
# for Redis only.
|
2955
|
+
# for Redis OSS and Serverless Memcached only.
|
2953
2956
|
# @return [String]
|
2954
2957
|
#
|
2955
2958
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateServerlessCacheRequest AWS API Documentation
|
@@ -2986,23 +2989,25 @@ module Aws::ElastiCache
|
|
2986
2989
|
|
2987
2990
|
# @!attribute [rw] serverless_cache_snapshot_name
|
2988
2991
|
# The name for the snapshot being created. Must be unique for the
|
2989
|
-
# customer account. Available for Redis
|
2990
|
-
# 255 characters.
|
2992
|
+
# customer account. Available for Redis OSS and Serverless Memcached
|
2993
|
+
# only. Must be between 1 and 255 characters.
|
2991
2994
|
# @return [String]
|
2992
2995
|
#
|
2993
2996
|
# @!attribute [rw] serverless_cache_name
|
2994
2997
|
# The name of an existing serverless cache. The snapshot is created
|
2995
|
-
# from this cache. Available for Redis
|
2998
|
+
# from this cache. Available for Redis OSS and Serverless Memcached
|
2999
|
+
# only.
|
2996
3000
|
# @return [String]
|
2997
3001
|
#
|
2998
3002
|
# @!attribute [rw] kms_key_id
|
2999
3003
|
# The ID of the KMS key used to encrypt the snapshot. Available for
|
3000
|
-
# Redis only. Default: NULL
|
3004
|
+
# Redis OSS and Serverless Memcached only. Default: NULL
|
3001
3005
|
# @return [String]
|
3002
3006
|
#
|
3003
3007
|
# @!attribute [rw] tags
|
3004
3008
|
# A list of tags to be added to the snapshot resource. A tag is a
|
3005
|
-
# key-value pair. Available for Redis
|
3009
|
+
# key-value pair. Available for Redis OSS and Serverless Memcached
|
3010
|
+
# only.
|
3006
3011
|
# @return [Array<Types::Tag>]
|
3007
3012
|
#
|
3008
3013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateServerlessCacheSnapshotRequest AWS API Documentation
|
@@ -3018,7 +3023,8 @@ module Aws::ElastiCache
|
|
3018
3023
|
|
3019
3024
|
# @!attribute [rw] serverless_cache_snapshot
|
3020
3025
|
# The state of a serverless cache snapshot at a specific point in
|
3021
|
-
# time, to the millisecond. Available for Redis
|
3026
|
+
# time, to the millisecond. Available for Redis OSS and Serverless
|
3027
|
+
# Memcached only.
|
3022
3028
|
# @return [Types::ServerlessCacheSnapshot]
|
3023
3029
|
#
|
3024
3030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateServerlessCacheSnapshotResponse AWS API Documentation
|
@@ -3068,8 +3074,8 @@ module Aws::ElastiCache
|
|
3068
3074
|
end
|
3069
3075
|
|
3070
3076
|
# @!attribute [rw] snapshot
|
3071
|
-
# Represents a copy of an entire Redis cluster as of the time when
|
3072
|
-
# snapshot was taken.
|
3077
|
+
# Represents a copy of an entire Redis OSS cluster as of the time when
|
3078
|
+
# the snapshot was taken.
|
3073
3079
|
# @return [Types::Snapshot]
|
3074
3080
|
#
|
3075
3081
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshotResult AWS API Documentation
|
@@ -3085,7 +3091,7 @@ module Aws::ElastiCache
|
|
3085
3091
|
# @return [String]
|
3086
3092
|
#
|
3087
3093
|
# @!attribute [rw] engine
|
3088
|
-
# The current supported value is Redis.
|
3094
|
+
# The current supported value is Redis user.
|
3089
3095
|
# @return [String]
|
3090
3096
|
#
|
3091
3097
|
# @!attribute [rw] user_ids
|
@@ -3095,7 +3101,7 @@ module Aws::ElastiCache
|
|
3095
3101
|
# @!attribute [rw] tags
|
3096
3102
|
# A list of tags to be added to this resource. A tag is a key-value
|
3097
3103
|
# pair. A tag key must be accompanied by a tag value, although null is
|
3098
|
-
# accepted. Available for Redis only.
|
3104
|
+
# accepted. Available for Redis OSS only.
|
3099
3105
|
# @return [Array<Types::Tag>]
|
3100
3106
|
#
|
3101
3107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateUserGroupMessage AWS API Documentation
|
@@ -3215,7 +3221,7 @@ module Aws::ElastiCache
|
|
3215
3221
|
# If the value of NodeGroupCount is less than the current number of
|
3216
3222
|
# node groups (shards), then either NodeGroupsToRemove or
|
3217
3223
|
# NodeGroupsToRetain is required. GlobalNodeGroupsToRemove is a list
|
3218
|
-
# of NodeGroupIds to remove from the cluster. ElastiCache
|
3224
|
+
# of NodeGroupIds to remove from the cluster. ElastiCache (Redis OSS)
|
3219
3225
|
# will attempt to remove all node groups listed by
|
3220
3226
|
# GlobalNodeGroupsToRemove from the cluster.
|
3221
3227
|
# @return [Array<String>]
|
@@ -3224,7 +3230,7 @@ module Aws::ElastiCache
|
|
3224
3230
|
# If the value of NodeGroupCount is less than the current number of
|
3225
3231
|
# node groups (shards), then either NodeGroupsToRemove or
|
3226
3232
|
# NodeGroupsToRetain is required. GlobalNodeGroupsToRetain is a list
|
3227
|
-
# of NodeGroupIds to retain from the cluster. ElastiCache
|
3233
|
+
# of NodeGroupIds to retain from the cluster. ElastiCache (Redis OSS)
|
3228
3234
|
# will attempt to retain all node groups listed by
|
3229
3235
|
# GlobalNodeGroupsToRetain from the cluster.
|
3230
3236
|
# @return [Array<String>]
|
@@ -3274,27 +3280,28 @@ module Aws::ElastiCache
|
|
3274
3280
|
#
|
3275
3281
|
# @!attribute [rw] new_replica_count
|
3276
3282
|
# The number of read replica nodes you want at the completion of this
|
3277
|
-
# operation. For Redis (cluster mode disabled) replication groups,
|
3283
|
+
# operation. For Redis OSS (cluster mode disabled) replication groups,
|
3278
3284
|
# this is the number of replica nodes in the replication group. For
|
3279
|
-
# Redis (cluster mode enabled) replication groups, this is the
|
3280
|
-
# of replica nodes in each of the replication group's node
|
3285
|
+
# Redis OSS (cluster mode enabled) replication groups, this is the
|
3286
|
+
# number of replica nodes in each of the replication group's node
|
3287
|
+
# groups.
|
3281
3288
|
#
|
3282
3289
|
# The minimum number of replicas in a shard or replication group is:
|
3283
3290
|
#
|
3284
|
-
# * Redis (cluster mode disabled)
|
3291
|
+
# * Redis OSS (cluster mode disabled)
|
3285
3292
|
#
|
3286
3293
|
# * If Multi-AZ is enabled: 1
|
3287
3294
|
#
|
3288
3295
|
# * If Multi-AZ is not enabled: 0
|
3289
3296
|
#
|
3290
|
-
# * Redis (cluster mode enabled): 0 (though you will not be able
|
3291
|
-
# failover to a replica if your primary node fails)
|
3297
|
+
# * Redis OSS (cluster mode enabled): 0 (though you will not be able
|
3298
|
+
# to failover to a replica if your primary node fails)
|
3292
3299
|
# @return [Integer]
|
3293
3300
|
#
|
3294
3301
|
# @!attribute [rw] replica_configuration
|
3295
3302
|
# A list of `ConfigureShard` objects that can be used to configure
|
3296
|
-
# each shard in a Redis (cluster mode enabled) replication group.
|
3297
|
-
# `ConfigureShard` has three members: `NewReplicaCount`,
|
3303
|
+
# each shard in a Redis OSS (cluster mode enabled) replication group.
|
3304
|
+
# The `ConfigureShard` has three members: `NewReplicaCount`,
|
3298
3305
|
# `NodeGroupId`, and `PreferredAvailabilityZones`.
|
3299
3306
|
# @return [Array<Types::ConfigureShard>]
|
3300
3307
|
#
|
@@ -3321,7 +3328,7 @@ module Aws::ElastiCache
|
|
3321
3328
|
end
|
3322
3329
|
|
3323
3330
|
# @!attribute [rw] replication_group
|
3324
|
-
# Contains all of the attributes of a specific Redis replication
|
3331
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
3325
3332
|
# group.
|
3326
3333
|
# @return [Types::ReplicationGroup]
|
3327
3334
|
#
|
@@ -3503,7 +3510,7 @@ module Aws::ElastiCache
|
|
3503
3510
|
end
|
3504
3511
|
|
3505
3512
|
# @!attribute [rw] replication_group
|
3506
|
-
# Contains all of the attributes of a specific Redis replication
|
3513
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
3507
3514
|
# group.
|
3508
3515
|
# @return [Types::ReplicationGroup]
|
3509
3516
|
#
|
@@ -3521,8 +3528,8 @@ module Aws::ElastiCache
|
|
3521
3528
|
#
|
3522
3529
|
# @!attribute [rw] final_snapshot_name
|
3523
3530
|
# Name of the final snapshot to be taken before the serverless cache
|
3524
|
-
# is deleted. Available for Redis
|
3525
|
-
# snapshot is not taken.
|
3531
|
+
# is deleted. Available for Redis OSS and Serverless Memcached only.
|
3532
|
+
# Default: NULL, i.e. a final snapshot is not taken.
|
3526
3533
|
# @return [String]
|
3527
3534
|
#
|
3528
3535
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteServerlessCacheRequest AWS API Documentation
|
@@ -3548,7 +3555,8 @@ module Aws::ElastiCache
|
|
3548
3555
|
end
|
3549
3556
|
|
3550
3557
|
# @!attribute [rw] serverless_cache_snapshot_name
|
3551
|
-
# Idenfitier of the snapshot to be deleted. Available for Redis
|
3558
|
+
# Idenfitier of the snapshot to be deleted. Available for Redis OSS
|
3559
|
+
# and Serverless Memcached only.
|
3552
3560
|
# @return [String]
|
3553
3561
|
#
|
3554
3562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteServerlessCacheSnapshotRequest AWS API Documentation
|
@@ -3560,7 +3568,8 @@ module Aws::ElastiCache
|
|
3560
3568
|
end
|
3561
3569
|
|
3562
3570
|
# @!attribute [rw] serverless_cache_snapshot
|
3563
|
-
# The snapshot to be deleted. Available for Redis
|
3571
|
+
# The snapshot to be deleted. Available for Redis OSS and Serverless
|
3572
|
+
# Memcached only.
|
3564
3573
|
# @return [Types::ServerlessCacheSnapshot]
|
3565
3574
|
#
|
3566
3575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteServerlessCacheSnapshotResponse AWS API Documentation
|
@@ -3586,8 +3595,8 @@ module Aws::ElastiCache
|
|
3586
3595
|
end
|
3587
3596
|
|
3588
3597
|
# @!attribute [rw] snapshot
|
3589
|
-
# Represents a copy of an entire Redis cluster as of the time when
|
3590
|
-
# snapshot was taken.
|
3598
|
+
# Represents a copy of an entire Redis OSS cluster as of the time when
|
3599
|
+
# the snapshot was taken.
|
3591
3600
|
# @return [Types::Snapshot]
|
3592
3601
|
#
|
3593
3602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshotResult AWS API Documentation
|
@@ -3657,7 +3666,7 @@ module Aws::ElastiCache
|
|
3657
3666
|
# An optional flag that can be included in the `DescribeCacheCluster`
|
3658
3667
|
# request to show only nodes (API/CLI: clusters) that are not members
|
3659
3668
|
# of a replication group. In practice, this mean Memcached and single
|
3660
|
-
# node Redis clusters.
|
3669
|
+
# node Redis OSS clusters.
|
3661
3670
|
# @return [Boolean]
|
3662
3671
|
#
|
3663
3672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeCacheClustersMessage AWS API Documentation
|
@@ -4120,7 +4129,7 @@ module Aws::ElastiCache
|
|
4120
4129
|
#
|
4121
4130
|
# </note>
|
4122
4131
|
#
|
4123
|
-
# **M6g node types** (available only for Redis engine version
|
4132
|
+
# **M6g node types** (available only for Redis OSS engine version
|
4124
4133
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4125
4134
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
4126
4135
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -4133,7 +4142,7 @@ module Aws::ElastiCache
|
|
4133
4142
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
4134
4143
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4135
4144
|
#
|
4136
|
-
# **T4g node types** (available only for Redis engine version
|
4145
|
+
# **T4g node types** (available only for Redis OSS engine version
|
4137
4146
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
4138
4147
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
4139
4148
|
#
|
@@ -4175,7 +4184,7 @@ module Aws::ElastiCache
|
|
4175
4184
|
#
|
4176
4185
|
# </note>
|
4177
4186
|
#
|
4178
|
-
# **R6g node types** (available only for Redis engine version
|
4187
|
+
# **R6g node types** (available only for Redis OSS engine version
|
4179
4188
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4180
4189
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
4181
4190
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -4204,14 +4213,14 @@ module Aws::ElastiCache
|
|
4204
4213
|
# * All current generation instance types are created in Amazon VPC by
|
4205
4214
|
# default.
|
4206
4215
|
#
|
4207
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
4216
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
4208
4217
|
# instances.
|
4209
4218
|
#
|
4210
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
4219
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
4211
4220
|
# instances.
|
4212
4221
|
#
|
4213
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
4214
|
-
# not supported on Redis version 2.8.22 and later.
|
4222
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
4223
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
4215
4224
|
#
|
4216
4225
|
#
|
4217
4226
|
#
|
@@ -4303,7 +4312,7 @@ module Aws::ElastiCache
|
|
4303
4312
|
#
|
4304
4313
|
# </note>
|
4305
4314
|
#
|
4306
|
-
# **M6g node types** (available only for Redis engine version
|
4315
|
+
# **M6g node types** (available only for Redis OSS engine version
|
4307
4316
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4308
4317
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
4309
4318
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -4316,7 +4325,7 @@ module Aws::ElastiCache
|
|
4316
4325
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
4317
4326
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
4318
4327
|
#
|
4319
|
-
# **T4g node types** (available only for Redis engine version
|
4328
|
+
# **T4g node types** (available only for Redis OSS engine version
|
4320
4329
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
4321
4330
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
4322
4331
|
#
|
@@ -4358,7 +4367,7 @@ module Aws::ElastiCache
|
|
4358
4367
|
#
|
4359
4368
|
# </note>
|
4360
4369
|
#
|
4361
|
-
# **R6g node types** (available only for Redis engine version
|
4370
|
+
# **R6g node types** (available only for Redis OSS engine version
|
4362
4371
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
4363
4372
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
4364
4373
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -4387,14 +4396,14 @@ module Aws::ElastiCache
|
|
4387
4396
|
# * All current generation instance types are created in Amazon VPC by
|
4388
4397
|
# default.
|
4389
4398
|
#
|
4390
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
4399
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
4391
4400
|
# instances.
|
4392
4401
|
#
|
4393
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
4402
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
4394
4403
|
# instances.
|
4395
4404
|
#
|
4396
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
4397
|
-
# not supported on Redis version 2.8.22 and later.
|
4405
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
4406
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
4398
4407
|
#
|
4399
4408
|
#
|
4400
4409
|
#
|
@@ -4457,33 +4466,34 @@ module Aws::ElastiCache
|
|
4457
4466
|
# @!attribute [rw] serverless_cache_name
|
4458
4467
|
# The identifier of serverless cache. If this parameter is specified,
|
4459
4468
|
# only snapshots associated with that specific serverless cache are
|
4460
|
-
# described. Available for Redis only.
|
4469
|
+
# described. Available for Redis OSS and Serverless Memcached only.
|
4461
4470
|
# @return [String]
|
4462
4471
|
#
|
4463
4472
|
# @!attribute [rw] serverless_cache_snapshot_name
|
4464
4473
|
# The identifier of the serverless cache’s snapshot. If this parameter
|
4465
4474
|
# is specified, only this snapshot is described. Available for Redis
|
4466
|
-
# only.
|
4475
|
+
# OSS and Serverless Memcached only.
|
4467
4476
|
# @return [String]
|
4468
4477
|
#
|
4469
4478
|
# @!attribute [rw] snapshot_type
|
4470
4479
|
# The type of snapshot that is being described. Available for Redis
|
4471
|
-
# only.
|
4480
|
+
# OSS and Serverless Memcached only.
|
4472
4481
|
# @return [String]
|
4473
4482
|
#
|
4474
4483
|
# @!attribute [rw] next_token
|
4475
4484
|
# An optional marker returned from a prior request to support
|
4476
4485
|
# pagination of results from this operation. If this parameter is
|
4477
4486
|
# specified, the response includes only records beyond the marker, up
|
4478
|
-
# to the value specified by max-results. Available for Redis
|
4487
|
+
# to the value specified by max-results. Available for Redis OSS and
|
4488
|
+
# Serverless Memcached only.
|
4479
4489
|
# @return [String]
|
4480
4490
|
#
|
4481
4491
|
# @!attribute [rw] max_results
|
4482
4492
|
# The maximum number of records to include in the response. If more
|
4483
4493
|
# records exist than the specified max-results value, a market is
|
4484
4494
|
# included in the response so that remaining results can be retrieved.
|
4485
|
-
# Available for Redis only.The default is
|
4486
|
-
# Constraints are a maximum of 50.
|
4495
|
+
# Available for Redis OSS and Serverless Memcached only.The default is
|
4496
|
+
# 50. The Validation Constraints are a maximum of 50.
|
4487
4497
|
# @return [Integer]
|
4488
4498
|
#
|
4489
4499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeServerlessCacheSnapshotsRequest AWS API Documentation
|
@@ -4502,12 +4512,13 @@ module Aws::ElastiCache
|
|
4502
4512
|
# An optional marker returned from a prior request to support
|
4503
4513
|
# pagination of results from this operation. If this parameter is
|
4504
4514
|
# specified, the response includes only records beyond the marker, up
|
4505
|
-
# to the value specified by max-results. Available for Redis
|
4515
|
+
# to the value specified by max-results. Available for Redis OSS and
|
4516
|
+
# Serverless Memcached only.
|
4506
4517
|
# @return [String]
|
4507
4518
|
#
|
4508
4519
|
# @!attribute [rw] serverless_cache_snapshots
|
4509
4520
|
# The serverless caches snapshots associated with a given description
|
4510
|
-
# request. Available for Redis only.
|
4521
|
+
# request. Available for Redis OSS and Serverless Memcached only.
|
4511
4522
|
# @return [Array<Types::ServerlessCacheSnapshot>]
|
4512
4523
|
#
|
4513
4524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeServerlessCacheSnapshotsResponse AWS API Documentation
|
@@ -4697,8 +4708,8 @@ module Aws::ElastiCache
|
|
4697
4708
|
# @return [Array<String>]
|
4698
4709
|
#
|
4699
4710
|
# @!attribute [rw] engine
|
4700
|
-
# The Elasticache engine to which the update applies. Either Redis
|
4701
|
-
# Memcached
|
4711
|
+
# The Elasticache engine to which the update applies. Either Redis OSS
|
4712
|
+
# or Memcached.
|
4702
4713
|
# @return [String]
|
4703
4714
|
#
|
4704
4715
|
# @!attribute [rw] service_update_status
|
@@ -4795,7 +4806,7 @@ module Aws::ElastiCache
|
|
4795
4806
|
end
|
4796
4807
|
|
4797
4808
|
# @!attribute [rw] engine
|
4798
|
-
# The Redis engine.
|
4809
|
+
# The Redis OSS engine.
|
4799
4810
|
# @return [String]
|
4800
4811
|
#
|
4801
4812
|
# @!attribute [rw] user_id
|
@@ -5083,13 +5094,13 @@ module Aws::ElastiCache
|
|
5083
5094
|
|
5084
5095
|
# @!attribute [rw] serverless_cache_snapshot_name
|
5085
5096
|
# The identifier of the serverless cache snapshot to be exported to
|
5086
|
-
# S3. Available for Redis only.
|
5097
|
+
# S3. Available for Redis OSS only.
|
5087
5098
|
# @return [String]
|
5088
5099
|
#
|
5089
5100
|
# @!attribute [rw] s3_bucket_name
|
5090
5101
|
# Name of the Amazon S3 bucket to export the snapshot to. The Amazon
|
5091
5102
|
# S3 bucket must also be in same region as the snapshot. Available for
|
5092
|
-
# Redis only.
|
5103
|
+
# Redis OSS only.
|
5093
5104
|
# @return [String]
|
5094
5105
|
#
|
5095
5106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ExportServerlessCacheSnapshotRequest AWS API Documentation
|
@@ -5103,7 +5114,7 @@ module Aws::ElastiCache
|
|
5103
5114
|
|
5104
5115
|
# @!attribute [rw] serverless_cache_snapshot
|
5105
5116
|
# The state of a serverless cache at a specific point in time, to the
|
5106
|
-
# millisecond. Available for Redis only.
|
5117
|
+
# millisecond. Available for Redis OSS and Serverless Memcached only.
|
5107
5118
|
# @return [Types::ServerlessCacheSnapshot]
|
5108
5119
|
#
|
5109
5120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ExportServerlessCacheSnapshotResponse AWS API Documentation
|
@@ -5225,11 +5236,11 @@ module Aws::ElastiCache
|
|
5225
5236
|
# @return [String]
|
5226
5237
|
#
|
5227
5238
|
# @!attribute [rw] engine
|
5228
|
-
# The Elasticache engine. For Redis only.
|
5239
|
+
# The Elasticache engine. For Redis OSS only.
|
5229
5240
|
# @return [String]
|
5230
5241
|
#
|
5231
5242
|
# @!attribute [rw] engine_version
|
5232
|
-
# The Elasticache Redis engine version.
|
5243
|
+
# The Elasticache (Redis OSS) engine version.
|
5233
5244
|
# @return [String]
|
5234
5245
|
#
|
5235
5246
|
# @!attribute [rw] members
|
@@ -5248,7 +5259,7 @@ module Aws::ElastiCache
|
|
5248
5259
|
#
|
5249
5260
|
# @!attribute [rw] auth_token_enabled
|
5250
5261
|
# A flag that enables using an `AuthToken` (password) when issuing
|
5251
|
-
# Redis commands.
|
5262
|
+
# Redis OSS commands.
|
5252
5263
|
#
|
5253
5264
|
# Default: `false`
|
5254
5265
|
# @return [Boolean]
|
@@ -5257,7 +5268,7 @@ module Aws::ElastiCache
|
|
5257
5268
|
# A flag that enables in-transit encryption when set to true.
|
5258
5269
|
#
|
5259
5270
|
# **Required:** Only available when creating a replication group in an
|
5260
|
-
# Amazon VPC using
|
5271
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
5261
5272
|
# @return [Boolean]
|
5262
5273
|
#
|
5263
5274
|
# @!attribute [rw] at_rest_encryption_enabled
|
@@ -5269,7 +5280,7 @@ module Aws::ElastiCache
|
|
5269
5280
|
# when you create the replication group.
|
5270
5281
|
#
|
5271
5282
|
# **Required:** Only available when creating a replication group in an
|
5272
|
-
# Amazon VPC using
|
5283
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
5273
5284
|
# @return [Boolean]
|
5274
5285
|
#
|
5275
5286
|
# @!attribute [rw] arn
|
@@ -5423,16 +5434,17 @@ module Aws::ElastiCache
|
|
5423
5434
|
#
|
5424
5435
|
# @!attribute [rw] new_replica_count
|
5425
5436
|
# The number of read replica nodes you want at the completion of this
|
5426
|
-
# operation. For Redis (cluster mode disabled) replication groups,
|
5437
|
+
# operation. For Redis OSS (cluster mode disabled) replication groups,
|
5427
5438
|
# this is the number of replica nodes in the replication group. For
|
5428
|
-
# Redis (cluster mode enabled) replication groups, this is the
|
5429
|
-
# of replica nodes in each of the replication group's node
|
5439
|
+
# Redis OSS (cluster mode enabled) replication groups, this is the
|
5440
|
+
# number of replica nodes in each of the replication group's node
|
5441
|
+
# groups.
|
5430
5442
|
# @return [Integer]
|
5431
5443
|
#
|
5432
5444
|
# @!attribute [rw] replica_configuration
|
5433
5445
|
# A list of `ConfigureShard` objects that can be used to configure
|
5434
|
-
# each shard in a Redis (cluster mode enabled) replication group.
|
5435
|
-
# `ConfigureShard` has three members: `NewReplicaCount`,
|
5446
|
+
# each shard in a Redis OSS (cluster mode enabled) replication group.
|
5447
|
+
# The `ConfigureShard` has three members: `NewReplicaCount`,
|
5436
5448
|
# `NodeGroupId`, and `PreferredAvailabilityZones`.
|
5437
5449
|
# @return [Array<Types::ConfigureShard>]
|
5438
5450
|
#
|
@@ -5453,7 +5465,7 @@ module Aws::ElastiCache
|
|
5453
5465
|
end
|
5454
5466
|
|
5455
5467
|
# @!attribute [rw] replication_group
|
5456
|
-
# Contains all of the attributes of a specific Redis replication
|
5468
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
5457
5469
|
# group.
|
5458
5470
|
# @return [Types::ReplicationGroup]
|
5459
5471
|
#
|
@@ -5557,7 +5569,7 @@ module Aws::ElastiCache
|
|
5557
5569
|
class InvalidReplicationGroupStateFault < Aws::EmptyStructure; end
|
5558
5570
|
|
5559
5571
|
# The state of the serverless cache snapshot was not received. Available
|
5560
|
-
# for Redis only.
|
5572
|
+
# for Redis OSS and Serverless Memcached only.
|
5561
5573
|
#
|
5562
5574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/InvalidServerlessCacheSnapshotStateFault AWS API Documentation
|
5563
5575
|
#
|
@@ -5775,7 +5787,7 @@ module Aws::ElastiCache
|
|
5775
5787
|
# `CacheNodeIdsToRemove` parameter to provide the IDs of the specific
|
5776
5788
|
# cache nodes to remove.
|
5777
5789
|
#
|
5778
|
-
# For clusters running Redis, this value must be 1. For clusters
|
5790
|
+
# For clusters running Redis OSS, this value must be 1. For clusters
|
5779
5791
|
# running Memcached, this value must be between 1 and 40.
|
5780
5792
|
#
|
5781
5793
|
# <note markdown="1"> Adding or removing Memcached cache nodes can be applied immediately
|
@@ -6024,7 +6036,7 @@ module Aws::ElastiCache
|
|
6024
6036
|
# @return [String]
|
6025
6037
|
#
|
6026
6038
|
# @!attribute [rw] auto_minor_version_upgrade
|
6027
|
-
# If you are running Redis engine version 6.0 or later, set this
|
6039
|
+
# If you are running Redis OSS engine version 6.0 or later, set this
|
6028
6040
|
# parameter to yes if you want to opt-in to the next auto minor
|
6029
6041
|
# version upgrade campaign. This parameter is disabled for previous
|
6030
6042
|
# versions.
|
@@ -6082,7 +6094,8 @@ module Aws::ElastiCache
|
|
6082
6094
|
#
|
6083
6095
|
# * DELETE - allowed only when transitioning to RBAC
|
6084
6096
|
#
|
6085
|
-
# For more information, see [Authenticating Users with Redis
|
6097
|
+
# For more information, see [Authenticating Users with Redis OSS
|
6098
|
+
# AUTH][1]
|
6086
6099
|
#
|
6087
6100
|
#
|
6088
6101
|
#
|
@@ -6095,7 +6108,7 @@ module Aws::ElastiCache
|
|
6095
6108
|
#
|
6096
6109
|
# @!attribute [rw] ip_discovery
|
6097
6110
|
# The network type you choose when modifying a cluster, either `ipv4`
|
6098
|
-
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
6111
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis OSS engine
|
6099
6112
|
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
6100
6113
|
# instances built on the [Nitro system][1].
|
6101
6114
|
#
|
@@ -6303,8 +6316,8 @@ module Aws::ElastiCache
|
|
6303
6316
|
#
|
6304
6317
|
# @!attribute [rw] snapshotting_cluster_id
|
6305
6318
|
# The cluster ID that is used as the daily snapshot source for the
|
6306
|
-
# replication group. This parameter cannot be set for Redis
|
6307
|
-
# mode enabled) replication groups.
|
6319
|
+
# replication group. This parameter cannot be set for Redis OSS
|
6320
|
+
# (cluster mode enabled) replication groups.
|
6308
6321
|
# @return [String]
|
6309
6322
|
#
|
6310
6323
|
# @!attribute [rw] automatic_failover_enabled
|
@@ -6424,7 +6437,7 @@ module Aws::ElastiCache
|
|
6424
6437
|
# @return [String]
|
6425
6438
|
#
|
6426
6439
|
# @!attribute [rw] auto_minor_version_upgrade
|
6427
|
-
# If you are running Redis engine version 6.0 or later, set this
|
6440
|
+
# If you are running Redis OSS engine version 6.0 or later, set this
|
6428
6441
|
# parameter to yes if you want to opt-in to the next auto minor
|
6429
6442
|
# version upgrade campaign. This parameter is disabled for previous
|
6430
6443
|
# versions.
|
@@ -6487,7 +6500,8 @@ module Aws::ElastiCache
|
|
6487
6500
|
#
|
6488
6501
|
# * DELETE - allowed only when transitioning to RBAC
|
6489
6502
|
#
|
6490
|
-
# For more information, see [Authenticating Users with Redis
|
6503
|
+
# For more information, see [Authenticating Users with Redis OSS
|
6504
|
+
# AUTH][1]
|
6491
6505
|
#
|
6492
6506
|
#
|
6493
6507
|
#
|
@@ -6515,7 +6529,7 @@ module Aws::ElastiCache
|
|
6515
6529
|
#
|
6516
6530
|
# @!attribute [rw] ip_discovery
|
6517
6531
|
# The network type you choose when modifying a cluster, either `ipv4`
|
6518
|
-
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
6532
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis OSS engine
|
6519
6533
|
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
6520
6534
|
# instances built on the [Nitro system][1].
|
6521
6535
|
#
|
@@ -6537,9 +6551,9 @@ module Aws::ElastiCache
|
|
6537
6551
|
# You must set `TransitEncryptionEnabled` to `true`, for your existing
|
6538
6552
|
# cluster, and set `TransitEncryptionMode` to `preferred` in the same
|
6539
6553
|
# request to allow both encrypted and unencrypted connections at the
|
6540
|
-
# same time. Once you migrate all your Redis clients to use
|
6541
|
-
# connections you can set the value to `required` to allow
|
6542
|
-
# connections only.
|
6554
|
+
# same time. Once you migrate all your Redis OSS clients to use
|
6555
|
+
# encrypted connections you can set the value to `required` to allow
|
6556
|
+
# encrypted connections only.
|
6543
6557
|
#
|
6544
6558
|
# Setting `TransitEncryptionMode` to `required` is a two-step process
|
6545
6559
|
# that requires you to first set the `TransitEncryptionMode` to
|
@@ -6550,10 +6564,11 @@ module Aws::ElastiCache
|
|
6550
6564
|
# @!attribute [rw] cluster_mode
|
6551
6565
|
# Enabled or Disabled. To modify cluster mode from Disabled to
|
6552
6566
|
# Enabled, you must first set the cluster mode to Compatible.
|
6553
|
-
# Compatible mode allows your Redis clients to connect using both
|
6567
|
+
# Compatible mode allows your Redis OSS clients to connect using both
|
6554
6568
|
# cluster mode enabled and cluster mode disabled. After you migrate
|
6555
|
-
# all Redis clients to use cluster mode enabled, you can then
|
6556
|
-
# cluster mode configuration and set the cluster mode to
|
6569
|
+
# all Redis OSS clients to use cluster mode enabled, you can then
|
6570
|
+
# complete cluster mode configuration and set the cluster mode to
|
6571
|
+
# Enabled.
|
6557
6572
|
# @return [String]
|
6558
6573
|
#
|
6559
6574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
|
@@ -6593,7 +6608,7 @@ module Aws::ElastiCache
|
|
6593
6608
|
end
|
6594
6609
|
|
6595
6610
|
# @!attribute [rw] replication_group
|
6596
|
-
# Contains all of the attributes of a specific Redis replication
|
6611
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
6597
6612
|
# group.
|
6598
6613
|
# @return [Types::ReplicationGroup]
|
6599
6614
|
#
|
@@ -6609,8 +6624,8 @@ module Aws::ElastiCache
|
|
6609
6624
|
# operation.
|
6610
6625
|
#
|
6611
6626
|
# @!attribute [rw] replication_group_id
|
6612
|
-
# The name of the Redis (cluster mode enabled) cluster
|
6613
|
-
# group) on which the shards are to be configured.
|
6627
|
+
# The name of the Redis OSS (cluster mode enabled) cluster
|
6628
|
+
# (replication group) on which the shards are to be configured.
|
6614
6629
|
# @return [String]
|
6615
6630
|
#
|
6616
6631
|
# @!attribute [rw] node_group_count
|
@@ -6643,8 +6658,8 @@ module Aws::ElastiCache
|
|
6643
6658
|
# `NodeGroupsToRetain` is required. `NodeGroupsToRemove` is a list of
|
6644
6659
|
# `NodeGroupId`s to remove from the cluster.
|
6645
6660
|
#
|
6646
|
-
# ElastiCache
|
6647
|
-
# by `NodeGroupsToRemove` from the cluster.
|
6661
|
+
# ElastiCache (Redis OSS) will attempt to remove all node groups
|
6662
|
+
# listed by `NodeGroupsToRemove` from the cluster.
|
6648
6663
|
# @return [Array<String>]
|
6649
6664
|
#
|
6650
6665
|
# @!attribute [rw] node_groups_to_retain
|
@@ -6653,8 +6668,8 @@ module Aws::ElastiCache
|
|
6653
6668
|
# `NodeGroupsToRetain` is required. `NodeGroupsToRetain` is a list of
|
6654
6669
|
# `NodeGroupId`s to retain in the cluster.
|
6655
6670
|
#
|
6656
|
-
# ElastiCache
|
6657
|
-
# those listed by `NodeGroupsToRetain` from the cluster.
|
6671
|
+
# ElastiCache (Redis OSS) will attempt to remove all node groups
|
6672
|
+
# except those listed by `NodeGroupsToRetain` from the cluster.
|
6658
6673
|
# @return [Array<String>]
|
6659
6674
|
#
|
6660
6675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfigurationMessage AWS API Documentation
|
@@ -6671,7 +6686,7 @@ module Aws::ElastiCache
|
|
6671
6686
|
end
|
6672
6687
|
|
6673
6688
|
# @!attribute [rw] replication_group
|
6674
|
-
# Contains all of the attributes of a specific Redis replication
|
6689
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
6675
6690
|
# group.
|
6676
6691
|
# @return [Types::ReplicationGroup]
|
6677
6692
|
#
|
@@ -6699,13 +6714,13 @@ module Aws::ElastiCache
|
|
6699
6714
|
#
|
6700
6715
|
# @!attribute [rw] remove_user_group
|
6701
6716
|
# The identifier of the UserGroup to be removed from association with
|
6702
|
-
# the Redis serverless cache. Available for Redis only.
|
6703
|
-
# NULL.
|
6717
|
+
# the Redis OSS serverless cache. Available for Redis OSS only.
|
6718
|
+
# Default is NULL.
|
6704
6719
|
# @return [Boolean]
|
6705
6720
|
#
|
6706
6721
|
# @!attribute [rw] user_group_id
|
6707
6722
|
# The identifier of the UserGroup to be associated with the serverless
|
6708
|
-
# cache. Available for Redis only. Default is NULL - the existing
|
6723
|
+
# cache. Available for Redis OSS only. Default is NULL - the existing
|
6709
6724
|
# UserGroup is not removed.
|
6710
6725
|
# @return [String]
|
6711
6726
|
#
|
@@ -6720,16 +6735,17 @@ module Aws::ElastiCache
|
|
6720
6735
|
#
|
6721
6736
|
# @!attribute [rw] snapshot_retention_limit
|
6722
6737
|
# The number of days for which Elasticache retains automatic snapshots
|
6723
|
-
# before deleting them. Available for Redis
|
6724
|
-
#
|
6725
|
-
#
|
6738
|
+
# before deleting them. Available for Redis OSS and Serverless
|
6739
|
+
# Memcached only. Default = NULL, i.e. the existing
|
6740
|
+
# snapshot-retention-limit will not be removed or modified. The
|
6741
|
+
# maximum value allowed is 35 days.
|
6726
6742
|
# @return [Integer]
|
6727
6743
|
#
|
6728
6744
|
# @!attribute [rw] daily_snapshot_time
|
6729
6745
|
# The daily time during which Elasticache begins taking a daily
|
6730
|
-
# snapshot of the serverless cache. Available for Redis
|
6731
|
-
# default is NULL, i.e. the existing
|
6732
|
-
# cluster is not removed.
|
6746
|
+
# snapshot of the serverless cache. Available for Redis OSS and
|
6747
|
+
# Serverless Memcached only. The default is NULL, i.e. the existing
|
6748
|
+
# snapshot time configured for the cluster is not removed.
|
6733
6749
|
# @return [String]
|
6734
6750
|
#
|
6735
6751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyServerlessCacheRequest AWS API Documentation
|
@@ -6829,9 +6845,9 @@ module Aws::ElastiCache
|
|
6829
6845
|
# nodes are read-only Replica nodes.
|
6830
6846
|
#
|
6831
6847
|
# @!attribute [rw] node_group_id
|
6832
|
-
# The identifier for the node group (shard). A Redis (cluster mode
|
6848
|
+
# The identifier for the node group (shard). A Redis OSS (cluster mode
|
6833
6849
|
# disabled) replication group contains only 1 node group; therefore,
|
6834
|
-
# the node group ID is 0001. A Redis (cluster mode enabled)
|
6850
|
+
# the node group ID is 0001. A Redis OSS (cluster mode enabled)
|
6835
6851
|
# replication group contains 1 to 90 node groups numbered 0001 to
|
6836
6852
|
# 0090. Optionally, the user can provide the id for a node group.
|
6837
6853
|
# @return [String]
|
@@ -6877,7 +6893,7 @@ module Aws::ElastiCache
|
|
6877
6893
|
# `ReplicaAvailabilityZones`, `ReplicaCount`.
|
6878
6894
|
#
|
6879
6895
|
# @!attribute [rw] node_group_id
|
6880
|
-
# Either the ElastiCache
|
6896
|
+
# Either the ElastiCache (Redis OSS) supplied 4-digit id or a user
|
6881
6897
|
# supplied id for the node group these configuration values apply to.
|
6882
6898
|
# @return [String]
|
6883
6899
|
#
|
@@ -6940,7 +6956,7 @@ module Aws::ElastiCache
|
|
6940
6956
|
# @!attribute [rw] read_endpoint
|
6941
6957
|
# The information required for client programs to connect to a node
|
6942
6958
|
# for read operations. The read endpoint is only applicable on Redis
|
6943
|
-
# (cluster mode disabled) clusters.
|
6959
|
+
# OSS (cluster mode disabled) clusters.
|
6944
6960
|
# @return [Types::Endpoint]
|
6945
6961
|
#
|
6946
6962
|
# @!attribute [rw] preferred_availability_zone
|
@@ -6953,8 +6969,8 @@ module Aws::ElastiCache
|
|
6953
6969
|
#
|
6954
6970
|
# @!attribute [rw] current_role
|
6955
6971
|
# The role that is currently assigned to the node - `primary` or
|
6956
|
-
# `replica`. This member is only applicable for Redis (cluster
|
6957
|
-
# disabled) replication groups.
|
6972
|
+
# `replica`. This member is only applicable for Redis OSS (cluster
|
6973
|
+
# mode disabled) replication groups.
|
6958
6974
|
# @return [String]
|
6959
6975
|
#
|
6960
6976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/NodeGroupMember AWS API Documentation
|
@@ -7266,7 +7282,7 @@ module Aws::ElastiCache
|
|
7266
7282
|
# @!attribute [rw] num_cache_nodes
|
7267
7283
|
# The new number of cache nodes for the cluster.
|
7268
7284
|
#
|
7269
|
-
# For clusters running Redis, this value must be 1. For clusters
|
7285
|
+
# For clusters running Redis OSS, this value must be 1. For clusters
|
7270
7286
|
# running Memcached, this value must be between 1 and 40.
|
7271
7287
|
# @return [Integer]
|
7272
7288
|
#
|
@@ -7333,7 +7349,7 @@ module Aws::ElastiCache
|
|
7333
7349
|
# @return [String]
|
7334
7350
|
#
|
7335
7351
|
# @!attribute [rw] update_action_status
|
7336
|
-
# The status of the update action on the Redis cluster
|
7352
|
+
# The status of the update action on the Redis OSS cluster
|
7337
7353
|
# @return [String]
|
7338
7354
|
#
|
7339
7355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ProcessedUpdateAction AWS API Documentation
|
@@ -7552,7 +7568,8 @@ module Aws::ElastiCache
|
|
7552
7568
|
include Aws::Structure
|
7553
7569
|
end
|
7554
7570
|
|
7555
|
-
# Contains all of the attributes of a specific Redis replication
|
7571
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
7572
|
+
# group.
|
7556
7573
|
#
|
7557
7574
|
# @!attribute [rw] replication_group_id
|
7558
7575
|
# The identifier for the replication group.
|
@@ -7584,10 +7601,10 @@ module Aws::ElastiCache
|
|
7584
7601
|
# @return [Array<String>]
|
7585
7602
|
#
|
7586
7603
|
# @!attribute [rw] node_groups
|
7587
|
-
# A list of node groups in this replication group. For Redis
|
7588
|
-
# mode disabled) replication groups, this is a single-element
|
7589
|
-
# For Redis (cluster mode enabled) replication groups, the
|
7590
|
-
# contains an entry for each node group (shard).
|
7604
|
+
# A list of node groups in this replication group. For Redis OSS
|
7605
|
+
# (cluster mode disabled) replication groups, this is a single-element
|
7606
|
+
# list. For Redis OSS (cluster mode enabled) replication groups, the
|
7607
|
+
# list contains an entry for each node group (shard).
|
7591
7608
|
# @return [Array<Types::NodeGroup>]
|
7592
7609
|
#
|
7593
7610
|
# @!attribute [rw] snapshotting_cluster_id
|
@@ -7596,7 +7613,7 @@ module Aws::ElastiCache
|
|
7596
7613
|
# @return [String]
|
7597
7614
|
#
|
7598
7615
|
# @!attribute [rw] automatic_failover
|
7599
|
-
# Indicates the status of automatic failover for this Redis
|
7616
|
+
# Indicates the status of automatic failover for this Redis OSS
|
7600
7617
|
# replication group.
|
7601
7618
|
# @return [String]
|
7602
7619
|
#
|
@@ -7654,7 +7671,7 @@ module Aws::ElastiCache
|
|
7654
7671
|
#
|
7655
7672
|
# @!attribute [rw] auth_token_enabled
|
7656
7673
|
# A flag that enables using an `AuthToken` (password) when issuing
|
7657
|
-
# Redis commands.
|
7674
|
+
# Redis OSS commands.
|
7658
7675
|
#
|
7659
7676
|
# Default: `false`
|
7660
7677
|
# @return [Boolean]
|
@@ -7667,7 +7684,7 @@ module Aws::ElastiCache
|
|
7667
7684
|
# A flag that enables in-transit encryption when set to `true`.
|
7668
7685
|
#
|
7669
7686
|
# **Required:** Only available when creating a replication group in an
|
7670
|
-
# Amazon VPC using
|
7687
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
7671
7688
|
#
|
7672
7689
|
# Default: `false`
|
7673
7690
|
# @return [Boolean]
|
@@ -7681,7 +7698,7 @@ module Aws::ElastiCache
|
|
7681
7698
|
# cluster.
|
7682
7699
|
#
|
7683
7700
|
# **Required:** Only available when creating a replication group in an
|
7684
|
-
# Amazon VPC using
|
7701
|
+
# Amazon VPC using Redis OSS version `3.2.6`, `4.x` or later.
|
7685
7702
|
#
|
7686
7703
|
# Default: `false`
|
7687
7704
|
# @return [Boolean]
|
@@ -7721,7 +7738,7 @@ module Aws::ElastiCache
|
|
7721
7738
|
# @return [String]
|
7722
7739
|
#
|
7723
7740
|
# @!attribute [rw] auto_minor_version_upgrade
|
7724
|
-
# If you are running Redis engine version 6.0 or later, set this
|
7741
|
+
# If you are running Redis OSS engine version 6.0 or later, set this
|
7725
7742
|
# parameter to yes if you want to opt-in to the next auto minor
|
7726
7743
|
# version upgrade campaign. This parameter is disabled for previous
|
7727
7744
|
# versions.
|
@@ -7729,7 +7746,7 @@ module Aws::ElastiCache
|
|
7729
7746
|
#
|
7730
7747
|
# @!attribute [rw] network_type
|
7731
7748
|
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported
|
7732
|
-
# for workloads using Redis engine version 6.2 onward or Memcached
|
7749
|
+
# for workloads using Redis OSS engine version 6.2 onward or Memcached
|
7733
7750
|
# engine version 1.6.6 on all instances built on the [Nitro
|
7734
7751
|
# system][1].
|
7735
7752
|
#
|
@@ -7740,7 +7757,7 @@ module Aws::ElastiCache
|
|
7740
7757
|
#
|
7741
7758
|
# @!attribute [rw] ip_discovery
|
7742
7759
|
# The network type you choose when modifying a cluster, either `ipv4`
|
7743
|
-
# \| `ipv6`. IPv6 is supported for workloads using Redis engine
|
7760
|
+
# \| `ipv6`. IPv6 is supported for workloads using Redis OSS engine
|
7744
7761
|
# version 6.2 onward or Memcached engine version 1.6.6 on all
|
7745
7762
|
# instances built on the [Nitro system][1].
|
7746
7763
|
#
|
@@ -7757,10 +7774,11 @@ module Aws::ElastiCache
|
|
7757
7774
|
# @!attribute [rw] cluster_mode
|
7758
7775
|
# Enabled or Disabled. To modify cluster mode from Disabled to
|
7759
7776
|
# Enabled, you must first set the cluster mode to Compatible.
|
7760
|
-
# Compatible mode allows your Redis clients to connect using both
|
7777
|
+
# Compatible mode allows your Redis OSS clients to connect using both
|
7761
7778
|
# cluster mode enabled and cluster mode disabled. After you migrate
|
7762
|
-
# all Redis clients to use cluster mode enabled, you can then
|
7763
|
-
# cluster mode configuration and set the cluster mode to
|
7779
|
+
# all Redis OSS clients to use cluster mode enabled, you can then
|
7780
|
+
# complete cluster mode configuration and set the cluster mode to
|
7781
|
+
# Enabled.
|
7764
7782
|
# @return [String]
|
7765
7783
|
#
|
7766
7784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
@@ -7845,7 +7863,7 @@ module Aws::ElastiCache
|
|
7845
7863
|
#
|
7846
7864
|
class ReplicationGroupNotUnderMigrationFault < Aws::EmptyStructure; end
|
7847
7865
|
|
7848
|
-
# The settings to be applied to the Redis replication group, either
|
7866
|
+
# The settings to be applied to the Redis OSS replication group, either
|
7849
7867
|
# immediately or during the next maintenance window.
|
7850
7868
|
#
|
7851
7869
|
# @!attribute [rw] primary_cluster_id
|
@@ -7855,7 +7873,7 @@ module Aws::ElastiCache
|
|
7855
7873
|
# @return [String]
|
7856
7874
|
#
|
7857
7875
|
# @!attribute [rw] automatic_failover_status
|
7858
|
-
# Indicates the status of automatic failover for this Redis
|
7876
|
+
# Indicates the status of automatic failover for this Redis OSS
|
7859
7877
|
# replication group.
|
7860
7878
|
# @return [String]
|
7861
7879
|
#
|
@@ -7887,10 +7905,11 @@ module Aws::ElastiCache
|
|
7887
7905
|
# @!attribute [rw] cluster_mode
|
7888
7906
|
# Enabled or Disabled. To modify cluster mode from Disabled to
|
7889
7907
|
# Enabled, you must first set the cluster mode to Compatible.
|
7890
|
-
# Compatible mode allows your Redis clients to connect using both
|
7908
|
+
# Compatible mode allows your Redis OSS clients to connect using both
|
7891
7909
|
# cluster mode enabled and cluster mode disabled. After you migrate
|
7892
|
-
# all Redis clients to use cluster mode enabled, you can then
|
7893
|
-
# cluster mode configuration and set the cluster mode to
|
7910
|
+
# all Redis OSS clients to use cluster mode enabled, you can then
|
7911
|
+
# complete cluster mode configuration and set the cluster mode to
|
7912
|
+
# Enabled.
|
7894
7913
|
# @return [String]
|
7895
7914
|
#
|
7896
7915
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroupPendingModifiedValues AWS API Documentation
|
@@ -7940,7 +7959,7 @@ module Aws::ElastiCache
|
|
7940
7959
|
#
|
7941
7960
|
# </note>
|
7942
7961
|
#
|
7943
|
-
# **M6g node types** (available only for Redis engine version
|
7962
|
+
# **M6g node types** (available only for Redis OSS engine version
|
7944
7963
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
7945
7964
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
7946
7965
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -7953,7 +7972,7 @@ module Aws::ElastiCache
|
|
7953
7972
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
7954
7973
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
7955
7974
|
#
|
7956
|
-
# **T4g node types** (available only for Redis engine version
|
7975
|
+
# **T4g node types** (available only for Redis OSS engine version
|
7957
7976
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
7958
7977
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
7959
7978
|
#
|
@@ -7995,7 +8014,7 @@ module Aws::ElastiCache
|
|
7995
8014
|
#
|
7996
8015
|
# </note>
|
7997
8016
|
#
|
7998
|
-
# **R6g node types** (available only for Redis engine version
|
8017
|
+
# **R6g node types** (available only for Redis OSS engine version
|
7999
8018
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8000
8019
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
8001
8020
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -8024,14 +8043,14 @@ module Aws::ElastiCache
|
|
8024
8043
|
# * All current generation instance types are created in Amazon VPC by
|
8025
8044
|
# default.
|
8026
8045
|
#
|
8027
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
8046
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
8028
8047
|
# instances.
|
8029
8048
|
#
|
8030
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
8049
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
8031
8050
|
# instances.
|
8032
8051
|
#
|
8033
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
8034
|
-
# not supported on Redis version 2.8.22 and later.
|
8052
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
8053
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
8035
8054
|
#
|
8036
8055
|
#
|
8037
8056
|
#
|
@@ -8166,7 +8185,7 @@ module Aws::ElastiCache
|
|
8166
8185
|
#
|
8167
8186
|
# </note>
|
8168
8187
|
#
|
8169
|
-
# **M6g node types** (available only for Redis engine version
|
8188
|
+
# **M6g node types** (available only for Redis OSS engine version
|
8170
8189
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8171
8190
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8172
8191
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -8179,7 +8198,7 @@ module Aws::ElastiCache
|
|
8179
8198
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
8180
8199
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
8181
8200
|
#
|
8182
|
-
# **T4g node types** (available only for Redis engine version
|
8201
|
+
# **T4g node types** (available only for Redis OSS engine version
|
8183
8202
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
8184
8203
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
8185
8204
|
#
|
@@ -8221,7 +8240,7 @@ module Aws::ElastiCache
|
|
8221
8240
|
#
|
8222
8241
|
# </note>
|
8223
8242
|
#
|
8224
|
-
# **R6g node types** (available only for Redis engine version
|
8243
|
+
# **R6g node types** (available only for Redis OSS engine version
|
8225
8244
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8226
8245
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
8227
8246
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -8250,14 +8269,14 @@ module Aws::ElastiCache
|
|
8250
8269
|
# * All current generation instance types are created in Amazon VPC by
|
8251
8270
|
# default.
|
8252
8271
|
#
|
8253
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
8272
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
8254
8273
|
# instances.
|
8255
8274
|
#
|
8256
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
8275
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
8257
8276
|
# instances.
|
8258
8277
|
#
|
8259
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
8260
|
-
# not supported on Redis version 2.8.22 and later.
|
8278
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
8279
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
8261
8280
|
#
|
8262
8281
|
#
|
8263
8282
|
#
|
@@ -8365,7 +8384,7 @@ module Aws::ElastiCache
|
|
8365
8384
|
# configuration of a node group in the resharded cluster.
|
8366
8385
|
#
|
8367
8386
|
# @!attribute [rw] node_group_id
|
8368
|
-
# Either the ElastiCache
|
8387
|
+
# Either the ElastiCache (Redis OSS) supplied 4-digit id or a user
|
8369
8388
|
# supplied id for the node group these configuration values apply to.
|
8370
8389
|
# @return [String]
|
8371
8390
|
#
|
@@ -8525,7 +8544,7 @@ module Aws::ElastiCache
|
|
8525
8544
|
#
|
8526
8545
|
# @!attribute [rw] user_group_id
|
8527
8546
|
# The identifier of the user group associated with the serverless
|
8528
|
-
# cache. Available for Redis only. Default is NULL.
|
8547
|
+
# cache. Available for Redis OSS only. Default is NULL.
|
8529
8548
|
# @return [String]
|
8530
8549
|
#
|
8531
8550
|
# @!attribute [rw] subnet_ids
|
@@ -8537,13 +8556,14 @@ module Aws::ElastiCache
|
|
8537
8556
|
#
|
8538
8557
|
# @!attribute [rw] snapshot_retention_limit
|
8539
8558
|
# The current setting for the number of serverless cache snapshots the
|
8540
|
-
# system will retain. Available for Redis
|
8559
|
+
# system will retain. Available for Redis OSS and Serverless Memcached
|
8560
|
+
# only.
|
8541
8561
|
# @return [Integer]
|
8542
8562
|
#
|
8543
8563
|
# @!attribute [rw] daily_snapshot_time
|
8544
8564
|
# The daily time that a cache snapshot will be created. Default is
|
8545
8565
|
# NULL, i.e. snapshots will not be created at a specific time on a
|
8546
|
-
# daily basis. Available for Redis only.
|
8566
|
+
# daily basis. Available for Redis OSS and Serverless Memcached only.
|
8547
8567
|
# @return [String]
|
8548
8568
|
#
|
8549
8569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ServerlessCache AWS API Documentation
|
@@ -8614,51 +8634,53 @@ module Aws::ElastiCache
|
|
8614
8634
|
class ServerlessCacheQuotaForCustomerExceededFault < Aws::EmptyStructure; end
|
8615
8635
|
|
8616
8636
|
# The resource representing a serverless cache snapshot. Available for
|
8617
|
-
# Redis only.
|
8637
|
+
# Redis OSS and Serverless Memcached only.
|
8618
8638
|
#
|
8619
8639
|
# @!attribute [rw] serverless_cache_snapshot_name
|
8620
8640
|
# The identifier of a serverless cache snapshot. Available for Redis
|
8621
|
-
# only.
|
8641
|
+
# OSS and Serverless Memcached only.
|
8622
8642
|
# @return [String]
|
8623
8643
|
#
|
8624
8644
|
# @!attribute [rw] arn
|
8625
8645
|
# The Amazon Resource Name (ARN) of a serverless cache snapshot.
|
8626
|
-
# Available for Redis only.
|
8646
|
+
# Available for Redis OSS and Serverless Memcached only.
|
8627
8647
|
# @return [String]
|
8628
8648
|
#
|
8629
8649
|
# @!attribute [rw] kms_key_id
|
8630
8650
|
# The ID of the Amazon Web Services Key Management Service (KMS) key
|
8631
|
-
# of a serverless cache snapshot. Available for Redis
|
8651
|
+
# of a serverless cache snapshot. Available for Redis OSS and
|
8652
|
+
# Serverless Memcached only.
|
8632
8653
|
# @return [String]
|
8633
8654
|
#
|
8634
8655
|
# @!attribute [rw] snapshot_type
|
8635
|
-
# The type of snapshot of serverless cache. Available for Redis
|
8656
|
+
# The type of snapshot of serverless cache. Available for Redis OSS
|
8657
|
+
# and Serverless Memcached only.
|
8636
8658
|
# @return [String]
|
8637
8659
|
#
|
8638
8660
|
# @!attribute [rw] status
|
8639
|
-
# The current status of the serverless cache. Available for Redis
|
8640
|
-
# only.
|
8661
|
+
# The current status of the serverless cache. Available for Redis OSS
|
8662
|
+
# and Serverless Memcached only.
|
8641
8663
|
# @return [String]
|
8642
8664
|
#
|
8643
8665
|
# @!attribute [rw] create_time
|
8644
8666
|
# The date and time that the source serverless cache's metadata and
|
8645
8667
|
# cache data set was obtained for the snapshot. Available for Redis
|
8646
|
-
# only.
|
8668
|
+
# OSS and Serverless Memcached only.
|
8647
8669
|
# @return [Time]
|
8648
8670
|
#
|
8649
8671
|
# @!attribute [rw] expiry_time
|
8650
8672
|
# The time that the serverless cache snapshot will expire. Available
|
8651
|
-
# for Redis only.
|
8673
|
+
# for Redis OSS and Serverless Memcached only.
|
8652
8674
|
# @return [Time]
|
8653
8675
|
#
|
8654
8676
|
# @!attribute [rw] bytes_used_for_cache
|
8655
8677
|
# The total size of a serverless cache snapshot, in bytes. Available
|
8656
|
-
# for Redis only.
|
8678
|
+
# for Redis OSS and Serverless Memcached only.
|
8657
8679
|
# @return [String]
|
8658
8680
|
#
|
8659
8681
|
# @!attribute [rw] serverless_cache_configuration
|
8660
8682
|
# The configuration of the serverless cache, at the time the snapshot
|
8661
|
-
# was taken. Available for Redis only.
|
8683
|
+
# was taken. Available for Redis OSS and Serverless Memcached only.
|
8662
8684
|
# @return [Types::ServerlessCacheConfiguration]
|
8663
8685
|
#
|
8664
8686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ServerlessCacheSnapshot AWS API Documentation
|
@@ -8678,21 +8700,21 @@ module Aws::ElastiCache
|
|
8678
8700
|
end
|
8679
8701
|
|
8680
8702
|
# A serverless cache snapshot with this name already exists. Available
|
8681
|
-
# for Redis only.
|
8703
|
+
# for Redis OSS and Serverless Memcached only.
|
8682
8704
|
#
|
8683
8705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ServerlessCacheSnapshotAlreadyExistsFault AWS API Documentation
|
8684
8706
|
#
|
8685
8707
|
class ServerlessCacheSnapshotAlreadyExistsFault < Aws::EmptyStructure; end
|
8686
8708
|
|
8687
8709
|
# This serverless cache snapshot could not be found or does not exist.
|
8688
|
-
# Available for Redis only.
|
8710
|
+
# Available for Redis OSS and Serverless Memcached only.
|
8689
8711
|
#
|
8690
8712
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ServerlessCacheSnapshotNotFoundFault AWS API Documentation
|
8691
8713
|
#
|
8692
8714
|
class ServerlessCacheSnapshotNotFoundFault < Aws::EmptyStructure; end
|
8693
8715
|
|
8694
8716
|
# The number of serverless cache snapshots exceeds the customer snapshot
|
8695
|
-
# quota. Available for Redis only.
|
8717
|
+
# quota. Available for Redis OSS and Serverless Memcached only.
|
8696
8718
|
#
|
8697
8719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ServerlessCacheSnapshotQuotaExceededFault AWS API Documentation
|
8698
8720
|
#
|
@@ -8704,7 +8726,7 @@ module Aws::ElastiCache
|
|
8704
8726
|
#
|
8705
8727
|
class ServiceLinkedRoleNotFoundFault < Aws::EmptyStructure; end
|
8706
8728
|
|
8707
|
-
# An update that you can apply to your Redis clusters.
|
8729
|
+
# An update that you can apply to your Redis OSS clusters.
|
8708
8730
|
#
|
8709
8731
|
# @!attribute [rw] service_update_name
|
8710
8732
|
# The unique ID of the service update
|
@@ -8745,13 +8767,13 @@ module Aws::ElastiCache
|
|
8745
8767
|
# @return [String]
|
8746
8768
|
#
|
8747
8769
|
# @!attribute [rw] engine
|
8748
|
-
# The Elasticache engine to which the update applies. Either Redis
|
8749
|
-
# Memcached
|
8770
|
+
# The Elasticache engine to which the update applies. Either Redis OSS
|
8771
|
+
# or Memcached.
|
8750
8772
|
# @return [String]
|
8751
8773
|
#
|
8752
8774
|
# @!attribute [rw] engine_version
|
8753
8775
|
# The Elasticache engine version to which the update applies. Either
|
8754
|
-
# Redis or Memcached engine version
|
8776
|
+
# Redis OSS or Memcached engine version.
|
8755
8777
|
# @return [String]
|
8756
8778
|
#
|
8757
8779
|
# @!attribute [rw] auto_update_after_recommended_apply_by_date
|
@@ -8822,8 +8844,8 @@ module Aws::ElastiCache
|
|
8822
8844
|
include Aws::Structure
|
8823
8845
|
end
|
8824
8846
|
|
8825
|
-
# Represents a copy of an entire Redis cluster as of the time when
|
8826
|
-
# snapshot was taken.
|
8847
|
+
# Represents a copy of an entire Redis OSS cluster as of the time when
|
8848
|
+
# the snapshot was taken.
|
8827
8849
|
#
|
8828
8850
|
# @!attribute [rw] snapshot_name
|
8829
8851
|
# The name of a snapshot. For an automatic snapshot, the name is
|
@@ -8874,7 +8896,7 @@ module Aws::ElastiCache
|
|
8874
8896
|
#
|
8875
8897
|
# </note>
|
8876
8898
|
#
|
8877
|
-
# **M6g node types** (available only for Redis engine version
|
8899
|
+
# **M6g node types** (available only for Redis OSS engine version
|
8878
8900
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8879
8901
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
8880
8902
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
@@ -8887,7 +8909,7 @@ module Aws::ElastiCache
|
|
8887
8909
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
8888
8910
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
8889
8911
|
#
|
8890
|
-
# **T4g node types** (available only for Redis engine version
|
8912
|
+
# **T4g node types** (available only for Redis OSS engine version
|
8891
8913
|
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
8892
8914
|
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
8893
8915
|
#
|
@@ -8929,7 +8951,7 @@ module Aws::ElastiCache
|
|
8929
8951
|
#
|
8930
8952
|
# </note>
|
8931
8953
|
#
|
8932
|
-
# **R6g node types** (available only for Redis engine version
|
8954
|
+
# **R6g node types** (available only for Redis OSS engine version
|
8933
8955
|
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
8934
8956
|
# `cache.r6g.large`, `cache.r6g.xlarge`, `cache.r6g.2xlarge`,
|
8935
8957
|
# `cache.r6g.4xlarge`, `cache.r6g.8xlarge`, `cache.r6g.12xlarge`,
|
@@ -8958,14 +8980,14 @@ module Aws::ElastiCache
|
|
8958
8980
|
# * All current generation instance types are created in Amazon VPC by
|
8959
8981
|
# default.
|
8960
8982
|
#
|
8961
|
-
# * Redis append-only files (AOF) are not supported for T1 or T2
|
8983
|
+
# * Redis OSS append-only files (AOF) are not supported for T1 or T2
|
8962
8984
|
# instances.
|
8963
8985
|
#
|
8964
|
-
# * Redis Multi-AZ with automatic failover is not supported on T1
|
8986
|
+
# * Redis OSS Multi-AZ with automatic failover is not supported on T1
|
8965
8987
|
# instances.
|
8966
8988
|
#
|
8967
|
-
# * Redis configuration variables `appendonly` and `appendfsync`
|
8968
|
-
# not supported on Redis version 2.8.22 and later.
|
8989
|
+
# * Redis OSS configuration variables `appendonly` and `appendfsync`
|
8990
|
+
# are not supported on Redis OSS version 2.8.22 and later.
|
8969
8991
|
#
|
8970
8992
|
#
|
8971
8993
|
#
|
@@ -8985,7 +9007,7 @@ module Aws::ElastiCache
|
|
8985
9007
|
# @!attribute [rw] num_cache_nodes
|
8986
9008
|
# The number of cache nodes in the source cluster.
|
8987
9009
|
#
|
8988
|
-
# For clusters running Redis, this value must be 1. For clusters
|
9010
|
+
# For clusters running Redis OSS, this value must be 1. For clusters
|
8989
9011
|
# running Memcached, this value must be between 1 and 40.
|
8990
9012
|
# @return [Integer]
|
8991
9013
|
#
|
@@ -9052,7 +9074,7 @@ module Aws::ElastiCache
|
|
9052
9074
|
# @return [String]
|
9053
9075
|
#
|
9054
9076
|
# @!attribute [rw] auto_minor_version_upgrade
|
9055
|
-
# If you are running Redis engine version 6.0 or later, set this
|
9077
|
+
# If you are running Redis OSS engine version 6.0 or later, set this
|
9056
9078
|
# parameter to yes if you want to opt-in to the next auto minor
|
9057
9079
|
# version upgrade campaign. This parameter is disabled for previous
|
9058
9080
|
# versions.
|
@@ -9084,7 +9106,7 @@ module Aws::ElastiCache
|
|
9084
9106
|
# @return [Integer]
|
9085
9107
|
#
|
9086
9108
|
# @!attribute [rw] automatic_failover
|
9087
|
-
# Indicates the status of automatic failover for the source Redis
|
9109
|
+
# Indicates the status of automatic failover for the source Redis OSS
|
9088
9110
|
# replication group.
|
9089
9111
|
# @return [String]
|
9090
9112
|
#
|
@@ -9153,11 +9175,11 @@ module Aws::ElastiCache
|
|
9153
9175
|
|
9154
9176
|
# You attempted one of the following operations:
|
9155
9177
|
#
|
9156
|
-
# * Creating a snapshot of a Redis cluster running on a
|
9157
|
-
# cache node.
|
9178
|
+
# * Creating a snapshot of a Redis OSS cluster running on a
|
9179
|
+
# `cache.t1.micro` cache node.
|
9158
9180
|
#
|
9159
9181
|
# * Creating a snapshot of a cluster that is running Memcached rather
|
9160
|
-
# than Redis.
|
9182
|
+
# than Redis OSS.
|
9161
9183
|
#
|
9162
9184
|
# Neither of these are supported by ElastiCache.
|
9163
9185
|
#
|
@@ -9183,7 +9205,7 @@ module Aws::ElastiCache
|
|
9183
9205
|
# @return [String]
|
9184
9206
|
#
|
9185
9207
|
# @!attribute [rw] customer_node_endpoint_list
|
9186
|
-
# List of endpoints from which data should be migrated. For Redis
|
9208
|
+
# List of endpoints from which data should be migrated. For Redis OSS
|
9187
9209
|
# (cluster mode disabled), list should have only one element.
|
9188
9210
|
# @return [Array<Types::CustomerNodeEndpoint>]
|
9189
9211
|
#
|
@@ -9197,7 +9219,7 @@ module Aws::ElastiCache
|
|
9197
9219
|
end
|
9198
9220
|
|
9199
9221
|
# @!attribute [rw] replication_group
|
9200
|
-
# Contains all of the attributes of a specific Redis replication
|
9222
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
9201
9223
|
# group.
|
9202
9224
|
# @return [Types::ReplicationGroup]
|
9203
9225
|
#
|
@@ -9227,8 +9249,9 @@ module Aws::ElastiCache
|
|
9227
9249
|
#
|
9228
9250
|
# @!attribute [rw] supported_network_types
|
9229
9251
|
# Either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
9230
|
-
# workloads using Redis engine version 6.2 onward or Memcached
|
9231
|
-
# version 1.6.6 on all instances built on the [Nitro
|
9252
|
+
# workloads using Redis OSS engine version 6.2 onward or Memcached
|
9253
|
+
# engine version 1.6.6 on all instances built on the [Nitro
|
9254
|
+
# system][1].
|
9232
9255
|
#
|
9233
9256
|
#
|
9234
9257
|
#
|
@@ -9356,7 +9379,7 @@ module Aws::ElastiCache
|
|
9356
9379
|
class TestFailoverNotAvailableFault < Aws::EmptyStructure; end
|
9357
9380
|
|
9358
9381
|
# @!attribute [rw] replication_group
|
9359
|
-
# Contains all of the attributes of a specific Redis replication
|
9382
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
9360
9383
|
# group.
|
9361
9384
|
# @return [Types::ReplicationGroup]
|
9362
9385
|
#
|
@@ -9387,7 +9410,7 @@ module Aws::ElastiCache
|
|
9387
9410
|
end
|
9388
9411
|
|
9389
9412
|
# @!attribute [rw] replication_group
|
9390
|
-
# Contains all of the attributes of a specific Redis replication
|
9413
|
+
# Contains all of the attributes of a specific Redis OSS replication
|
9391
9414
|
# group.
|
9392
9415
|
# @return [Types::ReplicationGroup]
|
9393
9416
|
#
|
@@ -9532,8 +9555,8 @@ module Aws::ElastiCache
|
|
9532
9555
|
# @return [String]
|
9533
9556
|
#
|
9534
9557
|
# @!attribute [rw] engine
|
9535
|
-
# The Elasticache engine to which the update applies. Either Redis
|
9536
|
-
# Memcached
|
9558
|
+
# The Elasticache engine to which the update applies. Either Redis OSS
|
9559
|
+
# or Memcached.
|
9537
9560
|
# @return [String]
|
9538
9561
|
#
|
9539
9562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/UpdateAction AWS API Documentation
|
@@ -9615,7 +9638,7 @@ module Aws::ElastiCache
|
|
9615
9638
|
# @return [String]
|
9616
9639
|
#
|
9617
9640
|
# @!attribute [rw] minimum_engine_version
|
9618
|
-
# The minimum engine version required, which is Redis 6.0
|
9641
|
+
# The minimum engine version required, which is Redis OSS 6.0
|
9619
9642
|
# @return [String]
|
9620
9643
|
#
|
9621
9644
|
# @!attribute [rw] access_string
|
@@ -9666,7 +9689,7 @@ module Aws::ElastiCache
|
|
9666
9689
|
# @return [String]
|
9667
9690
|
#
|
9668
9691
|
# @!attribute [rw] engine
|
9669
|
-
# The current supported value is Redis.
|
9692
|
+
# The current supported value is Redis user.
|
9670
9693
|
# @return [String]
|
9671
9694
|
#
|
9672
9695
|
# @!attribute [rw] user_ids
|
@@ -9674,7 +9697,7 @@ module Aws::ElastiCache
|
|
9674
9697
|
# @return [Array<String>]
|
9675
9698
|
#
|
9676
9699
|
# @!attribute [rw] minimum_engine_version
|
9677
|
-
# The minimum engine version required, which is Redis 6.0
|
9700
|
+
# The minimum engine version required, which is Redis OSS 6.0
|
9678
9701
|
# @return [String]
|
9679
9702
|
#
|
9680
9703
|
# @!attribute [rw] pending_changes
|
@@ -9687,7 +9710,8 @@ module Aws::ElastiCache
|
|
9687
9710
|
#
|
9688
9711
|
# @!attribute [rw] serverless_caches
|
9689
9712
|
# Indicates which serverless caches the specified user group is
|
9690
|
-
# associated with. Available for Redis
|
9713
|
+
# associated with. Available for Redis OSS and Serverless Memcached
|
9714
|
+
# only.
|
9691
9715
|
# @return [Array<String>]
|
9692
9716
|
#
|
9693
9717
|
# @!attribute [rw] arn
|