aws-sdk-elasticache 1.115.0 → 1.117.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticache/client.rb +329 -281
- data/lib/aws-sdk-elasticache/client_api.rb +6 -0
- data/lib/aws-sdk-elasticache/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-elasticache/endpoints.rb +2 -823
- data/lib/aws-sdk-elasticache/plugins/endpoints.rb +1 -156
- data/lib/aws-sdk-elasticache/types.rb +446 -396
- data/lib/aws-sdk-elasticache.rb +1 -1
- data/sig/client.rbs +6 -1
- data/sig/types.rbs +6 -0
- metadata +4 -4
@@ -819,6 +819,7 @@ module Aws::ElastiCache
|
|
819
819
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
820
820
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
821
821
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
822
|
+
# resp.replication_group.engine #=> String
|
822
823
|
#
|
823
824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
|
824
825
|
#
|
@@ -830,24 +831,24 @@ module Aws::ElastiCache
|
|
830
831
|
end
|
831
832
|
|
832
833
|
# Creates a copy of an existing serverless cache’s snapshot. Available
|
833
|
-
# for Redis OSS and Serverless Memcached only.
|
834
|
+
# for Valkey, Redis OSS and Serverless Memcached only.
|
834
835
|
#
|
835
836
|
# @option params [required, String] :source_serverless_cache_snapshot_name
|
836
837
|
# The identifier of the existing serverless cache’s snapshot to be
|
837
|
-
# copied. Available for Redis OSS and Serverless Memcached only.
|
838
|
+
# copied. Available for Valkey, Redis OSS and Serverless Memcached only.
|
838
839
|
#
|
839
840
|
# @option params [required, String] :target_serverless_cache_snapshot_name
|
840
|
-
# The identifier for the snapshot to be created. Available for
|
841
|
-
# and Serverless Memcached only.
|
841
|
+
# The identifier for the snapshot to be created. Available for Valkey,
|
842
|
+
# Redis OSS and Serverless Memcached only.
|
842
843
|
#
|
843
844
|
# @option params [String] :kms_key_id
|
844
845
|
# The identifier of the KMS key used to encrypt the target snapshot.
|
845
|
-
# Available for Redis OSS and Serverless Memcached only.
|
846
|
+
# Available for Valkey, Redis OSS and Serverless Memcached only.
|
846
847
|
#
|
847
848
|
# @option params [Array<Types::Tag>] :tags
|
848
849
|
# A list of tags to be added to the target snapshot resource. A tag is a
|
849
|
-
# key-value pair. Available for Redis OSS and Serverless
|
850
|
-
# Default: NULL
|
850
|
+
# key-value pair. Available for Valkey, Redis OSS and Serverless
|
851
|
+
# Memcached only. Default: NULL
|
851
852
|
#
|
852
853
|
# @return [Types::CopyServerlessCacheSnapshotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
853
854
|
#
|
@@ -892,7 +893,7 @@ module Aws::ElastiCache
|
|
892
893
|
|
893
894
|
# Makes a copy of an existing snapshot.
|
894
895
|
#
|
895
|
-
# <note markdown="1"> This operation is valid for Redis OSS only.
|
896
|
+
# <note markdown="1"> This operation is valid for Valkey or Redis OSS only.
|
896
897
|
#
|
897
898
|
# </note>
|
898
899
|
#
|
@@ -1119,11 +1120,11 @@ module Aws::ElastiCache
|
|
1119
1120
|
end
|
1120
1121
|
|
1121
1122
|
# Creates a cluster. All nodes in the cluster run the same
|
1122
|
-
# protocol-compliant cache engine software, either Memcached or
|
1123
|
-
# OSS.
|
1123
|
+
# protocol-compliant cache engine software, either Memcached, Valkey or
|
1124
|
+
# Redis OSS.
|
1124
1125
|
#
|
1125
|
-
# This operation is not supported for Redis OSS (cluster mode
|
1126
|
-
# clusters.
|
1126
|
+
# This operation is not supported for Valkey or Redis OSS (cluster mode
|
1127
|
+
# enabled) clusters.
|
1127
1128
|
#
|
1128
1129
|
# @option params [required, String] :cache_cluster_id
|
1129
1130
|
# The node group (shard) identifier. This parameter is stored as a
|
@@ -1195,8 +1196,8 @@ module Aws::ElastiCache
|
|
1195
1196
|
# @option params [Integer] :num_cache_nodes
|
1196
1197
|
# The initial number of cache nodes that the cluster has.
|
1197
1198
|
#
|
1198
|
-
# For clusters running Redis OSS, this value must be 1. For
|
1199
|
-
# running Memcached, this value must be between 1 and 40.
|
1199
|
+
# For clusters running Valkey or Redis OSS, this value must be 1. For
|
1200
|
+
# clusters running Memcached, this value must be between 1 and 40.
|
1200
1201
|
#
|
1201
1202
|
# If you need more than 40 nodes for your Memcached cluster, please fill
|
1202
1203
|
# out the ElastiCache Limit Increase Request form at
|
@@ -1311,14 +1312,14 @@ module Aws::ElastiCache
|
|
1311
1312
|
# * All current generation instance types are created in Amazon VPC by
|
1312
1313
|
# default.
|
1313
1314
|
#
|
1314
|
-
# * Redis OSS append-only files (AOF) are not supported for T1
|
1315
|
-
# instances.
|
1315
|
+
# * Valkey or Redis OSS append-only files (AOF) are not supported for T1
|
1316
|
+
# or T2 instances.
|
1316
1317
|
#
|
1317
|
-
# * Redis OSS Multi-AZ with automatic failover is not
|
1318
|
-
# instances.
|
1318
|
+
# * Valkey or Redis OSS Multi-AZ with automatic failover is not
|
1319
|
+
# supported on T1 instances.
|
1319
1320
|
#
|
1320
|
-
# *
|
1321
|
-
#
|
1321
|
+
# * The configuration variables `appendonly` and `appendfsync` are not
|
1322
|
+
# supported on Valkey, or on Redis OSS version 2.8.22 and later.
|
1322
1323
|
#
|
1323
1324
|
#
|
1324
1325
|
#
|
@@ -1381,9 +1382,9 @@ module Aws::ElastiCache
|
|
1381
1382
|
#
|
1382
1383
|
# @option params [Array<String>] :snapshot_arns
|
1383
1384
|
# A single-element string list containing an Amazon Resource Name (ARN)
|
1384
|
-
# that uniquely identifies a Redis OSS RDB snapshot file
|
1385
|
-
# Amazon S3. The snapshot file is used to populate the node
|
1386
|
-
# (shard). The Amazon S3 object name in the ARN cannot contain any
|
1385
|
+
# that uniquely identifies a Valkey or Redis OSS RDB snapshot file
|
1386
|
+
# stored in Amazon S3. The snapshot file is used to populate the node
|
1387
|
+
# group (shard). The Amazon S3 object name in the ARN cannot contain any
|
1387
1388
|
# commas.
|
1388
1389
|
#
|
1389
1390
|
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
@@ -1393,9 +1394,9 @@ module Aws::ElastiCache
|
|
1393
1394
|
# Example of an Amazon S3 ARN: `arn:aws:s3:::my_bucket/snapshot1.rdb`
|
1394
1395
|
#
|
1395
1396
|
# @option params [String] :snapshot_name
|
1396
|
-
# The name of a Redis OSS snapshot from which to restore data
|
1397
|
-
# new node group (shard). The snapshot status changes to
|
1398
|
-
# while the new node group (shard) is being created.
|
1397
|
+
# The name of a Valkey or Redis OSS snapshot from which to restore data
|
1398
|
+
# into the new node group (shard). The snapshot status changes to
|
1399
|
+
# `restoring` while the new node group (shard) is being created.
|
1399
1400
|
#
|
1400
1401
|
# <note markdown="1"> This parameter is only valid if the `Engine` parameter is `redis`.
|
1401
1402
|
#
|
@@ -1419,9 +1420,10 @@ module Aws::ElastiCache
|
|
1419
1420
|
# </note>
|
1420
1421
|
#
|
1421
1422
|
# @option params [Boolean] :auto_minor_version_upgrade
|
1422
|
-
# If you are running
|
1423
|
-
#
|
1424
|
-
# upgrade campaign. This parameter is disabled for
|
1423
|
+
# If you are running Valkey 7.2 and above or Redis OSS engine version
|
1424
|
+
# 6.0 and above, set this parameter to yes to opt-in to the next auto
|
1425
|
+
# minor version upgrade campaign. This parameter is disabled for
|
1426
|
+
# previous versions.
|
1425
1427
|
#
|
1426
1428
|
# @option params [Integer] :snapshot_retention_limit
|
1427
1429
|
# The number of days for which ElastiCache retains automatic snapshots
|
@@ -1489,8 +1491,9 @@ module Aws::ElastiCache
|
|
1489
1491
|
#
|
1490
1492
|
# @option params [String] :network_type
|
1491
1493
|
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
1492
|
-
# workloads using Redis OSS engine version 6.2
|
1493
|
-
# engine version 1.6.6 on all instances
|
1494
|
+
# workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 and
|
1495
|
+
# above or Memcached engine version 1.6.6 and above on all instances
|
1496
|
+
# built on the [Nitro system][1].
|
1494
1497
|
#
|
1495
1498
|
#
|
1496
1499
|
#
|
@@ -1498,9 +1501,9 @@ module Aws::ElastiCache
|
|
1498
1501
|
#
|
1499
1502
|
# @option params [String] :ip_discovery
|
1500
1503
|
# The network type you choose when modifying a cluster, either `ipv4` \|
|
1501
|
-
# `ipv6`. IPv6 is supported for workloads using
|
1502
|
-
#
|
1503
|
-
# the [Nitro system][1].
|
1504
|
+
# `ipv6`. IPv6 is supported for workloads using Valkey 7.2 and above,
|
1505
|
+
# Redis OSS engine version 6.2 and above or Memcached engine version
|
1506
|
+
# 1.6.6 and above on all instances built on the [Nitro system][1].
|
1504
1507
|
#
|
1505
1508
|
#
|
1506
1509
|
#
|
@@ -2017,12 +2020,12 @@ module Aws::ElastiCache
|
|
2017
2020
|
req.send_request(options)
|
2018
2021
|
end
|
2019
2022
|
|
2020
|
-
# Global Datastore
|
2021
|
-
#
|
2023
|
+
# Global Datastore offers fully managed, fast, reliable and secure
|
2024
|
+
# cross-region replication. Using Global Datastore with Valkey or Redis
|
2022
2025
|
# OSS, you can create cross-region read replica clusters for ElastiCache
|
2023
|
-
#
|
2024
|
-
#
|
2025
|
-
#
|
2026
|
+
# to enable low-latency reads and disaster recovery across regions. For
|
2027
|
+
# more information, see [Replication Across Regions Using Global
|
2028
|
+
# Datastore][1].
|
2026
2029
|
#
|
2027
2030
|
# * The **GlobalReplicationGroupIdSuffix** is the name of the Global
|
2028
2031
|
# datastore.
|
@@ -2103,45 +2106,45 @@ module Aws::ElastiCache
|
|
2103
2106
|
req.send_request(options)
|
2104
2107
|
end
|
2105
2108
|
|
2106
|
-
# Creates a Redis OSS (cluster mode disabled) or a
|
2107
|
-
# mode enabled) replication group.
|
2109
|
+
# Creates a Valkey or Redis OSS (cluster mode disabled) or a Valkey or
|
2110
|
+
# Redis OSS (cluster mode enabled) replication group.
|
2108
2111
|
#
|
2109
2112
|
# This API can be used to create a standalone regional replication group
|
2110
2113
|
# or a secondary replication group associated with a Global datastore.
|
2111
2114
|
#
|
2112
|
-
# A Redis OSS (cluster mode disabled) replication group is a
|
2113
|
-
# of nodes, where one of the nodes is a read/write primary
|
2114
|
-
# others are read-only replicas. Writes to the primary are
|
2115
|
+
# A Valkey or Redis OSS (cluster mode disabled) replication group is a
|
2116
|
+
# collection of nodes, where one of the nodes is a read/write primary
|
2117
|
+
# and the others are read-only replicas. Writes to the primary are
|
2115
2118
|
# asynchronously propagated to the replicas.
|
2116
2119
|
#
|
2117
|
-
# A Redis OSS cluster-mode enabled cluster is comprised of
|
2118
|
-
# shards (API/CLI: node groups). Each shard has a primary
|
2119
|
-
# 5 read-only replica nodes. The configuration can range
|
2120
|
-
# and 0 replicas to 15 shards and 5 replicas, which is
|
2121
|
-
# number or replicas allowed.
|
2120
|
+
# A Valkey or Redis OSS cluster-mode enabled cluster is comprised of
|
2121
|
+
# from 1 to 90 shards (API/CLI: node groups). Each shard has a primary
|
2122
|
+
# node and up to 5 read-only replica nodes. The configuration can range
|
2123
|
+
# from 90 shards and 0 replicas to 15 shards and 5 replicas, which is
|
2124
|
+
# the maximum number or replicas allowed.
|
2122
2125
|
#
|
2123
2126
|
# The node or shard limit can be increased to a maximum of 500 per
|
2124
|
-
# cluster if the Redis OSS engine version is 5.0.6 or higher.
|
2125
|
-
# example, you can choose to configure a 500 node cluster that
|
2126
|
-
# between 83 shards (one primary and 5 replicas per shard) and
|
2127
|
-
# shards (single primary and no replicas). Make sure there are
|
2128
|
-
# available IP addresses to accommodate the increase. Common
|
2129
|
-
# include the subnets in the subnet group have too small a CIDR
|
2130
|
-
# the subnets are shared and heavily used by other clusters.
|
2131
|
-
# information, see [Creating a Subnet Group][1]. For versions
|
2132
|
-
# 5.0.6, the limit is 250 per cluster.
|
2127
|
+
# cluster if the Valkey or Redis OSS engine version is 5.0.6 or higher.
|
2128
|
+
# For example, you can choose to configure a 500 node cluster that
|
2129
|
+
# ranges between 83 shards (one primary and 5 replicas per shard) and
|
2130
|
+
# 500 shards (single primary and no replicas). Make sure there are
|
2131
|
+
# enough available IP addresses to accommodate the increase. Common
|
2132
|
+
# pitfalls include the subnets in the subnet group have too small a CIDR
|
2133
|
+
# range or the subnets are shared and heavily used by other clusters.
|
2134
|
+
# For more information, see [Creating a Subnet Group][1]. For versions
|
2135
|
+
# below 5.0.6, the limit is 250 per cluster.
|
2133
2136
|
#
|
2134
2137
|
# To request a limit increase, see [Amazon Service Limits][2] and choose
|
2135
2138
|
# the limit type **Nodes per cluster per instance type**.
|
2136
2139
|
#
|
2137
|
-
# When a Redis OSS (cluster mode disabled) replication group
|
2138
|
-
# successfully created, you can add one or more read replicas
|
2139
|
-
# to a total of 5 read replicas. If you need to increase or
|
2140
|
-
# number of node groups (console: shards), you can use
|
2141
|
-
#
|
2142
|
-
#
|
2140
|
+
# When a Valkey or Redis OSS (cluster mode disabled) replication group
|
2141
|
+
# has been successfully created, you can add one or more read replicas
|
2142
|
+
# to it, up to a total of 5 read replicas. If you need to increase or
|
2143
|
+
# decrease the number of node groups (console: shards), you can use
|
2144
|
+
# scaling. For more information, see [Scaling self-designed clusters][3]
|
2145
|
+
# in the *ElastiCache User Guide*.
|
2143
2146
|
#
|
2144
|
-
# <note markdown="1"> This operation is valid for Redis OSS only.
|
2147
|
+
# <note markdown="1"> This operation is valid for Valkey and Redis OSS only.
|
2145
2148
|
#
|
2146
2149
|
# </note>
|
2147
2150
|
#
|
@@ -2181,8 +2184,8 @@ module Aws::ElastiCache
|
|
2181
2184
|
# Specifies whether a read-only replica is automatically promoted to
|
2182
2185
|
# read/write primary if the existing primary fails.
|
2183
2186
|
#
|
2184
|
-
# `AutomaticFailoverEnabled` must be enabled for Redis OSS
|
2185
|
-
# enabled) replication groups.
|
2187
|
+
# `AutomaticFailoverEnabled` must be enabled for Valkey or Redis OSS
|
2188
|
+
# (cluster mode enabled) replication groups.
|
2186
2189
|
#
|
2187
2190
|
# Default: false
|
2188
2191
|
#
|
@@ -2231,9 +2234,9 @@ module Aws::ElastiCache
|
|
2231
2234
|
#
|
2232
2235
|
# @option params [Integer] :num_node_groups
|
2233
2236
|
# An optional parameter that specifies the number of node groups
|
2234
|
-
# (shards) for this Redis OSS (cluster mode enabled)
|
2235
|
-
# For Redis OSS (cluster mode disabled)
|
2236
|
-
# set it to 1.
|
2237
|
+
# (shards) for this Valkey or Redis OSS (cluster mode enabled)
|
2238
|
+
# replication group. For Valkey or Redis OSS (cluster mode disabled)
|
2239
|
+
# either omit this parameter or set it to 1.
|
2237
2240
|
#
|
2238
2241
|
# Default: 1
|
2239
2242
|
#
|
@@ -2247,13 +2250,13 @@ module Aws::ElastiCache
|
|
2247
2250
|
# `PrimaryAvailabilityZone`, `ReplicaAvailabilityZones`, `ReplicaCount`,
|
2248
2251
|
# and `Slots`.
|
2249
2252
|
#
|
2250
|
-
# If you're creating a Redis OSS (cluster mode disabled) or a
|
2251
|
-
# (cluster mode enabled) replication group, you can
|
2252
|
-
# to individually configure each node group (shard),
|
2253
|
-
# this parameter. However, it is required when seeding a
|
2254
|
-
# (cluster mode enabled) cluster from a S3 rdb file.
|
2255
|
-
# each node group (shard) using this parameter
|
2256
|
-
# the slots for each node group.
|
2253
|
+
# If you're creating a Valkey or Redis OSS (cluster mode disabled) or a
|
2254
|
+
# Valkey or Redis OSS (cluster mode enabled) replication group, you can
|
2255
|
+
# use this parameter to individually configure each node group (shard),
|
2256
|
+
# or you can omit this parameter. However, it is required when seeding a
|
2257
|
+
# Valkey or Redis OSS (cluster mode enabled) cluster from a S3 rdb file.
|
2258
|
+
# You must configure each node group (shard) using this parameter
|
2259
|
+
# because you must specify the slots for each node group.
|
2257
2260
|
#
|
2258
2261
|
# @option params [String] :cache_node_type
|
2259
2262
|
# The compute and memory capacity of the nodes in the node group
|
@@ -2360,14 +2363,14 @@ module Aws::ElastiCache
|
|
2360
2363
|
# * All current generation instance types are created in Amazon VPC by
|
2361
2364
|
# default.
|
2362
2365
|
#
|
2363
|
-
# * Redis OSS append-only files (AOF) are not supported for T1
|
2364
|
-
# instances.
|
2366
|
+
# * Valkey or Redis OSS append-only files (AOF) are not supported for T1
|
2367
|
+
# or T2 instances.
|
2365
2368
|
#
|
2366
|
-
# * Redis OSS Multi-AZ with automatic failover is not
|
2367
|
-
# instances.
|
2369
|
+
# * Valkey or Redis OSS Multi-AZ with automatic failover is not
|
2370
|
+
# supported on T1 instances.
|
2368
2371
|
#
|
2369
|
-
# *
|
2370
|
-
#
|
2372
|
+
# * The configuration variables `appendonly` and `appendfsync` are not
|
2373
|
+
# supported on Valkey, or on Redis OSS version 2.8.22 and later.
|
2371
2374
|
#
|
2372
2375
|
#
|
2373
2376
|
#
|
@@ -2398,15 +2401,15 @@ module Aws::ElastiCache
|
|
2398
2401
|
# group. If this argument is omitted, the default cache parameter group
|
2399
2402
|
# for the specified engine is used.
|
2400
2403
|
#
|
2401
|
-
# If you are running Redis OSS version 3.2.4 or later, only
|
2402
|
-
# group (shard), and want to use a default parameter group, we
|
2403
|
-
# that you specify the parameter group by name.
|
2404
|
+
# If you are running Valkey or Redis OSS version 3.2.4 or later, only
|
2405
|
+
# one node group (shard), and want to use a default parameter group, we
|
2406
|
+
# recommend that you specify the parameter group by name.
|
2404
2407
|
#
|
2405
|
-
# * To create a Redis OSS (cluster mode disabled) replication
|
2406
|
-
# `CacheParameterGroupName=default.redis3.2`.
|
2408
|
+
# * To create a Valkey or Redis OSS (cluster mode disabled) replication
|
2409
|
+
# group, use `CacheParameterGroupName=default.redis3.2`.
|
2407
2410
|
#
|
2408
|
-
# * To create a Redis OSS (cluster mode enabled) replication
|
2409
|
-
# `CacheParameterGroupName=default.redis3.2.cluster.on`.
|
2411
|
+
# * To create a Valkey or Redis OSS (cluster mode enabled) replication
|
2412
|
+
# group, use `CacheParameterGroupName=default.redis3.2.cluster.on`.
|
2410
2413
|
#
|
2411
2414
|
# @option params [String] :cache_subnet_group_name
|
2412
2415
|
# The name of the cache subnet group to be used for the replication
|
@@ -2439,14 +2442,14 @@ module Aws::ElastiCache
|
|
2439
2442
|
# groups will be replicated to all nodes.
|
2440
2443
|
#
|
2441
2444
|
# @option params [Array<String>] :snapshot_arns
|
2442
|
-
# A list of Amazon Resource Names (ARN) that uniquely identify the
|
2443
|
-
# OSS RDB snapshot files stored in Amazon S3. The
|
2444
|
-
# used to populate the new replication group. The
|
2445
|
-
# in the ARN cannot contain any commas. The new
|
2446
|
-
# have the number of node groups (console:
|
2447
|
-
# parameter *NumNodeGroups* or the number of
|
2448
|
-
# *NodeGroupConfiguration* regardless of the
|
2449
|
-
# here.
|
2445
|
+
# A list of Amazon Resource Names (ARN) that uniquely identify the
|
2446
|
+
# Valkey or Redis OSS RDB snapshot files stored in Amazon S3. The
|
2447
|
+
# snapshot files are used to populate the new replication group. The
|
2448
|
+
# Amazon S3 object name in the ARN cannot contain any commas. The new
|
2449
|
+
# replication group will have the number of node groups (console:
|
2450
|
+
# shards) specified by the parameter *NumNodeGroups* or the number of
|
2451
|
+
# node groups configured by *NodeGroupConfiguration* regardless of the
|
2452
|
+
# number of ARNs specified here.
|
2450
2453
|
#
|
2451
2454
|
# Example of an Amazon S3 ARN: `arn:aws:s3:::my_bucket/snapshot1.rdb`
|
2452
2455
|
#
|
@@ -2492,9 +2495,10 @@ module Aws::ElastiCache
|
|
2492
2495
|
# </note>
|
2493
2496
|
#
|
2494
2497
|
# @option params [Boolean] :auto_minor_version_upgrade
|
2495
|
-
# If you are running
|
2496
|
-
#
|
2497
|
-
# upgrade campaign. This parameter is disabled for
|
2498
|
+
# If you are running Valkey 7.2 and above or Redis OSS engine version
|
2499
|
+
# 6.0 and above, set this parameter to yes to opt-in to the next auto
|
2500
|
+
# minor version upgrade campaign. This parameter is disabled for
|
2501
|
+
# previous versions.
|
2498
2502
|
#
|
2499
2503
|
# @option params [Integer] :snapshot_retention_limit
|
2500
2504
|
# The number of days for which ElastiCache retains automatic snapshots
|
@@ -2592,8 +2596,9 @@ module Aws::ElastiCache
|
|
2592
2596
|
#
|
2593
2597
|
# @option params [String] :network_type
|
2594
2598
|
# Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
|
2595
|
-
# workloads using Redis OSS engine version 6.2
|
2596
|
-
# engine version 1.6.6 on all instances
|
2599
|
+
# workloads using Valkey 7.2 and above, Redis OSS engine version 6.2 and
|
2600
|
+
# above or Memcached engine version 1.6.6 and above on all instances
|
2601
|
+
# built on the [Nitro system][1].
|
2597
2602
|
#
|
2598
2603
|
#
|
2599
2604
|
#
|
@@ -2601,9 +2606,10 @@ module Aws::ElastiCache
|
|
2601
2606
|
#
|
2602
2607
|
# @option params [String] :ip_discovery
|
2603
2608
|
# The network type you choose when creating a replication group, either
|
2604
|
-
# `ipv4` \| `ipv6`. IPv6 is supported for workloads using
|
2605
|
-
# engine version 6.2
|
2606
|
-
# instances built on the [Nitro
|
2609
|
+
# `ipv4` \| `ipv6`. IPv6 is supported for workloads using Valkey 7.2 and
|
2610
|
+
# above, Redis OSS engine version 6.2 and above or Memcached engine
|
2611
|
+
# version 1.6.6 and above on all instances built on the [Nitro
|
2612
|
+
# system][1].
|
2607
2613
|
#
|
2608
2614
|
#
|
2609
2615
|
#
|
@@ -2616,9 +2622,9 @@ module Aws::ElastiCache
|
|
2616
2622
|
# When setting `TransitEncryptionEnabled` to `true`, you can set your
|
2617
2623
|
# `TransitEncryptionMode` to `preferred` in the same request, to allow
|
2618
2624
|
# both encrypted and unencrypted connections at the same time. Once you
|
2619
|
-
# migrate all your Redis OSS clients to use encrypted
|
2620
|
-
# can modify the value to `required` to allow encrypted
|
2621
|
-
# only.
|
2625
|
+
# migrate all your Valkey or Redis OSS clients to use encrypted
|
2626
|
+
# connections you can modify the value to `required` to allow encrypted
|
2627
|
+
# connections only.
|
2622
2628
|
#
|
2623
2629
|
# Setting `TransitEncryptionMode` to `required` is a two-step process
|
2624
2630
|
# that requires you to first set the `TransitEncryptionMode` to
|
@@ -2631,14 +2637,15 @@ module Aws::ElastiCache
|
|
2631
2637
|
# @option params [String] :cluster_mode
|
2632
2638
|
# Enabled or Disabled. To modify cluster mode from Disabled to Enabled,
|
2633
2639
|
# you must first set the cluster mode to Compatible. Compatible mode
|
2634
|
-
# allows your Redis OSS clients to connect using both cluster
|
2635
|
-
# enabled and cluster mode disabled. After you migrate all
|
2636
|
-
# clients to use cluster mode enabled, you can then
|
2637
|
-
# mode configuration and set the cluster mode to
|
2640
|
+
# allows your Valkey or Redis OSS clients to connect using both cluster
|
2641
|
+
# mode enabled and cluster mode disabled. After you migrate all Valkey
|
2642
|
+
# or Redis OSS clients to use cluster mode enabled, you can then
|
2643
|
+
# complete cluster mode configuration and set the cluster mode to
|
2644
|
+
# Enabled.
|
2638
2645
|
#
|
2639
2646
|
# @option params [String] :serverless_cache_snapshot_name
|
2640
2647
|
# The name of the snapshot used to create a replication group. Available
|
2641
|
-
# for Redis OSS only.
|
2648
|
+
# for Valkey, Redis OSS only.
|
2642
2649
|
#
|
2643
2650
|
# @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2644
2651
|
#
|
@@ -2885,6 +2892,7 @@ module Aws::ElastiCache
|
|
2885
2892
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
2886
2893
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
2887
2894
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
2895
|
+
# resp.replication_group.engine #=> String
|
2888
2896
|
#
|
2889
2897
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
|
2890
2898
|
#
|
@@ -2931,7 +2939,8 @@ module Aws::ElastiCache
|
|
2931
2939
|
#
|
2932
2940
|
# @option params [Array<String>] :snapshot_arns_to_restore
|
2933
2941
|
# The ARN(s) of the snapshot that the new serverless cache will be
|
2934
|
-
# created from. Available for Redis OSS and Serverless Memcached
|
2942
|
+
# created from. Available for Valkey, Redis OSS and Serverless Memcached
|
2943
|
+
# only.
|
2935
2944
|
#
|
2936
2945
|
# @option params [Array<Types::Tag>] :tags
|
2937
2946
|
# The list of tags (key, value) pairs to be added to the serverless
|
@@ -2939,7 +2948,7 @@ module Aws::ElastiCache
|
|
2939
2948
|
#
|
2940
2949
|
# @option params [String] :user_group_id
|
2941
2950
|
# The identifier of the UserGroup to be associated with the serverless
|
2942
|
-
# cache. Available for Redis OSS only. Default is NULL.
|
2951
|
+
# cache. Available for Valkey and Redis OSS only. Default is NULL.
|
2943
2952
|
#
|
2944
2953
|
# @option params [Array<String>] :subnet_ids
|
2945
2954
|
# A list of the identifiers of the subnets where the VPC endpoint for
|
@@ -2950,13 +2959,13 @@ module Aws::ElastiCache
|
|
2950
2959
|
# The number of snapshots that will be retained for the serverless cache
|
2951
2960
|
# that is being created. As new snapshots beyond this limit are added,
|
2952
2961
|
# the oldest snapshots will be deleted on a rolling basis. Available for
|
2953
|
-
# Redis OSS and Serverless Memcached only.
|
2962
|
+
# Valkey, Redis OSS and Serverless Memcached only.
|
2954
2963
|
#
|
2955
2964
|
# @option params [String] :daily_snapshot_time
|
2956
2965
|
# The daily time that snapshots will be created from the new serverless
|
2957
2966
|
# cache. By default this number is populated with 0, i.e. no snapshots
|
2958
|
-
# will be created on an automatic daily basis. Available for
|
2959
|
-
# and Serverless Memcached only.
|
2967
|
+
# will be created on an automatic daily basis. Available for Valkey,
|
2968
|
+
# Redis OSS and Serverless Memcached only.
|
2960
2969
|
#
|
2961
2970
|
# @return [Types::CreateServerlessCacheResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2962
2971
|
#
|
@@ -3033,24 +3042,27 @@ module Aws::ElastiCache
|
|
3033
3042
|
end
|
3034
3043
|
|
3035
3044
|
# This API creates a copy of an entire ServerlessCache at a specific
|
3036
|
-
# moment in time. Available for Redis OSS and Serverless
|
3045
|
+
# moment in time. Available for Valkey, Redis OSS and Serverless
|
3046
|
+
# Memcached only.
|
3037
3047
|
#
|
3038
3048
|
# @option params [required, String] :serverless_cache_snapshot_name
|
3039
3049
|
# The name for the snapshot being created. Must be unique for the
|
3040
|
-
# customer account. Available for Redis OSS and Serverless
|
3041
|
-
# only. Must be between 1 and 255 characters.
|
3050
|
+
# customer account. Available for Valkey, Redis OSS and Serverless
|
3051
|
+
# Memcached only. Must be between 1 and 255 characters.
|
3042
3052
|
#
|
3043
3053
|
# @option params [required, String] :serverless_cache_name
|
3044
3054
|
# The name of an existing serverless cache. The snapshot is created from
|
3045
|
-
# this cache. Available for Redis OSS and Serverless Memcached
|
3055
|
+
# this cache. Available for Valkey, Redis OSS and Serverless Memcached
|
3056
|
+
# only.
|
3046
3057
|
#
|
3047
3058
|
# @option params [String] :kms_key_id
|
3048
3059
|
# The ID of the KMS key used to encrypt the snapshot. Available for
|
3049
|
-
# Redis OSS and Serverless Memcached only. Default: NULL
|
3060
|
+
# Valkey, Redis OSS and Serverless Memcached only. Default: NULL
|
3050
3061
|
#
|
3051
3062
|
# @option params [Array<Types::Tag>] :tags
|
3052
3063
|
# A list of tags to be added to the snapshot resource. A tag is a
|
3053
|
-
# key-value pair. Available for Redis OSS and Serverless
|
3064
|
+
# key-value pair. Available for Valkey, Redis OSS and Serverless
|
3065
|
+
# Memcached only.
|
3054
3066
|
#
|
3055
3067
|
# @return [Types::CreateServerlessCacheSnapshotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3056
3068
|
#
|
@@ -3096,7 +3108,7 @@ module Aws::ElastiCache
|
|
3096
3108
|
# Creates a copy of an entire cluster or replication group at a specific
|
3097
3109
|
# moment in time.
|
3098
3110
|
#
|
3099
|
-
# <note markdown="1"> This operation is valid for Redis OSS only.
|
3111
|
+
# <note markdown="1"> This operation is valid for Valkey or Redis OSS only.
|
3100
3112
|
#
|
3101
3113
|
# </note>
|
3102
3114
|
#
|
@@ -3318,8 +3330,9 @@ module Aws::ElastiCache
|
|
3318
3330
|
req.send_request(options)
|
3319
3331
|
end
|
3320
3332
|
|
3321
|
-
# For
|
3322
|
-
# For more information, see [Using Role Based Access
|
3333
|
+
# For Valkey engine version 7.2 onwards and Redis OSS 6.0 and onwards:
|
3334
|
+
# Creates a user. For more information, see [Using Role Based Access
|
3335
|
+
# Control (RBAC)][1].
|
3323
3336
|
#
|
3324
3337
|
#
|
3325
3338
|
#
|
@@ -3408,9 +3421,9 @@ module Aws::ElastiCache
|
|
3408
3421
|
req.send_request(options)
|
3409
3422
|
end
|
3410
3423
|
|
3411
|
-
# For
|
3412
|
-
# group. For more information, see [Using Role Based
|
3413
|
-
# (RBAC)][1]
|
3424
|
+
# For Valkey engine version 7.2 onwards and Redis OSS 6.0 onwards:
|
3425
|
+
# Creates a user group. For more information, see [Using Role Based
|
3426
|
+
# Access Control (RBAC)][1]
|
3414
3427
|
#
|
3415
3428
|
#
|
3416
3429
|
#
|
@@ -3428,7 +3441,7 @@ module Aws::ElastiCache
|
|
3428
3441
|
# @option params [Array<Types::Tag>] :tags
|
3429
3442
|
# A list of tags to be added to this resource. A tag is a key-value
|
3430
3443
|
# pair. A tag key must be accompanied by a tag value, although null is
|
3431
|
-
# accepted. Available for Redis OSS only.
|
3444
|
+
# accepted. Available for Valkey and Redis OSS only.
|
3432
3445
|
#
|
3433
3446
|
# @return [Types::UserGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3434
3447
|
#
|
@@ -3496,17 +3509,15 @@ module Aws::ElastiCache
|
|
3496
3509
|
# If the value of NodeGroupCount is less than the current number of node
|
3497
3510
|
# groups (shards), then either NodeGroupsToRemove or NodeGroupsToRetain
|
3498
3511
|
# is required. GlobalNodeGroupsToRemove is a list of NodeGroupIds to
|
3499
|
-
# remove from the cluster. ElastiCache
|
3500
|
-
#
|
3501
|
-
# cluster.
|
3512
|
+
# remove from the cluster. ElastiCache will attempt to remove all node
|
3513
|
+
# groups listed by GlobalNodeGroupsToRemove from the cluster.
|
3502
3514
|
#
|
3503
3515
|
# @option params [Array<String>] :global_node_groups_to_retain
|
3504
3516
|
# If the value of NodeGroupCount is less than the current number of node
|
3505
3517
|
# groups (shards), then either NodeGroupsToRemove or NodeGroupsToRetain
|
3506
3518
|
# is required. GlobalNodeGroupsToRetain is a list of NodeGroupIds to
|
3507
|
-
# retain from the cluster. ElastiCache
|
3508
|
-
#
|
3509
|
-
# cluster.
|
3519
|
+
# retain from the cluster. ElastiCache will attempt to retain all node
|
3520
|
+
# groups listed by GlobalNodeGroupsToRetain from the cluster.
|
3510
3521
|
#
|
3511
3522
|
# @option params [required, Boolean] :apply_immediately
|
3512
3523
|
# Indicates that the shard reconfiguration process begins immediately.
|
@@ -3558,11 +3569,11 @@ module Aws::ElastiCache
|
|
3558
3569
|
req.send_request(options)
|
3559
3570
|
end
|
3560
3571
|
|
3561
|
-
# Dynamically decreases the number of replicas in a Redis OSS
|
3562
|
-
# mode disabled) replication group or the number of replica
|
3563
|
-
# or more node groups (shards) of a Redis OSS
|
3564
|
-
# replication group. This operation is performed
|
3565
|
-
# time.
|
3572
|
+
# Dynamically decreases the number of replicas in a Valkey or Redis OSS
|
3573
|
+
# (cluster mode disabled) replication group or the number of replica
|
3574
|
+
# nodes in one or more node groups (shards) of a Valkey or Redis OSS
|
3575
|
+
# (cluster mode enabled) replication group. This operation is performed
|
3576
|
+
# with no cluster down time.
|
3566
3577
|
#
|
3567
3578
|
# @option params [required, String] :replication_group_id
|
3568
3579
|
# The id of the replication group from which you want to remove replica
|
@@ -3570,28 +3581,28 @@ module Aws::ElastiCache
|
|
3570
3581
|
#
|
3571
3582
|
# @option params [Integer] :new_replica_count
|
3572
3583
|
# The number of read replica nodes you want at the completion of this
|
3573
|
-
# operation. For Redis OSS (cluster mode disabled) replication
|
3574
|
-
# this is the number of replica nodes in the replication group.
|
3575
|
-
# Redis OSS (cluster mode enabled) replication groups,
|
3576
|
-
# number of replica nodes in each of the replication
|
3577
|
-
# groups.
|
3584
|
+
# operation. For Valkey or Redis OSS (cluster mode disabled) replication
|
3585
|
+
# groups, this is the number of replica nodes in the replication group.
|
3586
|
+
# For Valkey or Redis OSS (cluster mode enabled) replication groups,
|
3587
|
+
# this is the number of replica nodes in each of the replication
|
3588
|
+
# group's node groups.
|
3578
3589
|
#
|
3579
3590
|
# The minimum number of replicas in a shard or replication group is:
|
3580
3591
|
#
|
3581
|
-
# * Redis OSS (cluster mode disabled)
|
3592
|
+
# * Valkey or Redis OSS (cluster mode disabled)
|
3582
3593
|
#
|
3583
3594
|
# * If Multi-AZ is enabled: 1
|
3584
3595
|
#
|
3585
3596
|
# * If Multi-AZ is not enabled: 0
|
3586
3597
|
#
|
3587
|
-
# * Redis OSS (cluster mode enabled): 0 (though you will not
|
3588
|
-
# failover to a replica if your primary node fails)
|
3598
|
+
# * Valkey or Redis OSS (cluster mode enabled): 0 (though you will not
|
3599
|
+
# be able to failover to a replica if your primary node fails)
|
3589
3600
|
#
|
3590
3601
|
# @option params [Array<Types::ConfigureShard>] :replica_configuration
|
3591
3602
|
# A list of `ConfigureShard` objects that can be used to configure each
|
3592
|
-
# shard in a Redis OSS (cluster mode enabled) replication
|
3593
|
-
# `ConfigureShard` has three members: `NewReplicaCount`,
|
3594
|
-
# and `PreferredAvailabilityZones`.
|
3603
|
+
# shard in a Valkey or Redis OSS (cluster mode enabled) replication
|
3604
|
+
# group. The `ConfigureShard` has three members: `NewReplicaCount`,
|
3605
|
+
# `NodeGroupId`, and `PreferredAvailabilityZones`.
|
3595
3606
|
#
|
3596
3607
|
# @option params [Array<String>] :replicas_to_remove
|
3597
3608
|
# A list of the node ids to remove from the replication group or node
|
@@ -3698,6 +3709,7 @@ module Aws::ElastiCache
|
|
3698
3709
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
3699
3710
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
3700
3711
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
3712
|
+
# resp.replication_group.engine #=> String
|
3701
3713
|
#
|
3702
3714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
|
3703
3715
|
#
|
@@ -3716,9 +3728,9 @@ module Aws::ElastiCache
|
|
3716
3728
|
#
|
3717
3729
|
# This operation is not valid for:
|
3718
3730
|
#
|
3719
|
-
# * Redis OSS (cluster mode enabled) clusters
|
3731
|
+
# * Valkey or Redis OSS (cluster mode enabled) clusters
|
3720
3732
|
#
|
3721
|
-
# * Redis OSS (cluster mode disabled) clusters
|
3733
|
+
# * Valkey or Redis OSS (cluster mode disabled) clusters
|
3722
3734
|
#
|
3723
3735
|
# * A cluster that is the last read replica of a replication group
|
3724
3736
|
#
|
@@ -3726,7 +3738,8 @@ module Aws::ElastiCache
|
|
3726
3738
|
#
|
3727
3739
|
# * A node group (shard) that has Multi-AZ mode enabled
|
3728
3740
|
#
|
3729
|
-
# * A cluster from a Redis OSS (cluster mode enabled)
|
3741
|
+
# * A cluster from a Valkey or Redis OSS (cluster mode enabled)
|
3742
|
+
# replication group
|
3730
3743
|
#
|
3731
3744
|
# * A cluster that is not in the `available` state
|
3732
3745
|
#
|
@@ -4204,6 +4217,7 @@ module Aws::ElastiCache
|
|
4204
4217
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
4205
4218
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
4206
4219
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
4220
|
+
# resp.replication_group.engine #=> String
|
4207
4221
|
#
|
4208
4222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
|
4209
4223
|
#
|
@@ -4227,8 +4241,8 @@ module Aws::ElastiCache
|
|
4227
4241
|
#
|
4228
4242
|
# @option params [String] :final_snapshot_name
|
4229
4243
|
# Name of the final snapshot to be taken before the serverless cache is
|
4230
|
-
# deleted. Available for Redis OSS and Serverless Memcached
|
4231
|
-
# Default: NULL, i.e. a final snapshot is not taken.
|
4244
|
+
# deleted. Available for Valkey, Redis OSS and Serverless Memcached
|
4245
|
+
# only. Default: NULL, i.e. a final snapshot is not taken.
|
4232
4246
|
#
|
4233
4247
|
# @return [Types::DeleteServerlessCacheResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4234
4248
|
#
|
@@ -4278,12 +4292,12 @@ module Aws::ElastiCache
|
|
4278
4292
|
req.send_request(options)
|
4279
4293
|
end
|
4280
4294
|
|
4281
|
-
# Deletes an existing serverless cache snapshot. Available for
|
4282
|
-
# and Serverless Memcached only.
|
4295
|
+
# Deletes an existing serverless cache snapshot. Available for Valkey,
|
4296
|
+
# Redis OSS and Serverless Memcached only.
|
4283
4297
|
#
|
4284
4298
|
# @option params [required, String] :serverless_cache_snapshot_name
|
4285
|
-
# Idenfitier of the snapshot to be deleted. Available for Redis
|
4286
|
-
# Serverless Memcached only.
|
4299
|
+
# Idenfitier of the snapshot to be deleted. Available for Valkey, Redis
|
4300
|
+
# OSS and Serverless Memcached only.
|
4287
4301
|
#
|
4288
4302
|
# @return [Types::DeleteServerlessCacheSnapshotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4289
4303
|
#
|
@@ -4322,7 +4336,7 @@ module Aws::ElastiCache
|
|
4322
4336
|
# from this operation, ElastiCache immediately begins deleting the
|
4323
4337
|
# snapshot; you cannot cancel or revert this operation.
|
4324
4338
|
#
|
4325
|
-
# <note markdown="1"> This operation is valid for Redis OSS only.
|
4339
|
+
# <note markdown="1"> This operation is valid for Valkey or Redis OSS only.
|
4326
4340
|
#
|
4327
4341
|
# </note>
|
4328
4342
|
#
|
@@ -4435,10 +4449,10 @@ module Aws::ElastiCache
|
|
4435
4449
|
req.send_request(options)
|
4436
4450
|
end
|
4437
4451
|
|
4438
|
-
# For
|
4439
|
-
# will be removed from all user groups and in
|
4440
|
-
# replication groups. For more information, see
|
4441
|
-
# Control (RBAC)][1].
|
4452
|
+
# For Valkey engine version 7.2 onwards and Redis OSS 6.0 onwards:
|
4453
|
+
# Deletes a user. The user will be removed from all user groups and in
|
4454
|
+
# turn removed from all replication groups. For more information, see
|
4455
|
+
# [Using Role Based Access Control (RBAC)][1].
|
4442
4456
|
#
|
4443
4457
|
#
|
4444
4458
|
#
|
@@ -4488,10 +4502,10 @@ module Aws::ElastiCache
|
|
4488
4502
|
req.send_request(options)
|
4489
4503
|
end
|
4490
4504
|
|
4491
|
-
# For
|
4492
|
-
# user group must first be disassociated from
|
4493
|
-
# before it can be deleted. For more information,
|
4494
|
-
# Access Control (RBAC)][1].
|
4505
|
+
# For Valkey engine version 7.2 onwards and Redis OSS 6.0 onwards:
|
4506
|
+
# Deletes a user group. The user group must first be disassociated from
|
4507
|
+
# the replication group before it can be deleted. For more information,
|
4508
|
+
# see [Using Role Based Access Control (RBAC)][1].
|
4495
4509
|
#
|
4496
4510
|
#
|
4497
4511
|
#
|
@@ -4597,8 +4611,8 @@ module Aws::ElastiCache
|
|
4597
4611
|
# @option params [Boolean] :show_cache_clusters_not_in_replication_groups
|
4598
4612
|
# An optional flag that can be included in the `DescribeCacheCluster`
|
4599
4613
|
# request to show only nodes (API/CLI: clusters) that are not members of
|
4600
|
-
# a replication group. In practice, this
|
4601
|
-
# Redis OSS clusters.
|
4614
|
+
# a replication group. In practice, this means Memcached and single node
|
4615
|
+
# Valkey or Redis OSS clusters.
|
4602
4616
|
#
|
4603
4617
|
# @return [Types::CacheClusterMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4604
4618
|
#
|
@@ -4834,7 +4848,7 @@ module Aws::ElastiCache
|
|
4834
4848
|
#
|
4835
4849
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
4836
4850
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
|
4837
|
-
# \| `redis6.x` \| `redis6.2` \| `redis7`
|
4851
|
+
# \| `redis6.x` \| `redis6.2` \| `redis7` \| `valkey7`
|
4838
4852
|
#
|
4839
4853
|
# Constraints:
|
4840
4854
|
#
|
@@ -6760,7 +6774,7 @@ module Aws::ElastiCache
|
|
6760
6774
|
# identifier is specified, `DescribeReplicationGroups` returns
|
6761
6775
|
# information about all replication groups.
|
6762
6776
|
#
|
6763
|
-
# <note markdown="1"> This operation is valid for Redis OSS only.
|
6777
|
+
# <note markdown="1"> This operation is valid for Valkey or Redis OSS only.
|
6764
6778
|
#
|
6765
6779
|
# </note>
|
6766
6780
|
#
|
@@ -6943,6 +6957,7 @@ module Aws::ElastiCache
|
|
6943
6957
|
# resp.replication_groups[0].ip_discovery #=> String, one of "ipv4", "ipv6"
|
6944
6958
|
# resp.replication_groups[0].transit_encryption_mode #=> String, one of "preferred", "required"
|
6945
6959
|
# resp.replication_groups[0].cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
6960
|
+
# resp.replication_groups[0].engine #=> String
|
6946
6961
|
#
|
6947
6962
|
#
|
6948
6963
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -7075,14 +7090,14 @@ module Aws::ElastiCache
|
|
7075
7090
|
# * All current generation instance types are created in Amazon VPC by
|
7076
7091
|
# default.
|
7077
7092
|
#
|
7078
|
-
# * Redis OSS append-only files (AOF) are not supported for T1
|
7079
|
-
# instances.
|
7093
|
+
# * Valkey or Redis OSS append-only files (AOF) are not supported for T1
|
7094
|
+
# or T2 instances.
|
7080
7095
|
#
|
7081
|
-
# * Redis OSS Multi-AZ with automatic failover is not
|
7082
|
-
# instances.
|
7096
|
+
# * Valkey or Redis OSS Multi-AZ with automatic failover is not
|
7097
|
+
# supported on T1 instances.
|
7083
7098
|
#
|
7084
|
-
# *
|
7085
|
-
#
|
7099
|
+
# * The configuration variables `appendonly` and `appendfsync` are not
|
7100
|
+
# supported on Valkey, or on Redis OSS version 2.8.22 and later.
|
7086
7101
|
#
|
7087
7102
|
#
|
7088
7103
|
#
|
@@ -7294,14 +7309,14 @@ module Aws::ElastiCache
|
|
7294
7309
|
# * All current generation instance types are created in Amazon VPC by
|
7295
7310
|
# default.
|
7296
7311
|
#
|
7297
|
-
# * Redis OSS append-only files (AOF) are not supported for T1
|
7298
|
-
# instances.
|
7312
|
+
# * Valkey or Redis OSS append-only files (AOF) are not supported for T1
|
7313
|
+
# or T2 instances.
|
7299
7314
|
#
|
7300
|
-
# * Redis OSS Multi-AZ with automatic failover is not
|
7301
|
-
# instances.
|
7315
|
+
# * Valkey or Redis OSS Multi-AZ with automatic failover is not
|
7316
|
+
# supported on T1 instances.
|
7302
7317
|
#
|
7303
|
-
# *
|
7304
|
-
#
|
7318
|
+
# * The configuration variables `appendonly` and `appendfsync` are not
|
7319
|
+
# supported on Valkey, or on Redis OSS version 2.8.22 and later.
|
7305
7320
|
#
|
7306
7321
|
#
|
7307
7322
|
#
|
@@ -7706,36 +7721,37 @@ module Aws::ElastiCache
|
|
7706
7721
|
# Returns information about serverless cache snapshots. By default, this
|
7707
7722
|
# API lists all of the customer’s serverless cache snapshots. It can
|
7708
7723
|
# also describe a single serverless cache snapshot, or the snapshots
|
7709
|
-
# associated with a particular serverless cache. Available for
|
7710
|
-
# and Serverless Memcached only.
|
7724
|
+
# associated with a particular serverless cache. Available for Valkey,
|
7725
|
+
# Redis OSS and Serverless Memcached only.
|
7711
7726
|
#
|
7712
7727
|
# @option params [String] :serverless_cache_name
|
7713
7728
|
# The identifier of serverless cache. If this parameter is specified,
|
7714
7729
|
# only snapshots associated with that specific serverless cache are
|
7715
|
-
# described. Available for Redis OSS and Serverless Memcached
|
7730
|
+
# described. Available for Valkey, Redis OSS and Serverless Memcached
|
7731
|
+
# only.
|
7716
7732
|
#
|
7717
7733
|
# @option params [String] :serverless_cache_snapshot_name
|
7718
7734
|
# The identifier of the serverless cache’s snapshot. If this parameter
|
7719
|
-
# is specified, only this snapshot is described. Available for
|
7720
|
-
# and Serverless Memcached only.
|
7735
|
+
# is specified, only this snapshot is described. Available for Valkey,
|
7736
|
+
# Redis OSS and Serverless Memcached only.
|
7721
7737
|
#
|
7722
7738
|
# @option params [String] :snapshot_type
|
7723
|
-
# The type of snapshot that is being described. Available for
|
7724
|
-
# and Serverless Memcached only.
|
7739
|
+
# The type of snapshot that is being described. Available for Valkey,
|
7740
|
+
# Redis OSS and Serverless Memcached only.
|
7725
7741
|
#
|
7726
7742
|
# @option params [String] :next_token
|
7727
7743
|
# An optional marker returned from a prior request to support pagination
|
7728
7744
|
# of results from this operation. If this parameter is specified, the
|
7729
7745
|
# response includes only records beyond the marker, up to the value
|
7730
|
-
# specified by max-results. Available for Redis OSS and
|
7731
|
-
# Memcached only.
|
7746
|
+
# specified by max-results. Available for Valkey, Redis OSS and
|
7747
|
+
# Serverless Memcached only.
|
7732
7748
|
#
|
7733
7749
|
# @option params [Integer] :max_results
|
7734
7750
|
# The maximum number of records to include in the response. If more
|
7735
7751
|
# records exist than the specified max-results value, a market is
|
7736
7752
|
# included in the response so that remaining results can be retrieved.
|
7737
|
-
# Available for Redis OSS and Serverless Memcached only.The
|
7738
|
-
# 50. The Validation Constraints are a maximum of 50.
|
7753
|
+
# Available for Valkey, Redis OSS and Serverless Memcached only.The
|
7754
|
+
# default is 50. The Validation Constraints are a maximum of 50.
|
7739
7755
|
#
|
7740
7756
|
# @return [Types::DescribeServerlessCacheSnapshotsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7741
7757
|
#
|
@@ -7918,7 +7934,7 @@ module Aws::ElastiCache
|
|
7918
7934
|
# optionally describe a single snapshot, or just the snapshots
|
7919
7935
|
# associated with a particular cache cluster.
|
7920
7936
|
#
|
7921
|
-
# <note markdown="1"> This operation is valid for Redis OSS only.
|
7937
|
+
# <note markdown="1"> This operation is valid for Valkey or Redis OSS only.
|
7922
7938
|
#
|
7923
7939
|
# </note>
|
7924
7940
|
#
|
@@ -8093,8 +8109,8 @@ module Aws::ElastiCache
|
|
8093
8109
|
# The cache cluster IDs
|
8094
8110
|
#
|
8095
8111
|
# @option params [String] :engine
|
8096
|
-
# The Elasticache engine to which the update applies. Either
|
8097
|
-
# or Memcached.
|
8112
|
+
# The Elasticache engine to which the update applies. Either Valkey,
|
8113
|
+
# Redis OSS or Memcached.
|
8098
8114
|
#
|
8099
8115
|
# @option params [Array<String>] :service_update_status
|
8100
8116
|
# The status of the service update
|
@@ -8257,7 +8273,7 @@ module Aws::ElastiCache
|
|
8257
8273
|
# Returns a list of users.
|
8258
8274
|
#
|
8259
8275
|
# @option params [String] :engine
|
8260
|
-
# The
|
8276
|
+
# The engine.
|
8261
8277
|
#
|
8262
8278
|
# @option params [String] :user_id
|
8263
8279
|
# The ID of the user.
|
@@ -8385,16 +8401,16 @@ module Aws::ElastiCache
|
|
8385
8401
|
end
|
8386
8402
|
|
8387
8403
|
# Provides the functionality to export the serverless cache snapshot
|
8388
|
-
# data to Amazon S3. Available for Redis OSS only.
|
8404
|
+
# data to Amazon S3. Available for Valkey and Redis OSS only.
|
8389
8405
|
#
|
8390
8406
|
# @option params [required, String] :serverless_cache_snapshot_name
|
8391
8407
|
# The identifier of the serverless cache snapshot to be exported to S3.
|
8392
|
-
# Available for Redis OSS only.
|
8408
|
+
# Available for Valkey and Redis OSS only.
|
8393
8409
|
#
|
8394
8410
|
# @option params [required, String] :s3_bucket_name
|
8395
8411
|
# Name of the Amazon S3 bucket to export the snapshot to. The Amazon S3
|
8396
8412
|
# bucket must also be in same region as the snapshot. Available for
|
8397
|
-
# Redis OSS only.
|
8413
|
+
# Valkey and Redis OSS only.
|
8398
8414
|
#
|
8399
8415
|
# @return [Types::ExportServerlessCacheSnapshotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8400
8416
|
#
|
@@ -8560,11 +8576,11 @@ module Aws::ElastiCache
|
|
8560
8576
|
req.send_request(options)
|
8561
8577
|
end
|
8562
8578
|
|
8563
|
-
# Dynamically increases the number of replicas in a Redis OSS
|
8564
|
-
# mode disabled) replication group or the number of replica
|
8565
|
-
# or more node groups (shards) of a Redis OSS
|
8566
|
-
# replication group. This operation is performed
|
8567
|
-
# time.
|
8579
|
+
# Dynamically increases the number of replicas in a Valkey or Redis OSS
|
8580
|
+
# (cluster mode disabled) replication group or the number of replica
|
8581
|
+
# nodes in one or more node groups (shards) of a Valkey or Redis OSS
|
8582
|
+
# (cluster mode enabled) replication group. This operation is performed
|
8583
|
+
# with no cluster down time.
|
8568
8584
|
#
|
8569
8585
|
# @option params [required, String] :replication_group_id
|
8570
8586
|
# The id of the replication group to which you want to add replica
|
@@ -8572,17 +8588,17 @@ module Aws::ElastiCache
|
|
8572
8588
|
#
|
8573
8589
|
# @option params [Integer] :new_replica_count
|
8574
8590
|
# The number of read replica nodes you want at the completion of this
|
8575
|
-
# operation. For Redis OSS (cluster mode disabled) replication
|
8576
|
-
# this is the number of replica nodes in the replication group.
|
8577
|
-
# Redis OSS (cluster mode enabled) replication groups,
|
8578
|
-
# number of replica nodes in each of the replication
|
8579
|
-
# groups.
|
8591
|
+
# operation. For Valkey or Redis OSS (cluster mode disabled) replication
|
8592
|
+
# groups, this is the number of replica nodes in the replication group.
|
8593
|
+
# For Valkey or Redis OSS (cluster mode enabled) replication groups,
|
8594
|
+
# this is the number of replica nodes in each of the replication
|
8595
|
+
# group's node groups.
|
8580
8596
|
#
|
8581
8597
|
# @option params [Array<Types::ConfigureShard>] :replica_configuration
|
8582
8598
|
# A list of `ConfigureShard` objects that can be used to configure each
|
8583
|
-
# shard in a Redis OSS (cluster mode enabled) replication
|
8584
|
-
# `ConfigureShard` has three members: `NewReplicaCount`,
|
8585
|
-
# and `PreferredAvailabilityZones`.
|
8599
|
+
# shard in a Valkey or Redis OSS (cluster mode enabled) replication
|
8600
|
+
# group. The `ConfigureShard` has three members: `NewReplicaCount`,
|
8601
|
+
# `NodeGroupId`, and `PreferredAvailabilityZones`.
|
8586
8602
|
#
|
8587
8603
|
# @option params [required, Boolean] :apply_immediately
|
8588
8604
|
# If `True`, the number of replica nodes is increased immediately.
|
@@ -8684,6 +8700,7 @@ module Aws::ElastiCache
|
|
8684
8700
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
8685
8701
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
8686
8702
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
8703
|
+
# resp.replication_group.engine #=> String
|
8687
8704
|
#
|
8688
8705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
|
8689
8706
|
#
|
@@ -8694,8 +8711,8 @@ module Aws::ElastiCache
|
|
8694
8711
|
req.send_request(options)
|
8695
8712
|
end
|
8696
8713
|
|
8697
|
-
# Lists all available node types that you can scale your
|
8698
|
-
#
|
8714
|
+
# Lists all available node types that you can scale with your cluster's
|
8715
|
+
# replication group's current node type.
|
8699
8716
|
#
|
8700
8717
|
# When you use the `ModifyCacheCluster` or `ModifyReplicationGroup`
|
8701
8718
|
# operations to scale your cluster or replication group, the value of
|
@@ -8883,8 +8900,8 @@ module Aws::ElastiCache
|
|
8883
8900
|
# `CacheNodeIdsToRemove` parameter to provide the IDs of the specific
|
8884
8901
|
# cache nodes to remove.
|
8885
8902
|
#
|
8886
|
-
# For clusters running Redis OSS, this value must be 1. For
|
8887
|
-
# running Memcached, this value must be between 1 and 40.
|
8903
|
+
# For clusters running Valkey or Redis OSS, this value must be 1. For
|
8904
|
+
# clusters running Memcached, this value must be between 1 and 40.
|
8888
8905
|
#
|
8889
8906
|
# <note markdown="1"> Adding or removing Memcached cache nodes can be applied immediately or
|
8890
8907
|
# as a pending operation (see `ApplyImmediately`).
|
@@ -9101,6 +9118,10 @@ module Aws::ElastiCache
|
|
9101
9118
|
#
|
9102
9119
|
# Default: `false`
|
9103
9120
|
#
|
9121
|
+
# @option params [String] :engine
|
9122
|
+
# Modifies the engine listed in a cluster message. The options are
|
9123
|
+
# redis, memcached or valkey.
|
9124
|
+
#
|
9104
9125
|
# @option params [String] :engine_version
|
9105
9126
|
# The upgraded version of the cache engine to be run on the cache nodes.
|
9106
9127
|
#
|
@@ -9115,9 +9136,10 @@ module Aws::ElastiCache
|
|
9115
9136
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
9116
9137
|
#
|
9117
9138
|
# @option params [Boolean] :auto_minor_version_upgrade
|
9118
|
-
# If you are running Redis OSS engine version 6.0 or
|
9119
|
-
# parameter to yes
|
9120
|
-
# upgrade campaign. This parameter is disabled for previous
|
9139
|
+
# If you are running Valkey 7.2 or Redis OSS engine version 6.0 or
|
9140
|
+
# later, set this parameter to yes to opt-in to the next auto minor
|
9141
|
+
# version upgrade campaign. This parameter is disabled for previous
|
9142
|
+
# versions.
|
9121
9143
|
#
|
9122
9144
|
# @option params [Integer] :snapshot_retention_limit
|
9123
9145
|
# The number of days for which ElastiCache retains automatic cluster
|
@@ -9166,8 +9188,7 @@ module Aws::ElastiCache
|
|
9166
9188
|
#
|
9167
9189
|
# * DELETE - allowed only when transitioning to RBAC
|
9168
9190
|
#
|
9169
|
-
# For more information, see [Authenticating Users with
|
9170
|
-
# AUTH][1]
|
9191
|
+
# For more information, see [Authenticating Users with AUTH][1]
|
9171
9192
|
#
|
9172
9193
|
#
|
9173
9194
|
#
|
@@ -9178,9 +9199,9 @@ module Aws::ElastiCache
|
|
9178
9199
|
#
|
9179
9200
|
# @option params [String] :ip_discovery
|
9180
9201
|
# The network type you choose when modifying a cluster, either `ipv4` \|
|
9181
|
-
# `ipv6`. IPv6 is supported for workloads using
|
9182
|
-
#
|
9183
|
-
# the [Nitro system][1].
|
9202
|
+
# `ipv6`. IPv6 is supported for workloads using Valkey 7.2 and above,
|
9203
|
+
# Redis OSS engine version 6.2 and above or Memcached engine version
|
9204
|
+
# 1.6.6 and above on all instances built on the [Nitro system][1].
|
9184
9205
|
#
|
9185
9206
|
#
|
9186
9207
|
#
|
@@ -9246,6 +9267,7 @@ module Aws::ElastiCache
|
|
9246
9267
|
# cache_parameter_group_name: "String",
|
9247
9268
|
# notification_topic_status: "String",
|
9248
9269
|
# apply_immediately: false,
|
9270
|
+
# engine: "String",
|
9249
9271
|
# engine_version: "String",
|
9250
9272
|
# auto_minor_version_upgrade: false,
|
9251
9273
|
# snapshot_retention_limit: 1,
|
@@ -9542,6 +9564,10 @@ module Aws::ElastiCache
|
|
9542
9564
|
# A valid cache node type that you want to scale this Global datastore
|
9543
9565
|
# to.
|
9544
9566
|
#
|
9567
|
+
# @option params [String] :engine
|
9568
|
+
# Modifies the engine listed in a global replication group message. The
|
9569
|
+
# options are redis, memcached or valkey.
|
9570
|
+
#
|
9545
9571
|
# @option params [String] :engine_version
|
9546
9572
|
# The upgraded version of the cache engine to be run on the clusters in
|
9547
9573
|
# the Global datastore.
|
@@ -9568,6 +9594,7 @@ module Aws::ElastiCache
|
|
9568
9594
|
# global_replication_group_id: "String", # required
|
9569
9595
|
# apply_immediately: false, # required
|
9570
9596
|
# cache_node_type: "String",
|
9597
|
+
# engine: "String",
|
9571
9598
|
# engine_version: "String",
|
9572
9599
|
# cache_parameter_group_name: "String",
|
9573
9600
|
# global_replication_group_description: "String",
|
@@ -9607,15 +9634,15 @@ module Aws::ElastiCache
|
|
9607
9634
|
end
|
9608
9635
|
|
9609
9636
|
# Modifies the settings for a replication group. This is limited to
|
9610
|
-
# Redis OSS 7 and
|
9637
|
+
# Valkey and Redis OSS 7 and above.
|
9611
9638
|
#
|
9612
|
-
# * [Scaling for
|
9613
|
-
#
|
9639
|
+
# * [Scaling for Valkey or Redis OSS (cluster mode enabled)][1] in the
|
9640
|
+
# ElastiCache User Guide
|
9614
9641
|
#
|
9615
9642
|
# * [ModifyReplicationGroupShardConfiguration][2] in the ElastiCache API
|
9616
9643
|
# Reference
|
9617
9644
|
#
|
9618
|
-
# <note markdown="1"> This operation is valid for Redis OSS only.
|
9645
|
+
# <note markdown="1"> This operation is valid for Valkey or Redis OSS only.
|
9619
9646
|
#
|
9620
9647
|
# </note>
|
9621
9648
|
#
|
@@ -9639,8 +9666,8 @@ module Aws::ElastiCache
|
|
9639
9666
|
#
|
9640
9667
|
# @option params [String] :snapshotting_cluster_id
|
9641
9668
|
# The cluster ID that is used as the daily snapshot source for the
|
9642
|
-
# replication group. This parameter cannot be set for
|
9643
|
-
# mode enabled) replication groups.
|
9669
|
+
# replication group. This parameter cannot be set for Valkey or Redis
|
9670
|
+
# OSS (cluster mode enabled) replication groups.
|
9644
9671
|
#
|
9645
9672
|
# @option params [Boolean] :automatic_failover_enabled
|
9646
9673
|
# Determines whether a read replica is automatically promoted to
|
@@ -9732,6 +9759,10 @@ module Aws::ElastiCache
|
|
9732
9759
|
#
|
9733
9760
|
# Default: `false`
|
9734
9761
|
#
|
9762
|
+
# @option params [String] :engine
|
9763
|
+
# Modifies the engine listed in a replication group message. The options
|
9764
|
+
# are redis, memcached or valkey.
|
9765
|
+
#
|
9735
9766
|
# @option params [String] :engine_version
|
9736
9767
|
# The upgraded version of the cache engine to be run on the clusters in
|
9737
9768
|
# the replication group.
|
@@ -9747,9 +9778,10 @@ module Aws::ElastiCache
|
|
9747
9778
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
9748
9779
|
#
|
9749
9780
|
# @option params [Boolean] :auto_minor_version_upgrade
|
9750
|
-
# If you are running Redis OSS engine version 6.0 or later,
|
9751
|
-
# parameter to yes if you want to opt-in to the next auto minor
|
9752
|
-
# upgrade campaign. This parameter is disabled for previous
|
9781
|
+
# If you are running Valkey or Redis OSS engine version 6.0 or later,
|
9782
|
+
# set this parameter to yes if you want to opt-in to the next auto minor
|
9783
|
+
# version upgrade campaign. This parameter is disabled for previous
|
9784
|
+
# versions.
|
9753
9785
|
#
|
9754
9786
|
# @option params [Integer] :snapshot_retention_limit
|
9755
9787
|
# The number of days for which ElastiCache retains automatic node group
|
@@ -9803,8 +9835,7 @@ module Aws::ElastiCache
|
|
9803
9835
|
#
|
9804
9836
|
# * DELETE - allowed only when transitioning to RBAC
|
9805
9837
|
#
|
9806
|
-
# For more information, see [Authenticating Users with
|
9807
|
-
# AUTH][1]
|
9838
|
+
# For more information, see [Authenticating Users with AUTH][1]
|
9808
9839
|
#
|
9809
9840
|
#
|
9810
9841
|
#
|
@@ -9827,9 +9858,9 @@ module Aws::ElastiCache
|
|
9827
9858
|
#
|
9828
9859
|
# @option params [String] :ip_discovery
|
9829
9860
|
# The network type you choose when modifying a cluster, either `ipv4` \|
|
9830
|
-
# `ipv6`. IPv6 is supported for workloads using
|
9831
|
-
#
|
9832
|
-
# the [Nitro system][1].
|
9861
|
+
# `ipv6`. IPv6 is supported for workloads using Valkey 7.2 and above,
|
9862
|
+
# Redis OSS engine version 6.2 and above or Memcached engine version
|
9863
|
+
# 1.6.6 and above on all instances built on the [Nitro system][1].
|
9833
9864
|
#
|
9834
9865
|
#
|
9835
9866
|
#
|
@@ -9847,8 +9878,8 @@ module Aws::ElastiCache
|
|
9847
9878
|
# You must set `TransitEncryptionEnabled` to `true`, for your existing
|
9848
9879
|
# cluster, and set `TransitEncryptionMode` to `preferred` in the same
|
9849
9880
|
# request to allow both encrypted and unencrypted connections at the
|
9850
|
-
# same time. Once you migrate all your Redis OSS clients to
|
9851
|
-
# encrypted connections you can set the value to `required` to allow
|
9881
|
+
# same time. Once you migrate all your Valkey or Redis OSS clients to
|
9882
|
+
# use encrypted connections you can set the value to `required` to allow
|
9852
9883
|
# encrypted connections only.
|
9853
9884
|
#
|
9854
9885
|
# Setting `TransitEncryptionMode` to `required` is a two-step process
|
@@ -9859,10 +9890,11 @@ module Aws::ElastiCache
|
|
9859
9890
|
# @option params [String] :cluster_mode
|
9860
9891
|
# Enabled or Disabled. To modify cluster mode from Disabled to Enabled,
|
9861
9892
|
# you must first set the cluster mode to Compatible. Compatible mode
|
9862
|
-
# allows your Redis OSS clients to connect using both cluster
|
9863
|
-
# enabled and cluster mode disabled. After you migrate all
|
9864
|
-
# clients to use cluster mode enabled, you can then
|
9865
|
-
# mode configuration and set the cluster mode to
|
9893
|
+
# allows your Valkey or Redis OSS clients to connect using both cluster
|
9894
|
+
# mode enabled and cluster mode disabled. After you migrate all Valkey
|
9895
|
+
# or Redis OSS clients to use cluster mode enabled, you can then
|
9896
|
+
# complete cluster mode configuration and set the cluster mode to
|
9897
|
+
# Enabled.
|
9866
9898
|
#
|
9867
9899
|
# @return [Types::ModifyReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9868
9900
|
#
|
@@ -9956,6 +9988,7 @@ module Aws::ElastiCache
|
|
9956
9988
|
# cache_parameter_group_name: "String",
|
9957
9989
|
# notification_topic_status: "String",
|
9958
9990
|
# apply_immediately: false,
|
9991
|
+
# engine: "String",
|
9959
9992
|
# engine_version: "String",
|
9960
9993
|
# auto_minor_version_upgrade: false,
|
9961
9994
|
# snapshot_retention_limit: 1,
|
@@ -10064,6 +10097,7 @@ module Aws::ElastiCache
|
|
10064
10097
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
10065
10098
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
10066
10099
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
10100
|
+
# resp.replication_group.engine #=> String
|
10067
10101
|
#
|
10068
10102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
|
10069
10103
|
#
|
@@ -10079,8 +10113,8 @@ module Aws::ElastiCache
|
|
10079
10113
|
# existing shards.
|
10080
10114
|
#
|
10081
10115
|
# @option params [required, String] :replication_group_id
|
10082
|
-
# The name of the Redis OSS (cluster mode enabled) cluster
|
10083
|
-
# group) on which the shards are to be configured.
|
10116
|
+
# The name of the Valkey or Redis OSS (cluster mode enabled) cluster
|
10117
|
+
# (replication group) on which the shards are to be configured.
|
10084
10118
|
#
|
10085
10119
|
# @option params [required, Integer] :node_group_count
|
10086
10120
|
# The number of node groups (shards) that results from the modification
|
@@ -10108,8 +10142,8 @@ module Aws::ElastiCache
|
|
10108
10142
|
# `NodeGroupsToRetain` is required. `NodeGroupsToRemove` is a list of
|
10109
10143
|
# `NodeGroupId`s to remove from the cluster.
|
10110
10144
|
#
|
10111
|
-
# ElastiCache
|
10112
|
-
#
|
10145
|
+
# ElastiCache will attempt to remove all node groups listed by
|
10146
|
+
# `NodeGroupsToRemove` from the cluster.
|
10113
10147
|
#
|
10114
10148
|
# @option params [Array<String>] :node_groups_to_retain
|
10115
10149
|
# If the value of `NodeGroupCount` is less than the current number of
|
@@ -10117,8 +10151,8 @@ module Aws::ElastiCache
|
|
10117
10151
|
# `NodeGroupsToRetain` is required. `NodeGroupsToRetain` is a list of
|
10118
10152
|
# `NodeGroupId`s to retain in the cluster.
|
10119
10153
|
#
|
10120
|
-
# ElastiCache
|
10121
|
-
#
|
10154
|
+
# ElastiCache will attempt to remove all node groups except those listed
|
10155
|
+
# by `NodeGroupsToRetain` from the cluster.
|
10122
10156
|
#
|
10123
10157
|
# @return [Types::ModifyReplicationGroupShardConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10124
10158
|
#
|
@@ -10216,6 +10250,7 @@ module Aws::ElastiCache
|
|
10216
10250
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
10217
10251
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
10218
10252
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
10253
|
+
# resp.replication_group.engine #=> String
|
10219
10254
|
#
|
10220
10255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
|
10221
10256
|
#
|
@@ -10241,13 +10276,13 @@ module Aws::ElastiCache
|
|
10241
10276
|
#
|
10242
10277
|
# @option params [Boolean] :remove_user_group
|
10243
10278
|
# The identifier of the UserGroup to be removed from association with
|
10244
|
-
# the Redis OSS serverless cache. Available for
|
10245
|
-
# is NULL.
|
10279
|
+
# the Valkey and Redis OSS serverless cache. Available for Valkey and
|
10280
|
+
# Redis OSS only. Default is NULL.
|
10246
10281
|
#
|
10247
10282
|
# @option params [String] :user_group_id
|
10248
10283
|
# The identifier of the UserGroup to be associated with the serverless
|
10249
|
-
# cache. Available for Redis OSS only. Default is NULL - the
|
10250
|
-
# UserGroup is not removed.
|
10284
|
+
# cache. Available for Valkey and Redis OSS only. Default is NULL - the
|
10285
|
+
# existing UserGroup is not removed.
|
10251
10286
|
#
|
10252
10287
|
# @option params [Array<String>] :security_group_ids
|
10253
10288
|
# The new list of VPC security groups to be associated with the
|
@@ -10258,15 +10293,23 @@ module Aws::ElastiCache
|
|
10258
10293
|
#
|
10259
10294
|
# @option params [Integer] :snapshot_retention_limit
|
10260
10295
|
# The number of days for which Elasticache retains automatic snapshots
|
10261
|
-
# before deleting them. Available for Redis OSS and Serverless
|
10262
|
-
# only. Default = NULL, i.e. the existing
|
10263
|
-
# not be removed or modified. The maximum
|
10296
|
+
# before deleting them. Available for Valkey, Redis OSS and Serverless
|
10297
|
+
# Memcached only. Default = NULL, i.e. the existing
|
10298
|
+
# snapshot-retention-limit will not be removed or modified. The maximum
|
10299
|
+
# value allowed is 35 days.
|
10264
10300
|
#
|
10265
10301
|
# @option params [String] :daily_snapshot_time
|
10266
10302
|
# The daily time during which Elasticache begins taking a daily snapshot
|
10267
|
-
# of the serverless cache. Available for Redis OSS and
|
10268
|
-
# Memcached only. The default is NULL, i.e. the existing
|
10269
|
-
# configured for the cluster is not removed.
|
10303
|
+
# of the serverless cache. Available for Valkey, Redis OSS and
|
10304
|
+
# Serverless Memcached only. The default is NULL, i.e. the existing
|
10305
|
+
# snapshot time configured for the cluster is not removed.
|
10306
|
+
#
|
10307
|
+
# @option params [String] :engine
|
10308
|
+
# Modifies the engine listed in a serverless cache request. The options
|
10309
|
+
# are redis, memcached or valkey.
|
10310
|
+
#
|
10311
|
+
# @option params [String] :major_engine_version
|
10312
|
+
# Modifies the engine vesion listed in a serverless cache request.
|
10270
10313
|
#
|
10271
10314
|
# @return [Types::ModifyServerlessCacheResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10272
10315
|
#
|
@@ -10293,6 +10336,8 @@ module Aws::ElastiCache
|
|
10293
10336
|
# security_group_ids: ["String"],
|
10294
10337
|
# snapshot_retention_limit: 1,
|
10295
10338
|
# daily_snapshot_time: "String",
|
10339
|
+
# engine: "String",
|
10340
|
+
# major_engine_version: "String",
|
10296
10341
|
# })
|
10297
10342
|
#
|
10298
10343
|
# @example Response structure
|
@@ -10461,13 +10506,11 @@ module Aws::ElastiCache
|
|
10461
10506
|
|
10462
10507
|
# Allows you to purchase a reserved cache node offering. Reserved nodes
|
10463
10508
|
# are not eligible for cancellation and are non-refundable. For more
|
10464
|
-
# information, see [Managing Costs with Reserved Nodes][1]
|
10465
|
-
# or [Managing Costs with Reserved Nodes][2] for Memcached.
|
10509
|
+
# information, see [Managing Costs with Reserved Nodes][1].
|
10466
10510
|
#
|
10467
10511
|
#
|
10468
10512
|
#
|
10469
10513
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/reserved-nodes.html
|
10470
|
-
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/reserved-nodes.html
|
10471
10514
|
#
|
10472
10515
|
# @option params [required, String] :reserved_cache_nodes_offering_id
|
10473
10516
|
# The ID of the reserved cache node offering to purchase.
|
@@ -10612,13 +10655,13 @@ module Aws::ElastiCache
|
|
10612
10655
|
#
|
10613
10656
|
# When the reboot is complete, a cluster event is created.
|
10614
10657
|
#
|
10615
|
-
# Rebooting a cluster is currently supported on Memcached and
|
10616
|
-
# (cluster mode disabled) clusters. Rebooting is not supported
|
10617
|
-
# OSS (cluster mode enabled) clusters.
|
10658
|
+
# Rebooting a cluster is currently supported on Memcached, Valkey and
|
10659
|
+
# Redis OSS (cluster mode disabled) clusters. Rebooting is not supported
|
10660
|
+
# on Valkey or Redis OSS (cluster mode enabled) clusters.
|
10618
10661
|
#
|
10619
|
-
# If you make changes to parameters that require a Redis OSS
|
10620
|
-
# mode enabled) cluster reboot for the changes to be applied,
|
10621
|
-
# [Rebooting a Cluster][1] for an alternate process.
|
10662
|
+
# If you make changes to parameters that require a Valkey or Redis OSS
|
10663
|
+
# (cluster mode enabled) cluster reboot for the changes to be applied,
|
10664
|
+
# see [Rebooting a Cluster][1] for an alternate process.
|
10622
10665
|
#
|
10623
10666
|
#
|
10624
10667
|
#
|
@@ -10999,8 +11042,9 @@ module Aws::ElastiCache
|
|
10999
11042
|
# The ID of the replication group to which data should be migrated.
|
11000
11043
|
#
|
11001
11044
|
# @option params [required, Array<Types::CustomerNodeEndpoint>] :customer_node_endpoint_list
|
11002
|
-
# List of endpoints from which data should be migrated. For
|
11003
|
-
# (cluster mode disabled), list should have only one
|
11045
|
+
# List of endpoints from which data should be migrated. For Valkey or
|
11046
|
+
# Redis OSS (cluster mode disabled), the list should have only one
|
11047
|
+
# element.
|
11004
11048
|
#
|
11005
11049
|
# @return [Types::StartMigrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11006
11050
|
#
|
@@ -11094,6 +11138,7 @@ module Aws::ElastiCache
|
|
11094
11138
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
11095
11139
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
11096
11140
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
11141
|
+
# resp.replication_group.engine #=> String
|
11097
11142
|
#
|
11098
11143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
|
11099
11144
|
#
|
@@ -11127,8 +11172,9 @@ module Aws::ElastiCache
|
|
11127
11172
|
#
|
11128
11173
|
#
|
11129
11174
|
# * If calling this operation multiple times on different shards in the
|
11130
|
-
# same Redis OSS (cluster mode enabled) replication group,
|
11131
|
-
# node replacement must complete before a subsequent call
|
11175
|
+
# same Valkey or Redis OSS (cluster mode enabled) replication group,
|
11176
|
+
# the first node replacement must complete before a subsequent call
|
11177
|
+
# can be made.
|
11132
11178
|
#
|
11133
11179
|
# * To determine whether the node replacement is complete you can check
|
11134
11180
|
# Events using the Amazon ElastiCache console, the Amazon CLI, or the
|
@@ -11260,6 +11306,7 @@ module Aws::ElastiCache
|
|
11260
11306
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
11261
11307
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
11262
11308
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
11309
|
+
# resp.replication_group.engine #=> String
|
11263
11310
|
#
|
11264
11311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
|
11265
11312
|
#
|
@@ -11372,6 +11419,7 @@ module Aws::ElastiCache
|
|
11372
11419
|
# resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
|
11373
11420
|
# resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
|
11374
11421
|
# resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
|
11422
|
+
# resp.replication_group.engine #=> String
|
11375
11423
|
#
|
11376
11424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestMigration AWS API Documentation
|
11377
11425
|
#
|
@@ -11400,7 +11448,7 @@ module Aws::ElastiCache
|
|
11400
11448
|
tracer: tracer
|
11401
11449
|
)
|
11402
11450
|
context[:gem_name] = 'aws-sdk-elasticache'
|
11403
|
-
context[:gem_version] = '1.
|
11451
|
+
context[:gem_version] = '1.117.0'
|
11404
11452
|
Seahorse::Client::Request.new(handlers, context)
|
11405
11453
|
end
|
11406
11454
|
|