aws-sdk-elasticache 1.63.0 → 1.67.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticache/client.rb +138 -23
- data/lib/aws-sdk-elasticache/client_api.rb +14 -0
- data/lib/aws-sdk-elasticache/types.rb +230 -37
- data/lib/aws-sdk-elasticache.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00cb477dd4a5e52d93dd3c3551e4e22d64ccf62381c9e680f07a31a3d68f0ca9
|
|
4
|
+
data.tar.gz: 7d01d7e96f9fc1a4194b29019b1afde83c16dcb69f1d31ec7ab2e05c9eb7b49d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14b8e60cc943c2db84e8fd9f9b9a01b62a638fc4bb8a24f5c0890c2a958a62866786da2ef4a99049a5ed8a257a0aef6d427ae72d5df37da2c278d82e48a20006
|
|
7
|
+
data.tar.gz: 5b050ae9f6086e2f7d0c4272d3dfe2c7ded1a3ee0aa9ae3cd1ed0af4c0b94689042f5aec902ff7ef4601836e66c61e24ad11b3cdd76192904779da6a5dc61ed2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.67.0 (2021-11-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.66.0 (2021-11-24)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Doc only update for ElastiCache
|
|
13
|
+
|
|
14
|
+
1.65.0 (2021-11-23)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Adding support for r6gd instances for Redis with data tiering. In a cluster with data tiering enabled, when available memory capacity is exhausted, the least recently used data is automatically tiered to solid state drives for cost-effective capacity scaling with minimal performance impact.
|
|
18
|
+
|
|
19
|
+
1.64.0 (2021-11-04)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.63.0 (2021-10-18)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.67.0
|
|
@@ -119,7 +119,9 @@ module Aws::ElastiCache
|
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
124
|
+
# to true.
|
|
123
125
|
#
|
|
124
126
|
# @option options [required, String] :region
|
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -275,6 +277,15 @@ module Aws::ElastiCache
|
|
|
275
277
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
276
278
|
# requests are made, and retries are disabled.
|
|
277
279
|
#
|
|
280
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
281
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
282
|
+
# will be used if available.
|
|
283
|
+
#
|
|
284
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
285
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
286
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
287
|
+
# is set to `true`.
|
|
288
|
+
#
|
|
278
289
|
# @option options [Boolean] :validate_params (true)
|
|
279
290
|
# When `true`, request parameters are validated before
|
|
280
291
|
# sending the request.
|
|
@@ -690,6 +701,7 @@ module Aws::ElastiCache
|
|
|
690
701
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
691
702
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
692
703
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
704
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
693
705
|
#
|
|
694
706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
|
|
695
707
|
#
|
|
@@ -917,6 +929,7 @@ module Aws::ElastiCache
|
|
|
917
929
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
|
918
930
|
# resp.snapshot.kms_key_id #=> String
|
|
919
931
|
# resp.snapshot.arn #=> String
|
|
932
|
+
# resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
|
|
920
933
|
#
|
|
921
934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshot AWS API Documentation
|
|
922
935
|
#
|
|
@@ -1028,8 +1041,7 @@ module Aws::ElastiCache
|
|
|
1028
1041
|
# * Current generation:
|
|
1029
1042
|
#
|
|
1030
1043
|
# **M6g node types** (available only for Redis engine version 5.0.6
|
|
1031
|
-
# onward and for Memcached engine version 1.5.16 onward)
|
|
1032
|
-
#
|
|
1044
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
|
1033
1045
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
1034
1046
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
1035
1047
|
# `cache.m6g.16xlarge`
|
|
@@ -1045,6 +1057,10 @@ module Aws::ElastiCache
|
|
|
1045
1057
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
1046
1058
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
1047
1059
|
#
|
|
1060
|
+
# **T4g node types** (available only for Redis engine version 5.0.6
|
|
1061
|
+
# onward and Memcached engine version 1.5.16 onward):
|
|
1062
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
1063
|
+
#
|
|
1048
1064
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
1049
1065
|
# `cache.t3.medium`
|
|
1050
1066
|
#
|
|
@@ -1067,6 +1083,16 @@ module Aws::ElastiCache
|
|
|
1067
1083
|
#
|
|
1068
1084
|
# **C1 node types:** `cache.c1.xlarge`
|
|
1069
1085
|
#
|
|
1086
|
+
# * Memory optimized with data tiering:
|
|
1087
|
+
#
|
|
1088
|
+
# * Current generation:
|
|
1089
|
+
#
|
|
1090
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
1091
|
+
# onward).
|
|
1092
|
+
#
|
|
1093
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
1094
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
|
1095
|
+
#
|
|
1070
1096
|
# * Memory optimized:
|
|
1071
1097
|
#
|
|
1072
1098
|
# * Current generation:
|
|
@@ -1210,7 +1236,9 @@ module Aws::ElastiCache
|
|
|
1210
1236
|
# </note>
|
|
1211
1237
|
#
|
|
1212
1238
|
# @option params [Boolean] :auto_minor_version_upgrade
|
|
1213
|
-
#
|
|
1239
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
1240
|
+
# parameter to yes if you want to opt-in to the next auto minor version
|
|
1241
|
+
# upgrade campaign. This parameter is disabled for previous versions.
|
|
1214
1242
|
#
|
|
1215
1243
|
# @option params [Integer] :snapshot_retention_limit
|
|
1216
1244
|
# The number of days for which ElastiCache retains automatic snapshots
|
|
@@ -1524,7 +1552,7 @@ module Aws::ElastiCache
|
|
|
1524
1552
|
#
|
|
1525
1553
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
1526
1554
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
|
|
1527
|
-
# \| `redis6.
|
|
1555
|
+
# \| `redis6.0` \| `redis6.2`
|
|
1528
1556
|
#
|
|
1529
1557
|
# @option params [required, String] :description
|
|
1530
1558
|
# A user-specified description for the cache parameter group.
|
|
@@ -2024,8 +2052,7 @@ module Aws::ElastiCache
|
|
|
2024
2052
|
# * Current generation:
|
|
2025
2053
|
#
|
|
2026
2054
|
# **M6g node types** (available only for Redis engine version 5.0.6
|
|
2027
|
-
# onward and for Memcached engine version 1.5.16 onward)
|
|
2028
|
-
#
|
|
2055
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
|
2029
2056
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
2030
2057
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
2031
2058
|
# `cache.m6g.16xlarge`
|
|
@@ -2041,6 +2068,10 @@ module Aws::ElastiCache
|
|
|
2041
2068
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
2042
2069
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
2043
2070
|
#
|
|
2071
|
+
# **T4g node types** (available only for Redis engine version 5.0.6
|
|
2072
|
+
# onward and Memcached engine version 1.5.16 onward):
|
|
2073
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
2074
|
+
#
|
|
2044
2075
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
2045
2076
|
# `cache.t3.medium`
|
|
2046
2077
|
#
|
|
@@ -2063,6 +2094,16 @@ module Aws::ElastiCache
|
|
|
2063
2094
|
#
|
|
2064
2095
|
# **C1 node types:** `cache.c1.xlarge`
|
|
2065
2096
|
#
|
|
2097
|
+
# * Memory optimized with data tiering:
|
|
2098
|
+
#
|
|
2099
|
+
# * Current generation:
|
|
2100
|
+
#
|
|
2101
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
2102
|
+
# onward).
|
|
2103
|
+
#
|
|
2104
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
2105
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
|
2106
|
+
#
|
|
2066
2107
|
# * Memory optimized:
|
|
2067
2108
|
#
|
|
2068
2109
|
# * Current generation:
|
|
@@ -2236,7 +2277,9 @@ module Aws::ElastiCache
|
|
|
2236
2277
|
# </note>
|
|
2237
2278
|
#
|
|
2238
2279
|
# @option params [Boolean] :auto_minor_version_upgrade
|
|
2239
|
-
#
|
|
2280
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
2281
|
+
# parameter to yes if you want to opt-in to the next auto minor version
|
|
2282
|
+
# upgrade campaign. This parameter is disabled for previous versions.
|
|
2240
2283
|
#
|
|
2241
2284
|
# @option params [Integer] :snapshot_retention_limit
|
|
2242
2285
|
# The number of days for which ElastiCache retains automatic snapshots
|
|
@@ -2328,6 +2371,15 @@ module Aws::ElastiCache
|
|
|
2328
2371
|
# @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
|
|
2329
2372
|
# Specifies the destination, format and type of the logs.
|
|
2330
2373
|
#
|
|
2374
|
+
# @option params [Boolean] :data_tiering_enabled
|
|
2375
|
+
# Enables data tiering. Data tiering is only supported for replication
|
|
2376
|
+
# groups using the r6gd node type. This parameter must be set to true
|
|
2377
|
+
# when using r6gd nodes. For more information, see [Data tiering][1].
|
|
2378
|
+
#
|
|
2379
|
+
#
|
|
2380
|
+
#
|
|
2381
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
|
2382
|
+
#
|
|
2331
2383
|
# @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2332
2384
|
#
|
|
2333
2385
|
# * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
|
|
@@ -2489,6 +2541,7 @@ module Aws::ElastiCache
|
|
|
2489
2541
|
# enabled: false,
|
|
2490
2542
|
# },
|
|
2491
2543
|
# ],
|
|
2544
|
+
# data_tiering_enabled: false,
|
|
2492
2545
|
# })
|
|
2493
2546
|
#
|
|
2494
2547
|
# @example Response structure
|
|
@@ -2558,6 +2611,7 @@ module Aws::ElastiCache
|
|
|
2558
2611
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
2559
2612
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
2560
2613
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
2614
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
2561
2615
|
#
|
|
2562
2616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
|
|
2563
2617
|
#
|
|
@@ -2782,6 +2836,7 @@ module Aws::ElastiCache
|
|
|
2782
2836
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
|
2783
2837
|
# resp.snapshot.kms_key_id #=> String
|
|
2784
2838
|
# resp.snapshot.arn #=> String
|
|
2839
|
+
# resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
|
|
2785
2840
|
#
|
|
2786
2841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshot AWS API Documentation
|
|
2787
2842
|
#
|
|
@@ -2792,7 +2847,7 @@ module Aws::ElastiCache
|
|
|
2792
2847
|
req.send_request(options)
|
|
2793
2848
|
end
|
|
2794
2849
|
|
|
2795
|
-
# For Redis engine version 6.
|
|
2850
|
+
# For Redis engine version 6.0 onwards: Creates a Redis user. For more
|
|
2796
2851
|
# information, see [Using Role Based Access Control (RBAC)][1].
|
|
2797
2852
|
#
|
|
2798
2853
|
#
|
|
@@ -2829,6 +2884,7 @@ module Aws::ElastiCache
|
|
|
2829
2884
|
# * {Types::User#user_name #user_name} => String
|
|
2830
2885
|
# * {Types::User#status #status} => String
|
|
2831
2886
|
# * {Types::User#engine #engine} => String
|
|
2887
|
+
# * {Types::User#minimum_engine_version #minimum_engine_version} => String
|
|
2832
2888
|
# * {Types::User#access_string #access_string} => String
|
|
2833
2889
|
# * {Types::User#user_group_ids #user_group_ids} => Array<String>
|
|
2834
2890
|
# * {Types::User#authentication #authentication} => Types::Authentication
|
|
@@ -2857,6 +2913,7 @@ module Aws::ElastiCache
|
|
|
2857
2913
|
# resp.user_name #=> String
|
|
2858
2914
|
# resp.status #=> String
|
|
2859
2915
|
# resp.engine #=> String
|
|
2916
|
+
# resp.minimum_engine_version #=> String
|
|
2860
2917
|
# resp.access_string #=> String
|
|
2861
2918
|
# resp.user_group_ids #=> Array
|
|
2862
2919
|
# resp.user_group_ids[0] #=> String
|
|
@@ -2873,7 +2930,7 @@ module Aws::ElastiCache
|
|
|
2873
2930
|
req.send_request(options)
|
|
2874
2931
|
end
|
|
2875
2932
|
|
|
2876
|
-
# For Redis engine version 6.
|
|
2933
|
+
# For Redis engine version 6.0 onwards: Creates a Redis user group. For
|
|
2877
2934
|
# more information, see [Using Role Based Access Control (RBAC)][1]
|
|
2878
2935
|
#
|
|
2879
2936
|
#
|
|
@@ -2900,6 +2957,7 @@ module Aws::ElastiCache
|
|
|
2900
2957
|
# * {Types::UserGroup#status #status} => String
|
|
2901
2958
|
# * {Types::UserGroup#engine #engine} => String
|
|
2902
2959
|
# * {Types::UserGroup#user_ids #user_ids} => Array<String>
|
|
2960
|
+
# * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
|
|
2903
2961
|
# * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
|
|
2904
2962
|
# * {Types::UserGroup#replication_groups #replication_groups} => Array<String>
|
|
2905
2963
|
# * {Types::UserGroup#arn #arn} => String
|
|
@@ -2925,6 +2983,7 @@ module Aws::ElastiCache
|
|
|
2925
2983
|
# resp.engine #=> String
|
|
2926
2984
|
# resp.user_ids #=> Array
|
|
2927
2985
|
# resp.user_ids[0] #=> String
|
|
2986
|
+
# resp.minimum_engine_version #=> String
|
|
2928
2987
|
# resp.pending_changes.user_ids_to_remove #=> Array
|
|
2929
2988
|
# resp.pending_changes.user_ids_to_remove[0] #=> String
|
|
2930
2989
|
# resp.pending_changes.user_ids_to_add #=> Array
|
|
@@ -3145,6 +3204,7 @@ module Aws::ElastiCache
|
|
|
3145
3204
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
3146
3205
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
3147
3206
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
3207
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
3148
3208
|
#
|
|
3149
3209
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
|
|
3150
3210
|
#
|
|
@@ -3633,6 +3693,7 @@ module Aws::ElastiCache
|
|
|
3633
3693
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
3634
3694
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
3635
3695
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
3696
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
3636
3697
|
#
|
|
3637
3698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
|
|
3638
3699
|
#
|
|
@@ -3749,6 +3810,7 @@ module Aws::ElastiCache
|
|
|
3749
3810
|
# resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
|
|
3750
3811
|
# resp.snapshot.kms_key_id #=> String
|
|
3751
3812
|
# resp.snapshot.arn #=> String
|
|
3813
|
+
# resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
|
|
3752
3814
|
#
|
|
3753
3815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshot AWS API Documentation
|
|
3754
3816
|
#
|
|
@@ -3759,7 +3821,7 @@ module Aws::ElastiCache
|
|
|
3759
3821
|
req.send_request(options)
|
|
3760
3822
|
end
|
|
3761
3823
|
|
|
3762
|
-
# For Redis engine version 6.
|
|
3824
|
+
# For Redis engine version 6.0 onwards: Deletes a user. The user will be
|
|
3763
3825
|
# removed from all user groups and in turn removed from all replication
|
|
3764
3826
|
# groups. For more information, see [Using Role Based Access Control
|
|
3765
3827
|
# (RBAC)][1].
|
|
@@ -3777,6 +3839,7 @@ module Aws::ElastiCache
|
|
|
3777
3839
|
# * {Types::User#user_name #user_name} => String
|
|
3778
3840
|
# * {Types::User#status #status} => String
|
|
3779
3841
|
# * {Types::User#engine #engine} => String
|
|
3842
|
+
# * {Types::User#minimum_engine_version #minimum_engine_version} => String
|
|
3780
3843
|
# * {Types::User#access_string #access_string} => String
|
|
3781
3844
|
# * {Types::User#user_group_ids #user_group_ids} => Array<String>
|
|
3782
3845
|
# * {Types::User#authentication #authentication} => Types::Authentication
|
|
@@ -3794,6 +3857,7 @@ module Aws::ElastiCache
|
|
|
3794
3857
|
# resp.user_name #=> String
|
|
3795
3858
|
# resp.status #=> String
|
|
3796
3859
|
# resp.engine #=> String
|
|
3860
|
+
# resp.minimum_engine_version #=> String
|
|
3797
3861
|
# resp.access_string #=> String
|
|
3798
3862
|
# resp.user_group_ids #=> Array
|
|
3799
3863
|
# resp.user_group_ids[0] #=> String
|
|
@@ -3810,7 +3874,7 @@ module Aws::ElastiCache
|
|
|
3810
3874
|
req.send_request(options)
|
|
3811
3875
|
end
|
|
3812
3876
|
|
|
3813
|
-
# For Redis engine version 6.
|
|
3877
|
+
# For Redis engine version 6.0 onwards: Deletes a user group. The user
|
|
3814
3878
|
# group must first be disassociated from the replication group before it
|
|
3815
3879
|
# can be deleted. For more information, see [Using Role Based Access
|
|
3816
3880
|
# Control (RBAC)][1].
|
|
@@ -3828,6 +3892,7 @@ module Aws::ElastiCache
|
|
|
3828
3892
|
# * {Types::UserGroup#status #status} => String
|
|
3829
3893
|
# * {Types::UserGroup#engine #engine} => String
|
|
3830
3894
|
# * {Types::UserGroup#user_ids #user_ids} => Array<String>
|
|
3895
|
+
# * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
|
|
3831
3896
|
# * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
|
|
3832
3897
|
# * {Types::UserGroup#replication_groups #replication_groups} => Array<String>
|
|
3833
3898
|
# * {Types::UserGroup#arn #arn} => String
|
|
@@ -3845,6 +3910,7 @@ module Aws::ElastiCache
|
|
|
3845
3910
|
# resp.engine #=> String
|
|
3846
3911
|
# resp.user_ids #=> Array
|
|
3847
3912
|
# resp.user_ids[0] #=> String
|
|
3913
|
+
# resp.minimum_engine_version #=> String
|
|
3848
3914
|
# resp.pending_changes.user_ids_to_remove #=> Array
|
|
3849
3915
|
# resp.pending_changes.user_ids_to_remove[0] #=> String
|
|
3850
3916
|
# resp.pending_changes.user_ids_to_add #=> Array
|
|
@@ -4146,7 +4212,7 @@ module Aws::ElastiCache
|
|
|
4146
4212
|
#
|
|
4147
4213
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
4148
4214
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
|
|
4149
|
-
# \| `redis6.x` \|
|
|
4215
|
+
# \| `redis6.x` \| `redis6.2`
|
|
4150
4216
|
#
|
|
4151
4217
|
# Constraints:
|
|
4152
4218
|
#
|
|
@@ -5129,7 +5195,7 @@ module Aws::ElastiCache
|
|
|
5129
5195
|
#
|
|
5130
5196
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
5131
5197
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
|
|
5132
|
-
# \| `redis6.x` \|
|
|
5198
|
+
# \| `redis6.x` \| `redis6.2`
|
|
5133
5199
|
#
|
|
5134
5200
|
# @option params [Integer] :max_records
|
|
5135
5201
|
# The maximum number of records to include in the response. If more
|
|
@@ -6242,6 +6308,7 @@ module Aws::ElastiCache
|
|
|
6242
6308
|
# resp.replication_groups[0].log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
6243
6309
|
# resp.replication_groups[0].log_delivery_configurations[0].message #=> String
|
|
6244
6310
|
# resp.replication_groups[0].replication_group_create_time #=> Time
|
|
6311
|
+
# resp.replication_groups[0].data_tiering #=> String, one of "enabled", "disabled"
|
|
6245
6312
|
#
|
|
6246
6313
|
#
|
|
6247
6314
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -6282,9 +6349,8 @@ module Aws::ElastiCache
|
|
|
6282
6349
|
#
|
|
6283
6350
|
# * Current generation:
|
|
6284
6351
|
#
|
|
6285
|
-
# **M6g node types
|
|
6286
|
-
# onward and for Memcached engine version 1.5.16 onward)
|
|
6287
|
-
#
|
|
6352
|
+
# **M6g node types:** (available only for Redis engine version 5.0.6
|
|
6353
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
|
6288
6354
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
6289
6355
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
6290
6356
|
# `cache.m6g.16xlarge`
|
|
@@ -6300,6 +6366,10 @@ module Aws::ElastiCache
|
|
|
6300
6366
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
6301
6367
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
6302
6368
|
#
|
|
6369
|
+
# **T4g node types** (available only for Redis engine version 5.0.6
|
|
6370
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
|
6371
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
6372
|
+
#
|
|
6303
6373
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
6304
6374
|
# `cache.t3.medium`
|
|
6305
6375
|
#
|
|
@@ -6322,6 +6392,16 @@ module Aws::ElastiCache
|
|
|
6322
6392
|
#
|
|
6323
6393
|
# **C1 node types:** `cache.c1.xlarge`
|
|
6324
6394
|
#
|
|
6395
|
+
# * Memory optimized with data tiering:
|
|
6396
|
+
#
|
|
6397
|
+
# * Current generation:
|
|
6398
|
+
#
|
|
6399
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
6400
|
+
# onward).
|
|
6401
|
+
#
|
|
6402
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
6403
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
|
6404
|
+
#
|
|
6325
6405
|
# * Memory optimized:
|
|
6326
6406
|
#
|
|
6327
6407
|
# * Current generation:
|
|
@@ -6485,9 +6565,8 @@ module Aws::ElastiCache
|
|
|
6485
6565
|
#
|
|
6486
6566
|
# * Current generation:
|
|
6487
6567
|
#
|
|
6488
|
-
# **M6g node types
|
|
6489
|
-
# onward and for Memcached engine version 1.5.16 onward)
|
|
6490
|
-
#
|
|
6568
|
+
# **M6g node types:** (available only for Redis engine version 5.0.6
|
|
6569
|
+
# onward and for Memcached engine version 1.5.16 onward)
|
|
6491
6570
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
6492
6571
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
6493
6572
|
# `cache.m6g.16xlarge`
|
|
@@ -6503,6 +6582,10 @@ module Aws::ElastiCache
|
|
|
6503
6582
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
6504
6583
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
6505
6584
|
#
|
|
6585
|
+
# **T4g node types** (available only for Redis engine version 5.0.6
|
|
6586
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
|
6587
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
6588
|
+
#
|
|
6506
6589
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
6507
6590
|
# `cache.t3.medium`
|
|
6508
6591
|
#
|
|
@@ -6525,6 +6608,16 @@ module Aws::ElastiCache
|
|
|
6525
6608
|
#
|
|
6526
6609
|
# **C1 node types:** `cache.c1.xlarge`
|
|
6527
6610
|
#
|
|
6611
|
+
# * Memory optimized with data tiering:
|
|
6612
|
+
#
|
|
6613
|
+
# * Current generation:
|
|
6614
|
+
#
|
|
6615
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
6616
|
+
# onward).
|
|
6617
|
+
#
|
|
6618
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
6619
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
|
6620
|
+
#
|
|
6528
6621
|
# * Memory optimized:
|
|
6529
6622
|
#
|
|
6530
6623
|
# * Current generation:
|
|
@@ -7186,6 +7279,7 @@ module Aws::ElastiCache
|
|
|
7186
7279
|
# resp.snapshots[0].node_snapshots[0].snapshot_create_time #=> Time
|
|
7187
7280
|
# resp.snapshots[0].kms_key_id #=> String
|
|
7188
7281
|
# resp.snapshots[0].arn #=> String
|
|
7282
|
+
# resp.snapshots[0].data_tiering #=> String, one of "enabled", "disabled"
|
|
7189
7283
|
#
|
|
7190
7284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeSnapshots AWS API Documentation
|
|
7191
7285
|
#
|
|
@@ -7348,6 +7442,7 @@ module Aws::ElastiCache
|
|
|
7348
7442
|
# resp.user_groups[0].engine #=> String
|
|
7349
7443
|
# resp.user_groups[0].user_ids #=> Array
|
|
7350
7444
|
# resp.user_groups[0].user_ids[0] #=> String
|
|
7445
|
+
# resp.user_groups[0].minimum_engine_version #=> String
|
|
7351
7446
|
# resp.user_groups[0].pending_changes.user_ids_to_remove #=> Array
|
|
7352
7447
|
# resp.user_groups[0].pending_changes.user_ids_to_remove[0] #=> String
|
|
7353
7448
|
# resp.user_groups[0].pending_changes.user_ids_to_add #=> Array
|
|
@@ -7418,6 +7513,7 @@ module Aws::ElastiCache
|
|
|
7418
7513
|
# resp.users[0].user_name #=> String
|
|
7419
7514
|
# resp.users[0].status #=> String
|
|
7420
7515
|
# resp.users[0].engine #=> String
|
|
7516
|
+
# resp.users[0].minimum_engine_version #=> String
|
|
7421
7517
|
# resp.users[0].access_string #=> String
|
|
7422
7518
|
# resp.users[0].user_group_ids #=> Array
|
|
7423
7519
|
# resp.users[0].user_group_ids[0] #=> String
|
|
@@ -7739,6 +7835,7 @@ module Aws::ElastiCache
|
|
|
7739
7835
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
7740
7836
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
7741
7837
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
7838
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
7742
7839
|
#
|
|
7743
7840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
|
|
7744
7841
|
#
|
|
@@ -8170,7 +8267,9 @@ module Aws::ElastiCache
|
|
|
8170
8267
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
|
8171
8268
|
#
|
|
8172
8269
|
# @option params [Boolean] :auto_minor_version_upgrade
|
|
8173
|
-
#
|
|
8270
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
8271
|
+
# parameter to yes if you want to opt-in to the next auto minor version
|
|
8272
|
+
# upgrade campaign. This parameter is disabled for previous versions.
|
|
8174
8273
|
#
|
|
8175
8274
|
# @option params [Integer] :snapshot_retention_limit
|
|
8176
8275
|
# The number of days for which ElastiCache retains automatic cluster
|
|
@@ -8776,7 +8875,9 @@ module Aws::ElastiCache
|
|
|
8776
8875
|
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
|
|
8777
8876
|
#
|
|
8778
8877
|
# @option params [Boolean] :auto_minor_version_upgrade
|
|
8779
|
-
#
|
|
8878
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
8879
|
+
# parameter to yes if you want to opt-in to the next auto minor version
|
|
8880
|
+
# upgrade campaign. This parameter is disabled for previous versions.
|
|
8780
8881
|
#
|
|
8781
8882
|
# @option params [Integer] :snapshot_retention_limit
|
|
8782
8883
|
# The number of days for which ElastiCache retains automatic node group
|
|
@@ -9036,6 +9137,7 @@ module Aws::ElastiCache
|
|
|
9036
9137
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
9037
9138
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
9038
9139
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
9140
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
9039
9141
|
#
|
|
9040
9142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
|
|
9041
9143
|
#
|
|
@@ -9179,6 +9281,7 @@ module Aws::ElastiCache
|
|
|
9179
9281
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
9180
9282
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
9181
9283
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
9284
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
9182
9285
|
#
|
|
9183
9286
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
|
|
9184
9287
|
#
|
|
@@ -9212,6 +9315,7 @@ module Aws::ElastiCache
|
|
|
9212
9315
|
# * {Types::User#user_name #user_name} => String
|
|
9213
9316
|
# * {Types::User#status #status} => String
|
|
9214
9317
|
# * {Types::User#engine #engine} => String
|
|
9318
|
+
# * {Types::User#minimum_engine_version #minimum_engine_version} => String
|
|
9215
9319
|
# * {Types::User#access_string #access_string} => String
|
|
9216
9320
|
# * {Types::User#user_group_ids #user_group_ids} => Array<String>
|
|
9217
9321
|
# * {Types::User#authentication #authentication} => Types::Authentication
|
|
@@ -9233,6 +9337,7 @@ module Aws::ElastiCache
|
|
|
9233
9337
|
# resp.user_name #=> String
|
|
9234
9338
|
# resp.status #=> String
|
|
9235
9339
|
# resp.engine #=> String
|
|
9340
|
+
# resp.minimum_engine_version #=> String
|
|
9236
9341
|
# resp.access_string #=> String
|
|
9237
9342
|
# resp.user_group_ids #=> Array
|
|
9238
9343
|
# resp.user_group_ids[0] #=> String
|
|
@@ -9266,6 +9371,7 @@ module Aws::ElastiCache
|
|
|
9266
9371
|
# * {Types::UserGroup#status #status} => String
|
|
9267
9372
|
# * {Types::UserGroup#engine #engine} => String
|
|
9268
9373
|
# * {Types::UserGroup#user_ids #user_ids} => Array<String>
|
|
9374
|
+
# * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
|
|
9269
9375
|
# * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
|
|
9270
9376
|
# * {Types::UserGroup#replication_groups #replication_groups} => Array<String>
|
|
9271
9377
|
# * {Types::UserGroup#arn #arn} => String
|
|
@@ -9285,6 +9391,7 @@ module Aws::ElastiCache
|
|
|
9285
9391
|
# resp.engine #=> String
|
|
9286
9392
|
# resp.user_ids #=> Array
|
|
9287
9393
|
# resp.user_ids[0] #=> String
|
|
9394
|
+
# resp.minimum_engine_version #=> String
|
|
9288
9395
|
# resp.pending_changes.user_ids_to_remove #=> Array
|
|
9289
9396
|
# resp.pending_changes.user_ids_to_remove[0] #=> String
|
|
9290
9397
|
# resp.pending_changes.user_ids_to_add #=> Array
|
|
@@ -9923,6 +10030,7 @@ module Aws::ElastiCache
|
|
|
9923
10030
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
9924
10031
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
9925
10032
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
10033
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
9926
10034
|
#
|
|
9927
10035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
|
|
9928
10036
|
#
|
|
@@ -9937,6 +10045,12 @@ module Aws::ElastiCache
|
|
|
9937
10045
|
# automatic failover on a specified node group (called shard in the
|
|
9938
10046
|
# console) in a replication group (called cluster in the console).
|
|
9939
10047
|
#
|
|
10048
|
+
# This API is designed for testing the behavior of your application in
|
|
10049
|
+
# case of ElastiCache failover. It is not designed to be an operational
|
|
10050
|
+
# tool for initiating a failover to overcome a problem you may have with
|
|
10051
|
+
# the cluster. Moreover, in certain conditions such as large-scale
|
|
10052
|
+
# operational events, Amazon may block this API.
|
|
10053
|
+
#
|
|
9940
10054
|
# **Note the following**
|
|
9941
10055
|
#
|
|
9942
10056
|
# * A customer can use this operation to test automatic failover on up
|
|
@@ -10074,6 +10188,7 @@ module Aws::ElastiCache
|
|
|
10074
10188
|
# resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
|
|
10075
10189
|
# resp.replication_group.log_delivery_configurations[0].message #=> String
|
|
10076
10190
|
# resp.replication_group.replication_group_create_time #=> Time
|
|
10191
|
+
# resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
|
|
10077
10192
|
#
|
|
10078
10193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
|
|
10079
10194
|
#
|
|
@@ -10097,7 +10212,7 @@ module Aws::ElastiCache
|
|
|
10097
10212
|
params: params,
|
|
10098
10213
|
config: config)
|
|
10099
10214
|
context[:gem_name] = 'aws-sdk-elasticache'
|
|
10100
|
-
context[:gem_version] = '1.
|
|
10215
|
+
context[:gem_version] = '1.67.0'
|
|
10101
10216
|
Seahorse::Client::Request.new(handlers, context)
|
|
10102
10217
|
end
|
|
10103
10218
|
|
|
@@ -106,6 +106,7 @@ module Aws::ElastiCache
|
|
|
106
106
|
CreateUserMessage = Shapes::StructureShape.new(name: 'CreateUserMessage')
|
|
107
107
|
CustomerNodeEndpoint = Shapes::StructureShape.new(name: 'CustomerNodeEndpoint')
|
|
108
108
|
CustomerNodeEndpointList = Shapes::ListShape.new(name: 'CustomerNodeEndpointList')
|
|
109
|
+
DataTieringStatus = Shapes::StringShape.new(name: 'DataTieringStatus')
|
|
109
110
|
DecreaseNodeGroupsInGlobalReplicationGroupMessage = Shapes::StructureShape.new(name: 'DecreaseNodeGroupsInGlobalReplicationGroupMessage')
|
|
110
111
|
DecreaseNodeGroupsInGlobalReplicationGroupResult = Shapes::StructureShape.new(name: 'DecreaseNodeGroupsInGlobalReplicationGroupResult')
|
|
111
112
|
DecreaseReplicaCountMessage = Shapes::StructureShape.new(name: 'DecreaseReplicaCountMessage')
|
|
@@ -725,6 +726,7 @@ module Aws::ElastiCache
|
|
|
725
726
|
CreateReplicationGroupMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
726
727
|
CreateReplicationGroupMessage.add_member(:user_group_ids, Shapes::ShapeRef.new(shape: UserGroupIdListInput, location_name: "UserGroupIds"))
|
|
727
728
|
CreateReplicationGroupMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
|
|
729
|
+
CreateReplicationGroupMessage.add_member(:data_tiering_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DataTieringEnabled"))
|
|
728
730
|
CreateReplicationGroupMessage.struct_class = Types::CreateReplicationGroupMessage
|
|
729
731
|
|
|
730
732
|
CreateReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
|
|
@@ -1451,6 +1453,7 @@ module Aws::ElastiCache
|
|
|
1451
1453
|
ReplicationGroup.add_member(:user_group_ids, Shapes::ShapeRef.new(shape: UserGroupIdList, location_name: "UserGroupIds"))
|
|
1452
1454
|
ReplicationGroup.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
|
|
1453
1455
|
ReplicationGroup.add_member(:replication_group_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationGroupCreateTime"))
|
|
1456
|
+
ReplicationGroup.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
|
|
1454
1457
|
ReplicationGroup.struct_class = Types::ReplicationGroup
|
|
1455
1458
|
|
|
1456
1459
|
ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
|
|
@@ -1610,6 +1613,7 @@ module Aws::ElastiCache
|
|
|
1610
1613
|
Snapshot.add_member(:node_snapshots, Shapes::ShapeRef.new(shape: NodeSnapshotList, location_name: "NodeSnapshots"))
|
|
1611
1614
|
Snapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
1612
1615
|
Snapshot.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
|
1616
|
+
Snapshot.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
|
|
1613
1617
|
Snapshot.struct_class = Types::Snapshot
|
|
1614
1618
|
|
|
1615
1619
|
SnapshotAlreadyExistsFault.struct_class = Types::SnapshotAlreadyExistsFault
|
|
@@ -1719,6 +1723,7 @@ module Aws::ElastiCache
|
|
|
1719
1723
|
User.add_member(:user_name, Shapes::ShapeRef.new(shape: String, location_name: "UserName"))
|
|
1720
1724
|
User.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
|
1721
1725
|
User.add_member(:engine, Shapes::ShapeRef.new(shape: EngineType, location_name: "Engine"))
|
|
1726
|
+
User.add_member(:minimum_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "MinimumEngineVersion"))
|
|
1722
1727
|
User.add_member(:access_string, Shapes::ShapeRef.new(shape: String, location_name: "AccessString"))
|
|
1723
1728
|
User.add_member(:user_group_ids, Shapes::ShapeRef.new(shape: UserGroupIdList, location_name: "UserGroupIds"))
|
|
1724
1729
|
User.add_member(:authentication, Shapes::ShapeRef.new(shape: Authentication, location_name: "Authentication"))
|
|
@@ -1731,6 +1736,7 @@ module Aws::ElastiCache
|
|
|
1731
1736
|
UserGroup.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
|
1732
1737
|
UserGroup.add_member(:engine, Shapes::ShapeRef.new(shape: EngineType, location_name: "Engine"))
|
|
1733
1738
|
UserGroup.add_member(:user_ids, Shapes::ShapeRef.new(shape: UserIdList, location_name: "UserIds"))
|
|
1739
|
+
UserGroup.add_member(:minimum_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "MinimumEngineVersion"))
|
|
1734
1740
|
UserGroup.add_member(:pending_changes, Shapes::ShapeRef.new(shape: UserGroupPendingChanges, location_name: "PendingChanges"))
|
|
1735
1741
|
UserGroup.add_member(:replication_groups, Shapes::ShapeRef.new(shape: UGReplicationGroupIdList, location_name: "ReplicationGroups"))
|
|
1736
1742
|
UserGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
|
@@ -1992,6 +1998,7 @@ module Aws::ElastiCache
|
|
|
1992
1998
|
o.errors << Shapes::ShapeRef.new(shape: UserAlreadyExistsFault)
|
|
1993
1999
|
o.errors << Shapes::ShapeRef.new(shape: UserQuotaExceededFault)
|
|
1994
2000
|
o.errors << Shapes::ShapeRef.new(shape: DuplicateUserNameFault)
|
|
2001
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
1995
2002
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
1996
2003
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
|
1997
2004
|
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
|
@@ -2006,6 +2013,7 @@ module Aws::ElastiCache
|
|
|
2006
2013
|
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
|
2007
2014
|
o.errors << Shapes::ShapeRef.new(shape: DuplicateUserNameFault)
|
|
2008
2015
|
o.errors << Shapes::ShapeRef.new(shape: UserGroupAlreadyExistsFault)
|
|
2016
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
2009
2017
|
o.errors << Shapes::ShapeRef.new(shape: DefaultUserRequired)
|
|
2010
2018
|
o.errors << Shapes::ShapeRef.new(shape: UserGroupQuotaExceededFault)
|
|
2011
2019
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
@@ -2139,6 +2147,7 @@ module Aws::ElastiCache
|
|
|
2139
2147
|
o.output = Shapes::ShapeRef.new(shape: User)
|
|
2140
2148
|
o.errors << Shapes::ShapeRef.new(shape: InvalidUserStateFault)
|
|
2141
2149
|
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
|
2150
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
2142
2151
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2143
2152
|
o.errors << Shapes::ShapeRef.new(shape: DefaultUserAssociatedToUserGroupFault)
|
|
2144
2153
|
end)
|
|
@@ -2151,6 +2160,7 @@ module Aws::ElastiCache
|
|
|
2151
2160
|
o.output = Shapes::ShapeRef.new(shape: UserGroup)
|
|
2152
2161
|
o.errors << Shapes::ShapeRef.new(shape: UserGroupNotFoundFault)
|
|
2153
2162
|
o.errors << Shapes::ShapeRef.new(shape: InvalidUserGroupStateFault)
|
|
2163
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
2154
2164
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2155
2165
|
end)
|
|
2156
2166
|
|
|
@@ -2409,6 +2419,7 @@ module Aws::ElastiCache
|
|
|
2409
2419
|
o.input = Shapes::ShapeRef.new(shape: DescribeUserGroupsMessage)
|
|
2410
2420
|
o.output = Shapes::ShapeRef.new(shape: DescribeUserGroupsResult)
|
|
2411
2421
|
o.errors << Shapes::ShapeRef.new(shape: UserGroupNotFoundFault)
|
|
2422
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
2412
2423
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
|
2413
2424
|
o[:pager] = Aws::Pager.new(
|
|
2414
2425
|
limit_key: "max_records",
|
|
@@ -2425,6 +2436,7 @@ module Aws::ElastiCache
|
|
|
2425
2436
|
o.input = Shapes::ShapeRef.new(shape: DescribeUsersMessage)
|
|
2426
2437
|
o.output = Shapes::ShapeRef.new(shape: DescribeUsersResult)
|
|
2427
2438
|
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
|
2439
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
2428
2440
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
|
2429
2441
|
o[:pager] = Aws::Pager.new(
|
|
2430
2442
|
limit_key: "max_records",
|
|
@@ -2626,6 +2638,7 @@ module Aws::ElastiCache
|
|
|
2626
2638
|
o.output = Shapes::ShapeRef.new(shape: User)
|
|
2627
2639
|
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
|
2628
2640
|
o.errors << Shapes::ShapeRef.new(shape: InvalidUserStateFault)
|
|
2641
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
2629
2642
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2630
2643
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
|
2631
2644
|
end)
|
|
@@ -2639,6 +2652,7 @@ module Aws::ElastiCache
|
|
|
2639
2652
|
o.errors << Shapes::ShapeRef.new(shape: UserGroupNotFoundFault)
|
|
2640
2653
|
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
|
2641
2654
|
o.errors << Shapes::ShapeRef.new(shape: DuplicateUserNameFault)
|
|
2655
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
|
|
2642
2656
|
o.errors << Shapes::ShapeRef.new(shape: DefaultUserRequired)
|
|
2643
2657
|
o.errors << Shapes::ShapeRef.new(shape: InvalidUserGroupStateFault)
|
|
2644
2658
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
@@ -287,9 +287,8 @@ module Aws::ElastiCache
|
|
|
287
287
|
#
|
|
288
288
|
# * Current generation:
|
|
289
289
|
#
|
|
290
|
-
# **M6g node types
|
|
291
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
292
|
-
#
|
|
290
|
+
# **M6g node types:** (available only for Redis engine version
|
|
291
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
293
292
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
294
293
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
295
294
|
# `cache.m6g.16xlarge`
|
|
@@ -305,6 +304,10 @@ module Aws::ElastiCache
|
|
|
305
304
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
306
305
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
307
306
|
#
|
|
307
|
+
# **T4g node types** (available only for Redis engine version
|
|
308
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
309
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
310
|
+
#
|
|
308
311
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
309
312
|
# `cache.t3.medium`
|
|
310
313
|
#
|
|
@@ -327,6 +330,17 @@ module Aws::ElastiCache
|
|
|
327
330
|
#
|
|
328
331
|
# **C1 node types:** `cache.c1.xlarge`
|
|
329
332
|
#
|
|
333
|
+
# * Memory optimized with data tiering:
|
|
334
|
+
#
|
|
335
|
+
# * Current generation:
|
|
336
|
+
#
|
|
337
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
338
|
+
# onward).
|
|
339
|
+
#
|
|
340
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
341
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
342
|
+
# `cache.r6gd.16xlarge`
|
|
343
|
+
#
|
|
330
344
|
# * Memory optimized:
|
|
331
345
|
#
|
|
332
346
|
# * Current generation:
|
|
@@ -468,7 +482,10 @@ module Aws::ElastiCache
|
|
|
468
482
|
# @return [Array<Types::CacheNode>]
|
|
469
483
|
#
|
|
470
484
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
471
|
-
#
|
|
485
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
486
|
+
# parameter to yes if you want to opt-in to the next auto minor
|
|
487
|
+
# version upgrade campaign. This parameter is disabled for previous
|
|
488
|
+
# versions.
|
|
472
489
|
# @return [Boolean]
|
|
473
490
|
#
|
|
474
491
|
# @!attribute [rw] security_groups
|
|
@@ -634,7 +651,7 @@ module Aws::ElastiCache
|
|
|
634
651
|
#
|
|
635
652
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
636
653
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
637
|
-
# `redis5.0` \| `redis6.
|
|
654
|
+
# `redis5.0` \| `redis6.0` \| `redis6.2`
|
|
638
655
|
# @return [String]
|
|
639
656
|
#
|
|
640
657
|
# @!attribute [rw] cache_engine_description
|
|
@@ -690,9 +707,8 @@ module Aws::ElastiCache
|
|
|
690
707
|
#
|
|
691
708
|
# * Current generation:
|
|
692
709
|
#
|
|
693
|
-
# **M6g node types
|
|
694
|
-
# onward and for Memcached engine version 1.5.16 onward)
|
|
695
|
-
#
|
|
710
|
+
# **M6g node types:** (available only for Redis engine version 5.0.6
|
|
711
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
|
696
712
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
697
713
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
698
714
|
# `cache.m6g.16xlarge`
|
|
@@ -708,6 +724,10 @@ module Aws::ElastiCache
|
|
|
708
724
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
709
725
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
710
726
|
#
|
|
727
|
+
# **T4g node types** (available only for Redis engine version 5.0.6
|
|
728
|
+
# onward and for Memcached engine version 1.5.16 onward):
|
|
729
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
730
|
+
#
|
|
711
731
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
712
732
|
# `cache.t3.medium`
|
|
713
733
|
#
|
|
@@ -730,6 +750,16 @@ module Aws::ElastiCache
|
|
|
730
750
|
#
|
|
731
751
|
# **C1 node types:** `cache.c1.xlarge`
|
|
732
752
|
#
|
|
753
|
+
# * Memory optimized with data tiering:
|
|
754
|
+
#
|
|
755
|
+
# * Current generation:
|
|
756
|
+
#
|
|
757
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
758
|
+
# onward).
|
|
759
|
+
#
|
|
760
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
761
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
|
|
762
|
+
#
|
|
733
763
|
# * Memory optimized:
|
|
734
764
|
#
|
|
735
765
|
# * Current generation:
|
|
@@ -979,7 +1009,7 @@ module Aws::ElastiCache
|
|
|
979
1009
|
#
|
|
980
1010
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
981
1011
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
982
|
-
# `redis5.0` \| `redis6.
|
|
1012
|
+
# `redis5.0` \| `redis6.0` \|
|
|
983
1013
|
# @return [String]
|
|
984
1014
|
#
|
|
985
1015
|
# @!attribute [rw] description
|
|
@@ -1690,8 +1720,7 @@ module Aws::ElastiCache
|
|
|
1690
1720
|
# * Current generation:
|
|
1691
1721
|
#
|
|
1692
1722
|
# **M6g node types** (available only for Redis engine version
|
|
1693
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
1694
|
-
#
|
|
1723
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
1695
1724
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
1696
1725
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
1697
1726
|
# `cache.m6g.16xlarge`
|
|
@@ -1707,6 +1736,10 @@ module Aws::ElastiCache
|
|
|
1707
1736
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
1708
1737
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
1709
1738
|
#
|
|
1739
|
+
# **T4g node types** (available only for Redis engine version
|
|
1740
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
|
1741
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
1742
|
+
#
|
|
1710
1743
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
1711
1744
|
# `cache.t3.medium`
|
|
1712
1745
|
#
|
|
@@ -1729,6 +1762,17 @@ module Aws::ElastiCache
|
|
|
1729
1762
|
#
|
|
1730
1763
|
# **C1 node types:** `cache.c1.xlarge`
|
|
1731
1764
|
#
|
|
1765
|
+
# * Memory optimized with data tiering:
|
|
1766
|
+
#
|
|
1767
|
+
# * Current generation:
|
|
1768
|
+
#
|
|
1769
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
1770
|
+
# onward).
|
|
1771
|
+
#
|
|
1772
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
1773
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
1774
|
+
# `cache.r6gd.16xlarge`
|
|
1775
|
+
#
|
|
1732
1776
|
# * Memory optimized:
|
|
1733
1777
|
#
|
|
1734
1778
|
# * Current generation:
|
|
@@ -1887,7 +1931,10 @@ module Aws::ElastiCache
|
|
|
1887
1931
|
# @return [String]
|
|
1888
1932
|
#
|
|
1889
1933
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
1890
|
-
#
|
|
1934
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
1935
|
+
# parameter to yes if you want to opt-in to the next auto minor
|
|
1936
|
+
# version upgrade campaign. This parameter is disabled for previous
|
|
1937
|
+
# versions.
|
|
1891
1938
|
# @return [Boolean]
|
|
1892
1939
|
#
|
|
1893
1940
|
# @!attribute [rw] snapshot_retention_limit
|
|
@@ -2031,7 +2078,7 @@ module Aws::ElastiCache
|
|
|
2031
2078
|
#
|
|
2032
2079
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
2033
2080
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
2034
|
-
# `redis5.0` \| `redis6.
|
|
2081
|
+
# `redis5.0` \| `redis6.0` \| `redis6.2`
|
|
2035
2082
|
# @return [String]
|
|
2036
2083
|
#
|
|
2037
2084
|
# @!attribute [rw] description
|
|
@@ -2335,6 +2382,7 @@ module Aws::ElastiCache
|
|
|
2335
2382
|
# enabled: false,
|
|
2336
2383
|
# },
|
|
2337
2384
|
# ],
|
|
2385
|
+
# data_tiering_enabled: false,
|
|
2338
2386
|
# }
|
|
2339
2387
|
#
|
|
2340
2388
|
# @!attribute [rw] replication_group_id
|
|
@@ -2468,8 +2516,7 @@ module Aws::ElastiCache
|
|
|
2468
2516
|
# * Current generation:
|
|
2469
2517
|
#
|
|
2470
2518
|
# **M6g node types** (available only for Redis engine version
|
|
2471
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
2472
|
-
#
|
|
2519
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
2473
2520
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
2474
2521
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
2475
2522
|
# `cache.m6g.16xlarge`
|
|
@@ -2485,6 +2532,10 @@ module Aws::ElastiCache
|
|
|
2485
2532
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
2486
2533
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
2487
2534
|
#
|
|
2535
|
+
# **T4g node types** (available only for Redis engine version
|
|
2536
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
|
2537
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
2538
|
+
#
|
|
2488
2539
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
2489
2540
|
# `cache.t3.medium`
|
|
2490
2541
|
#
|
|
@@ -2507,6 +2558,17 @@ module Aws::ElastiCache
|
|
|
2507
2558
|
#
|
|
2508
2559
|
# **C1 node types:** `cache.c1.xlarge`
|
|
2509
2560
|
#
|
|
2561
|
+
# * Memory optimized with data tiering:
|
|
2562
|
+
#
|
|
2563
|
+
# * Current generation:
|
|
2564
|
+
#
|
|
2565
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
2566
|
+
# onward).
|
|
2567
|
+
#
|
|
2568
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
2569
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
2570
|
+
# `cache.r6gd.16xlarge`
|
|
2571
|
+
#
|
|
2510
2572
|
# * Memory optimized:
|
|
2511
2573
|
#
|
|
2512
2574
|
# * Current generation:
|
|
@@ -2694,7 +2756,10 @@ module Aws::ElastiCache
|
|
|
2694
2756
|
# @return [String]
|
|
2695
2757
|
#
|
|
2696
2758
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
2697
|
-
#
|
|
2759
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
2760
|
+
# parameter to yes if you want to opt-in to the next auto minor
|
|
2761
|
+
# version upgrade campaign. This parameter is disabled for previous
|
|
2762
|
+
# versions.
|
|
2698
2763
|
# @return [Boolean]
|
|
2699
2764
|
#
|
|
2700
2765
|
# @!attribute [rw] snapshot_retention_limit
|
|
@@ -2795,6 +2860,16 @@ module Aws::ElastiCache
|
|
|
2795
2860
|
# Specifies the destination, format and type of the logs.
|
|
2796
2861
|
# @return [Array<Types::LogDeliveryConfigurationRequest>]
|
|
2797
2862
|
#
|
|
2863
|
+
# @!attribute [rw] data_tiering_enabled
|
|
2864
|
+
# Enables data tiering. Data tiering is only supported for replication
|
|
2865
|
+
# groups using the r6gd node type. This parameter must be set to true
|
|
2866
|
+
# when using r6gd nodes. For more information, see [Data tiering][1].
|
|
2867
|
+
#
|
|
2868
|
+
#
|
|
2869
|
+
#
|
|
2870
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
|
2871
|
+
# @return [Boolean]
|
|
2872
|
+
#
|
|
2798
2873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
|
|
2799
2874
|
#
|
|
2800
2875
|
class CreateReplicationGroupMessage < Struct.new(
|
|
@@ -2830,7 +2905,8 @@ module Aws::ElastiCache
|
|
|
2830
2905
|
:at_rest_encryption_enabled,
|
|
2831
2906
|
:kms_key_id,
|
|
2832
2907
|
:user_group_ids,
|
|
2833
|
-
:log_delivery_configurations
|
|
2908
|
+
:log_delivery_configurations,
|
|
2909
|
+
:data_tiering_enabled)
|
|
2834
2910
|
SENSITIVE = []
|
|
2835
2911
|
include Aws::Structure
|
|
2836
2912
|
end
|
|
@@ -3600,7 +3676,7 @@ module Aws::ElastiCache
|
|
|
3600
3676
|
#
|
|
3601
3677
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
3602
3678
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
3603
|
-
# `redis5.0` \| `redis6.x` \|
|
|
3679
|
+
# `redis5.0` \| `redis6.x` \| `redis6.2`
|
|
3604
3680
|
#
|
|
3605
3681
|
# Constraints:
|
|
3606
3682
|
#
|
|
@@ -3843,7 +3919,7 @@ module Aws::ElastiCache
|
|
|
3843
3919
|
#
|
|
3844
3920
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
3845
3921
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
3846
|
-
# `redis5.0` \| `redis6.x` \|
|
|
3922
|
+
# `redis5.0` \| `redis6.x` \| `redis6.2`
|
|
3847
3923
|
# @return [String]
|
|
3848
3924
|
#
|
|
3849
3925
|
# @!attribute [rw] max_records
|
|
@@ -4114,9 +4190,8 @@ module Aws::ElastiCache
|
|
|
4114
4190
|
#
|
|
4115
4191
|
# * Current generation:
|
|
4116
4192
|
#
|
|
4117
|
-
# **M6g node types
|
|
4118
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
4119
|
-
#
|
|
4193
|
+
# **M6g node types:** (available only for Redis engine version
|
|
4194
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
4120
4195
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
4121
4196
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
4122
4197
|
# `cache.m6g.16xlarge`
|
|
@@ -4132,6 +4207,10 @@ module Aws::ElastiCache
|
|
|
4132
4207
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
4133
4208
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
4134
4209
|
#
|
|
4210
|
+
# **T4g node types** (available only for Redis engine version
|
|
4211
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
4212
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
4213
|
+
#
|
|
4135
4214
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
4136
4215
|
# `cache.t3.medium`
|
|
4137
4216
|
#
|
|
@@ -4154,6 +4233,17 @@ module Aws::ElastiCache
|
|
|
4154
4233
|
#
|
|
4155
4234
|
# **C1 node types:** `cache.c1.xlarge`
|
|
4156
4235
|
#
|
|
4236
|
+
# * Memory optimized with data tiering:
|
|
4237
|
+
#
|
|
4238
|
+
# * Current generation:
|
|
4239
|
+
#
|
|
4240
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
4241
|
+
# onward).
|
|
4242
|
+
#
|
|
4243
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
4244
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
4245
|
+
# `cache.r6gd.16xlarge`
|
|
4246
|
+
#
|
|
4157
4247
|
# * Memory optimized:
|
|
4158
4248
|
#
|
|
4159
4249
|
# * Current generation:
|
|
@@ -4294,9 +4384,8 @@ module Aws::ElastiCache
|
|
|
4294
4384
|
#
|
|
4295
4385
|
# * Current generation:
|
|
4296
4386
|
#
|
|
4297
|
-
# **M6g node types
|
|
4298
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
4299
|
-
#
|
|
4387
|
+
# **M6g node types:** (available only for Redis engine version
|
|
4388
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
4300
4389
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
4301
4390
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
4302
4391
|
# `cache.m6g.16xlarge`
|
|
@@ -4312,6 +4401,10 @@ module Aws::ElastiCache
|
|
|
4312
4401
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
4313
4402
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
4314
4403
|
#
|
|
4404
|
+
# **T4g node types** (available only for Redis engine version
|
|
4405
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
4406
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
4407
|
+
#
|
|
4315
4408
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
4316
4409
|
# `cache.t3.medium`
|
|
4317
4410
|
#
|
|
@@ -4334,6 +4427,17 @@ module Aws::ElastiCache
|
|
|
4334
4427
|
#
|
|
4335
4428
|
# **C1 node types:** `cache.c1.xlarge`
|
|
4336
4429
|
#
|
|
4430
|
+
# * Memory optimized with data tiering:
|
|
4431
|
+
#
|
|
4432
|
+
# * Current generation:
|
|
4433
|
+
#
|
|
4434
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
4435
|
+
# onward).
|
|
4436
|
+
#
|
|
4437
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
4438
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
4439
|
+
# `cache.r6gd.16xlarge`
|
|
4440
|
+
#
|
|
4337
4441
|
# * Memory optimized:
|
|
4338
4442
|
#
|
|
4339
4443
|
# * Current generation:
|
|
@@ -4933,7 +5037,7 @@ module Aws::ElastiCache
|
|
|
4933
5037
|
#
|
|
4934
5038
|
# Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
|
|
4935
5039
|
# \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
|
|
4936
|
-
# `redis5.0` \| `redis6.
|
|
5040
|
+
# `redis5.0` \| `redis6.0` \| `redis6.2`
|
|
4937
5041
|
# @return [String]
|
|
4938
5042
|
#
|
|
4939
5043
|
# @!attribute [rw] marker
|
|
@@ -6046,7 +6150,10 @@ module Aws::ElastiCache
|
|
|
6046
6150
|
# @return [String]
|
|
6047
6151
|
#
|
|
6048
6152
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
6049
|
-
#
|
|
6153
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
6154
|
+
# parameter to yes if you want to opt-in to the next auto minor
|
|
6155
|
+
# version upgrade campaign. This parameter is disabled for previous
|
|
6156
|
+
# versions.
|
|
6050
6157
|
# @return [Boolean]
|
|
6051
6158
|
#
|
|
6052
6159
|
# @!attribute [rw] snapshot_retention_limit
|
|
@@ -6510,7 +6617,10 @@ module Aws::ElastiCache
|
|
|
6510
6617
|
# @return [String]
|
|
6511
6618
|
#
|
|
6512
6619
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
6513
|
-
#
|
|
6620
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
6621
|
+
# parameter to yes if you want to opt-in to the next auto minor
|
|
6622
|
+
# version upgrade campaign. This parameter is disabled for previous
|
|
6623
|
+
# versions.
|
|
6514
6624
|
# @return [Boolean]
|
|
6515
6625
|
#
|
|
6516
6626
|
# @!attribute [rw] snapshot_retention_limit
|
|
@@ -7767,6 +7877,16 @@ module Aws::ElastiCache
|
|
|
7767
7877
|
# The date and time when the cluster was created.
|
|
7768
7878
|
# @return [Time]
|
|
7769
7879
|
#
|
|
7880
|
+
# @!attribute [rw] data_tiering
|
|
7881
|
+
# Enables data tiering. Data tiering is only supported for replication
|
|
7882
|
+
# groups using the r6gd node type. This parameter must be set to true
|
|
7883
|
+
# when using r6gd nodes. For more information, see [Data tiering][1].
|
|
7884
|
+
#
|
|
7885
|
+
#
|
|
7886
|
+
#
|
|
7887
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
|
7888
|
+
# @return [String]
|
|
7889
|
+
#
|
|
7770
7890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
|
7771
7891
|
#
|
|
7772
7892
|
class ReplicationGroup < Struct.new(
|
|
@@ -7794,7 +7914,8 @@ module Aws::ElastiCache
|
|
|
7794
7914
|
:arn,
|
|
7795
7915
|
:user_group_ids,
|
|
7796
7916
|
:log_delivery_configurations,
|
|
7797
|
-
:replication_group_create_time
|
|
7917
|
+
:replication_group_create_time,
|
|
7918
|
+
:data_tiering)
|
|
7798
7919
|
SENSITIVE = []
|
|
7799
7920
|
include Aws::Structure
|
|
7800
7921
|
end
|
|
@@ -7909,9 +8030,8 @@ module Aws::ElastiCache
|
|
|
7909
8030
|
#
|
|
7910
8031
|
# * Current generation:
|
|
7911
8032
|
#
|
|
7912
|
-
# **M6g node types
|
|
7913
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
7914
|
-
#
|
|
8033
|
+
# **M6g node types:** (available only for Redis engine version
|
|
8034
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
7915
8035
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
7916
8036
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
7917
8037
|
# `cache.m6g.16xlarge`
|
|
@@ -7927,6 +8047,10 @@ module Aws::ElastiCache
|
|
|
7927
8047
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
7928
8048
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
7929
8049
|
#
|
|
8050
|
+
# **T4g node types** (available only for Redis engine version
|
|
8051
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
|
8052
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
8053
|
+
#
|
|
7930
8054
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
7931
8055
|
# `cache.t3.medium`
|
|
7932
8056
|
#
|
|
@@ -7949,6 +8073,17 @@ module Aws::ElastiCache
|
|
|
7949
8073
|
#
|
|
7950
8074
|
# **C1 node types:** `cache.c1.xlarge`
|
|
7951
8075
|
#
|
|
8076
|
+
# * Memory optimized with data tiering:
|
|
8077
|
+
#
|
|
8078
|
+
# * Current generation:
|
|
8079
|
+
#
|
|
8080
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
8081
|
+
# onward).
|
|
8082
|
+
#
|
|
8083
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
8084
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
8085
|
+
# `cache.r6gd.16xlarge`
|
|
8086
|
+
#
|
|
7952
8087
|
# * Memory optimized:
|
|
7953
8088
|
#
|
|
7954
8089
|
# * Current generation:
|
|
@@ -8119,9 +8254,8 @@ module Aws::ElastiCache
|
|
|
8119
8254
|
#
|
|
8120
8255
|
# * Current generation:
|
|
8121
8256
|
#
|
|
8122
|
-
# **M6g node types
|
|
8123
|
-
# 5.0.6 onward and for Memcached engine version 1.5.16 onward)
|
|
8124
|
-
#
|
|
8257
|
+
# **M6g node types:** (available only for Redis engine version
|
|
8258
|
+
# 5.0.6 onward and for Memcached engine version 1.5.16 onward):
|
|
8125
8259
|
# `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
|
|
8126
8260
|
# `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
|
|
8127
8261
|
# `cache.m6g.16xlarge`
|
|
@@ -8137,6 +8271,10 @@ module Aws::ElastiCache
|
|
|
8137
8271
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
8138
8272
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
8139
8273
|
#
|
|
8274
|
+
# **T4g node types** (available only for Redis engine version
|
|
8275
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
|
8276
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
8277
|
+
#
|
|
8140
8278
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
8141
8279
|
# `cache.t3.medium`
|
|
8142
8280
|
#
|
|
@@ -8159,6 +8297,17 @@ module Aws::ElastiCache
|
|
|
8159
8297
|
#
|
|
8160
8298
|
# **C1 node types:** `cache.c1.xlarge`
|
|
8161
8299
|
#
|
|
8300
|
+
# * Memory optimized with data tiering:
|
|
8301
|
+
#
|
|
8302
|
+
# * Current generation:
|
|
8303
|
+
#
|
|
8304
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
8305
|
+
# onward).
|
|
8306
|
+
#
|
|
8307
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
8308
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
8309
|
+
# `cache.r6gd.16xlarge`
|
|
8310
|
+
#
|
|
8162
8311
|
# * Memory optimized:
|
|
8163
8312
|
#
|
|
8164
8313
|
# * Current generation:
|
|
@@ -8624,6 +8773,11 @@ module Aws::ElastiCache
|
|
|
8624
8773
|
# **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
|
|
8625
8774
|
# `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
|
|
8626
8775
|
#
|
|
8776
|
+
# **T4g node types** (available only for Redis engine version
|
|
8777
|
+
# 5.0.6 onward and Memcached engine version 1.5.16 onward):
|
|
8778
|
+
#
|
|
8779
|
+
# `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
|
|
8780
|
+
#
|
|
8627
8781
|
# **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
|
|
8628
8782
|
# `cache.t3.medium`
|
|
8629
8783
|
#
|
|
@@ -8646,6 +8800,17 @@ module Aws::ElastiCache
|
|
|
8646
8800
|
#
|
|
8647
8801
|
# **C1 node types:** `cache.c1.xlarge`
|
|
8648
8802
|
#
|
|
8803
|
+
# * Memory optimized with data tiering:
|
|
8804
|
+
#
|
|
8805
|
+
# * Current generation:
|
|
8806
|
+
#
|
|
8807
|
+
# **R6gd node types** (available only for Redis engine version 6.2
|
|
8808
|
+
# onward).
|
|
8809
|
+
#
|
|
8810
|
+
# `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
|
|
8811
|
+
# `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
|
|
8812
|
+
# `cache.r6gd.16xlarge`
|
|
8813
|
+
#
|
|
8649
8814
|
# * Memory optimized:
|
|
8650
8815
|
#
|
|
8651
8816
|
# * Current generation:
|
|
@@ -8661,6 +8826,10 @@ module Aws::ElastiCache
|
|
|
8661
8826
|
#
|
|
8662
8827
|
# </note>
|
|
8663
8828
|
#
|
|
8829
|
+
# <note markdown="1"> For region availability, see [Supported Node Types][1]
|
|
8830
|
+
#
|
|
8831
|
+
# </note>
|
|
8832
|
+
#
|
|
8664
8833
|
# **R5 node types:** `cache.r5.large`, `cache.r5.xlarge`,
|
|
8665
8834
|
# `cache.r5.2xlarge`, `cache.r5.4xlarge`, `cache.r5.12xlarge`,
|
|
8666
8835
|
# `cache.r5.24xlarge`
|
|
@@ -8776,7 +8945,10 @@ module Aws::ElastiCache
|
|
|
8776
8945
|
# @return [String]
|
|
8777
8946
|
#
|
|
8778
8947
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
8779
|
-
#
|
|
8948
|
+
# If you are running Redis engine version 6.0 or later, set this
|
|
8949
|
+
# parameter to yes if you want to opt-in to the next auto minor
|
|
8950
|
+
# version upgrade campaign. This parameter is disabled for previous
|
|
8951
|
+
# versions.
|
|
8780
8952
|
# @return [Boolean]
|
|
8781
8953
|
#
|
|
8782
8954
|
# @!attribute [rw] snapshot_retention_limit
|
|
@@ -8821,6 +8993,16 @@ module Aws::ElastiCache
|
|
|
8821
8993
|
# The ARN (Amazon Resource Name) of the snapshot.
|
|
8822
8994
|
# @return [String]
|
|
8823
8995
|
#
|
|
8996
|
+
# @!attribute [rw] data_tiering
|
|
8997
|
+
# Enables data tiering. Data tiering is only supported for replication
|
|
8998
|
+
# groups using the r6gd node type. This parameter must be set to true
|
|
8999
|
+
# when using r6gd nodes. For more information, see [Data tiering][1].
|
|
9000
|
+
#
|
|
9001
|
+
#
|
|
9002
|
+
#
|
|
9003
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
|
|
9004
|
+
# @return [String]
|
|
9005
|
+
#
|
|
8824
9006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
|
|
8825
9007
|
#
|
|
8826
9008
|
class Snapshot < Struct.new(
|
|
@@ -8850,7 +9032,8 @@ module Aws::ElastiCache
|
|
|
8850
9032
|
:automatic_failover,
|
|
8851
9033
|
:node_snapshots,
|
|
8852
9034
|
:kms_key_id,
|
|
8853
|
-
:arn
|
|
9035
|
+
:arn,
|
|
9036
|
+
:data_tiering)
|
|
8854
9037
|
SENSITIVE = []
|
|
8855
9038
|
include Aws::Structure
|
|
8856
9039
|
end
|
|
@@ -9319,6 +9502,10 @@ module Aws::ElastiCache
|
|
|
9319
9502
|
# The current supported value is Redis.
|
|
9320
9503
|
# @return [String]
|
|
9321
9504
|
#
|
|
9505
|
+
# @!attribute [rw] minimum_engine_version
|
|
9506
|
+
# The minimum engine version required, which is Redis 6.0
|
|
9507
|
+
# @return [String]
|
|
9508
|
+
#
|
|
9322
9509
|
# @!attribute [rw] access_string
|
|
9323
9510
|
# Access permissions string used for this user.
|
|
9324
9511
|
# @return [String]
|
|
@@ -9342,6 +9529,7 @@ module Aws::ElastiCache
|
|
|
9342
9529
|
:user_name,
|
|
9343
9530
|
:status,
|
|
9344
9531
|
:engine,
|
|
9532
|
+
:minimum_engine_version,
|
|
9345
9533
|
:access_string,
|
|
9346
9534
|
:user_group_ids,
|
|
9347
9535
|
:authentication,
|
|
@@ -9373,6 +9561,10 @@ module Aws::ElastiCache
|
|
|
9373
9561
|
# The list of user IDs that belong to the user group.
|
|
9374
9562
|
# @return [Array<String>]
|
|
9375
9563
|
#
|
|
9564
|
+
# @!attribute [rw] minimum_engine_version
|
|
9565
|
+
# The minimum engine version required, which is Redis 6.0
|
|
9566
|
+
# @return [String]
|
|
9567
|
+
#
|
|
9376
9568
|
# @!attribute [rw] pending_changes
|
|
9377
9569
|
# A list of updates being applied to the user group.
|
|
9378
9570
|
# @return [Types::UserGroupPendingChanges]
|
|
@@ -9392,6 +9584,7 @@ module Aws::ElastiCache
|
|
|
9392
9584
|
:status,
|
|
9393
9585
|
:engine,
|
|
9394
9586
|
:user_ids,
|
|
9587
|
+
:minimum_engine_version,
|
|
9395
9588
|
:pending_changes,
|
|
9396
9589
|
:replication_groups,
|
|
9397
9590
|
:arn)
|
data/lib/aws-sdk-elasticache.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-elasticache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.67.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.122.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.122.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|