aws-sdk-elasticache 1.64.0 → 1.68.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab92feef49657db83ce926da037fcbe5747903cb9bfa14c161cef4c4a5f47fba
4
- data.tar.gz: eddd88741847ac8f6d83f92044d3e46e675839ada7a86b4922a321b03a01c8cd
3
+ metadata.gz: 2c0fd04d72920c811e3296d5a13c0e08863e08ff2685e91adc504cfb2a595147
4
+ data.tar.gz: a1c037c2724ced7a2179c43a6ad4d9fc6f5f2405e498890c64a5a20c90f33b39
5
5
  SHA512:
6
- metadata.gz: 3999cb1c09d895ad321fec61053f553a9c9edb85583d67a7dfbf12048ddfde8f4d954e0816b50de9cea1f8a7e1a74b63cd8fb64abde33f6143528896e811970b
7
- data.tar.gz: 3ef387bbc8974f439f0b68da6c40a4dfbececc00e43efdc079596c07fe8e3ed02b5a40ace7c7c4a00ad33f024ad49140b1d654d3671f086b4f4dc51c3c2d8124
6
+ metadata.gz: e5cc150d3faa81e18df8b273098f175b8e346f82b75fc4b633cc9f69363bbc0db30f9693e125b1bd2689d7b6b4c64960a36d2d4f310c19aff0773cfddc31b0bd
7
+ data.tar.gz: c443fa7e3443898f987a84676f73704dda1779535377f7760cbadfe387b1f52f8d40faf61c513b6cefdd444fda5176f2ea9e06b42667014177bf16e520fc922c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.67.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.66.0 (2021-11-24)
15
+ ------------------
16
+
17
+ * Feature - Doc only update for ElastiCache
18
+
19
+ 1.65.0 (2021-11-23)
20
+ ------------------
21
+
22
+ * 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.
23
+
4
24
  1.64.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.68.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/query.rb'
32
33
 
@@ -73,6 +74,7 @@ module Aws::ElastiCache
73
74
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
75
  add_plugin(Aws::Plugins::TransferEncoding)
75
76
  add_plugin(Aws::Plugins::HttpChecksum)
77
+ add_plugin(Aws::Plugins::DefaultsMode)
76
78
  add_plugin(Aws::Plugins::SignatureV4)
77
79
  add_plugin(Aws::Plugins::Protocols::Query)
78
80
 
@@ -119,7 +121,9 @@ module Aws::ElastiCache
119
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
122
  # are very aggressive. Construct and pass an instance of
121
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
123
127
  #
124
128
  # @option options [required, String] :region
125
129
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +177,10 @@ module Aws::ElastiCache
173
177
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
178
  # a clock skew correction and retry requests with skewed client clocks.
175
179
  #
180
+ # @option options [String] :defaults_mode ("legacy")
181
+ # See {Aws::DefaultsModeConfiguration} for a list of the
182
+ # accepted modes and the configuration defaults that are included.
183
+ #
176
184
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
185
  # Set to true to disable SDK automatically adding host prefix
178
186
  # to default service endpoint when available.
@@ -295,7 +303,7 @@ module Aws::ElastiCache
295
303
  # seconds to wait when opening a HTTP session before raising a
296
304
  # `Timeout::Error`.
297
305
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
306
+ # @option options [Float] :http_read_timeout (60) The default
299
307
  # number of seconds to wait for response data. This value can
300
308
  # safely be set per-request on the session.
301
309
  #
@@ -311,6 +319,9 @@ module Aws::ElastiCache
311
319
  # disables this behaviour. This value can safely be set per
312
320
  # request on the session.
313
321
  #
322
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
323
+ # in seconds.
324
+ #
314
325
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
326
  # HTTP debug output will be sent to the `:logger`.
316
327
  #
@@ -699,6 +710,7 @@ module Aws::ElastiCache
699
710
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
700
711
  # resp.replication_group.log_delivery_configurations[0].message #=> String
701
712
  # resp.replication_group.replication_group_create_time #=> Time
713
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
702
714
  #
703
715
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
704
716
  #
@@ -926,6 +938,7 @@ module Aws::ElastiCache
926
938
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
927
939
  # resp.snapshot.kms_key_id #=> String
928
940
  # resp.snapshot.arn #=> String
941
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
929
942
  #
930
943
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshot AWS API Documentation
931
944
  #
@@ -1037,8 +1050,7 @@ module Aws::ElastiCache
1037
1050
  # * Current generation:
1038
1051
  #
1039
1052
  # **M6g node types** (available only for Redis engine version 5.0.6
1040
- # onward and for Memcached engine version 1.5.16 onward).
1041
- #
1053
+ # onward and for Memcached engine version 1.5.16 onward):
1042
1054
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
1043
1055
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
1044
1056
  # `cache.m6g.16xlarge`
@@ -1054,6 +1066,10 @@ module Aws::ElastiCache
1054
1066
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
1055
1067
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
1056
1068
  #
1069
+ # **T4g node types** (available only for Redis engine version 5.0.6
1070
+ # onward and Memcached engine version 1.5.16 onward):
1071
+ # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
1072
+ #
1057
1073
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
1058
1074
  # `cache.t3.medium`
1059
1075
  #
@@ -1076,6 +1092,16 @@ module Aws::ElastiCache
1076
1092
  #
1077
1093
  # **C1 node types:** `cache.c1.xlarge`
1078
1094
  #
1095
+ # * Memory optimized with data tiering:
1096
+ #
1097
+ # * Current generation:
1098
+ #
1099
+ # **R6gd node types** (available only for Redis engine version 6.2
1100
+ # onward).
1101
+ #
1102
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
1103
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
1104
+ #
1079
1105
  # * Memory optimized:
1080
1106
  #
1081
1107
  # * Current generation:
@@ -1219,7 +1245,9 @@ module Aws::ElastiCache
1219
1245
  # </note>
1220
1246
  #
1221
1247
  # @option params [Boolean] :auto_minor_version_upgrade
1222
- # This parameter is currently disabled.
1248
+ #  If you are running Redis engine version 6.0 or later, set this
1249
+ # parameter to yes if you want to opt-in to the next auto minor version
1250
+ # upgrade campaign. This parameter is disabled for previous versions. 
1223
1251
  #
1224
1252
  # @option params [Integer] :snapshot_retention_limit
1225
1253
  # The number of days for which ElastiCache retains automatic snapshots
@@ -1533,7 +1561,7 @@ module Aws::ElastiCache
1533
1561
  #
1534
1562
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
1535
1563
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
1536
- # \| `redis6.x` \|
1564
+ # \| `redis6.0` \| `redis6.2`
1537
1565
  #
1538
1566
  # @option params [required, String] :description
1539
1567
  # A user-specified description for the cache parameter group.
@@ -2033,8 +2061,7 @@ module Aws::ElastiCache
2033
2061
  # * Current generation:
2034
2062
  #
2035
2063
  # **M6g node types** (available only for Redis engine version 5.0.6
2036
- # onward and for Memcached engine version 1.5.16 onward).
2037
- #
2064
+ # onward and for Memcached engine version 1.5.16 onward):
2038
2065
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
2039
2066
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
2040
2067
  # `cache.m6g.16xlarge`
@@ -2050,6 +2077,10 @@ module Aws::ElastiCache
2050
2077
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
2051
2078
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
2052
2079
  #
2080
+ # **T4g node types** (available only for Redis engine version 5.0.6
2081
+ # onward and Memcached engine version 1.5.16 onward):
2082
+ # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
2083
+ #
2053
2084
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
2054
2085
  # `cache.t3.medium`
2055
2086
  #
@@ -2072,6 +2103,16 @@ module Aws::ElastiCache
2072
2103
  #
2073
2104
  # **C1 node types:** `cache.c1.xlarge`
2074
2105
  #
2106
+ # * Memory optimized with data tiering:
2107
+ #
2108
+ # * Current generation:
2109
+ #
2110
+ # **R6gd node types** (available only for Redis engine version 6.2
2111
+ # onward).
2112
+ #
2113
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
2114
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
2115
+ #
2075
2116
  # * Memory optimized:
2076
2117
  #
2077
2118
  # * Current generation:
@@ -2245,7 +2286,9 @@ module Aws::ElastiCache
2245
2286
  # </note>
2246
2287
  #
2247
2288
  # @option params [Boolean] :auto_minor_version_upgrade
2248
- # This parameter is currently disabled.
2289
+ #  If you are running Redis engine version 6.0 or later, set this
2290
+ # parameter to yes if you want to opt-in to the next auto minor version
2291
+ # upgrade campaign. This parameter is disabled for previous versions. 
2249
2292
  #
2250
2293
  # @option params [Integer] :snapshot_retention_limit
2251
2294
  # The number of days for which ElastiCache retains automatic snapshots
@@ -2337,6 +2380,15 @@ module Aws::ElastiCache
2337
2380
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
2338
2381
  # Specifies the destination, format and type of the logs.
2339
2382
  #
2383
+ # @option params [Boolean] :data_tiering_enabled
2384
+ # Enables data tiering. Data tiering is only supported for replication
2385
+ # groups using the r6gd node type. This parameter must be set to true
2386
+ # when using r6gd nodes. For more information, see [Data tiering][1].
2387
+ #
2388
+ #
2389
+ #
2390
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
2391
+ #
2340
2392
  # @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2341
2393
  #
2342
2394
  # * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -2498,6 +2550,7 @@ module Aws::ElastiCache
2498
2550
  # enabled: false,
2499
2551
  # },
2500
2552
  # ],
2553
+ # data_tiering_enabled: false,
2501
2554
  # })
2502
2555
  #
2503
2556
  # @example Response structure
@@ -2567,6 +2620,7 @@ module Aws::ElastiCache
2567
2620
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
2568
2621
  # resp.replication_group.log_delivery_configurations[0].message #=> String
2569
2622
  # resp.replication_group.replication_group_create_time #=> Time
2623
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
2570
2624
  #
2571
2625
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
2572
2626
  #
@@ -2791,6 +2845,7 @@ module Aws::ElastiCache
2791
2845
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
2792
2846
  # resp.snapshot.kms_key_id #=> String
2793
2847
  # resp.snapshot.arn #=> String
2848
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
2794
2849
  #
2795
2850
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshot AWS API Documentation
2796
2851
  #
@@ -2801,7 +2856,7 @@ module Aws::ElastiCache
2801
2856
  req.send_request(options)
2802
2857
  end
2803
2858
 
2804
- # For Redis engine version 6.x onwards: Creates a Redis user. For more
2859
+ # For Redis engine version 6.0 onwards: Creates a Redis user. For more
2805
2860
  # information, see [Using Role Based Access Control (RBAC)][1].
2806
2861
  #
2807
2862
  #
@@ -2838,6 +2893,7 @@ module Aws::ElastiCache
2838
2893
  # * {Types::User#user_name #user_name} => String
2839
2894
  # * {Types::User#status #status} => String
2840
2895
  # * {Types::User#engine #engine} => String
2896
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
2841
2897
  # * {Types::User#access_string #access_string} => String
2842
2898
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
2843
2899
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -2866,6 +2922,7 @@ module Aws::ElastiCache
2866
2922
  # resp.user_name #=> String
2867
2923
  # resp.status #=> String
2868
2924
  # resp.engine #=> String
2925
+ # resp.minimum_engine_version #=> String
2869
2926
  # resp.access_string #=> String
2870
2927
  # resp.user_group_ids #=> Array
2871
2928
  # resp.user_group_ids[0] #=> String
@@ -2882,7 +2939,7 @@ module Aws::ElastiCache
2882
2939
  req.send_request(options)
2883
2940
  end
2884
2941
 
2885
- # For Redis engine version 6.x onwards: Creates a Redis user group. For
2942
+ # For Redis engine version 6.0 onwards: Creates a Redis user group. For
2886
2943
  # more information, see [Using Role Based Access Control (RBAC)][1]
2887
2944
  #
2888
2945
  #
@@ -2909,6 +2966,7 @@ module Aws::ElastiCache
2909
2966
  # * {Types::UserGroup#status #status} => String
2910
2967
  # * {Types::UserGroup#engine #engine} => String
2911
2968
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
2969
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
2912
2970
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
2913
2971
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
2914
2972
  # * {Types::UserGroup#arn #arn} => String
@@ -2934,6 +2992,7 @@ module Aws::ElastiCache
2934
2992
  # resp.engine #=> String
2935
2993
  # resp.user_ids #=> Array
2936
2994
  # resp.user_ids[0] #=> String
2995
+ # resp.minimum_engine_version #=> String
2937
2996
  # resp.pending_changes.user_ids_to_remove #=> Array
2938
2997
  # resp.pending_changes.user_ids_to_remove[0] #=> String
2939
2998
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -3154,6 +3213,7 @@ module Aws::ElastiCache
3154
3213
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3155
3214
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3156
3215
  # resp.replication_group.replication_group_create_time #=> Time
3216
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3157
3217
  #
3158
3218
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3159
3219
  #
@@ -3642,6 +3702,7 @@ module Aws::ElastiCache
3642
3702
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3643
3703
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3644
3704
  # resp.replication_group.replication_group_create_time #=> Time
3705
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3645
3706
  #
3646
3707
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
3647
3708
  #
@@ -3758,6 +3819,7 @@ module Aws::ElastiCache
3758
3819
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
3759
3820
  # resp.snapshot.kms_key_id #=> String
3760
3821
  # resp.snapshot.arn #=> String
3822
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
3761
3823
  #
3762
3824
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshot AWS API Documentation
3763
3825
  #
@@ -3768,7 +3830,7 @@ module Aws::ElastiCache
3768
3830
  req.send_request(options)
3769
3831
  end
3770
3832
 
3771
- # For Redis engine version 6.x onwards: Deletes a user. The user will be
3833
+ # For Redis engine version 6.0 onwards: Deletes a user. The user will be
3772
3834
  # removed from all user groups and in turn removed from all replication
3773
3835
  # groups. For more information, see [Using Role Based Access Control
3774
3836
  # (RBAC)][1].
@@ -3786,6 +3848,7 @@ module Aws::ElastiCache
3786
3848
  # * {Types::User#user_name #user_name} => String
3787
3849
  # * {Types::User#status #status} => String
3788
3850
  # * {Types::User#engine #engine} => String
3851
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
3789
3852
  # * {Types::User#access_string #access_string} => String
3790
3853
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
3791
3854
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -3803,6 +3866,7 @@ module Aws::ElastiCache
3803
3866
  # resp.user_name #=> String
3804
3867
  # resp.status #=> String
3805
3868
  # resp.engine #=> String
3869
+ # resp.minimum_engine_version #=> String
3806
3870
  # resp.access_string #=> String
3807
3871
  # resp.user_group_ids #=> Array
3808
3872
  # resp.user_group_ids[0] #=> String
@@ -3819,7 +3883,7 @@ module Aws::ElastiCache
3819
3883
  req.send_request(options)
3820
3884
  end
3821
3885
 
3822
- # For Redis engine version 6.x onwards: Deletes a user group. The user
3886
+ # For Redis engine version 6.0 onwards: Deletes a user group. The user
3823
3887
  # group must first be disassociated from the replication group before it
3824
3888
  # can be deleted. For more information, see [Using Role Based Access
3825
3889
  # Control (RBAC)][1].
@@ -3837,6 +3901,7 @@ module Aws::ElastiCache
3837
3901
  # * {Types::UserGroup#status #status} => String
3838
3902
  # * {Types::UserGroup#engine #engine} => String
3839
3903
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
3904
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
3840
3905
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
3841
3906
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
3842
3907
  # * {Types::UserGroup#arn #arn} => String
@@ -3854,6 +3919,7 @@ module Aws::ElastiCache
3854
3919
  # resp.engine #=> String
3855
3920
  # resp.user_ids #=> Array
3856
3921
  # resp.user_ids[0] #=> String
3922
+ # resp.minimum_engine_version #=> String
3857
3923
  # resp.pending_changes.user_ids_to_remove #=> Array
3858
3924
  # resp.pending_changes.user_ids_to_remove[0] #=> String
3859
3925
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -4155,7 +4221,7 @@ module Aws::ElastiCache
4155
4221
  #
4156
4222
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
4157
4223
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
4158
- # \| `redis6.x` \|
4224
+ # \| `redis6.x` \| `redis6.2`
4159
4225
  #
4160
4226
  # Constraints:
4161
4227
  #
@@ -5138,7 +5204,7 @@ module Aws::ElastiCache
5138
5204
  #
5139
5205
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
5140
5206
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
5141
- # \| `redis6.x` \|
5207
+ # \| `redis6.x` \| `redis6.2`
5142
5208
  #
5143
5209
  # @option params [Integer] :max_records
5144
5210
  # The maximum number of records to include in the response. If more
@@ -6251,6 +6317,7 @@ module Aws::ElastiCache
6251
6317
  # resp.replication_groups[0].log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
6252
6318
  # resp.replication_groups[0].log_delivery_configurations[0].message #=> String
6253
6319
  # resp.replication_groups[0].replication_group_create_time #=> Time
6320
+ # resp.replication_groups[0].data_tiering #=> String, one of "enabled", "disabled"
6254
6321
  #
6255
6322
  #
6256
6323
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -6291,9 +6358,8 @@ module Aws::ElastiCache
6291
6358
  #
6292
6359
  # * Current generation:
6293
6360
  #
6294
- # **M6g node types** (available only for Redis engine version 5.0.6
6295
- # onward and for Memcached engine version 1.5.16 onward).
6296
- #
6361
+ # **M6g node types:** (available only for Redis engine version 5.0.6
6362
+ # onward and for Memcached engine version 1.5.16 onward):
6297
6363
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
6298
6364
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
6299
6365
  # `cache.m6g.16xlarge`
@@ -6309,6 +6375,10 @@ module Aws::ElastiCache
6309
6375
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
6310
6376
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6311
6377
  #
6378
+ # **T4g node types** (available only for Redis engine version 5.0.6
6379
+ # onward and for Memcached engine version 1.5.16 onward):
6380
+ # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6381
+ #
6312
6382
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
6313
6383
  # `cache.t3.medium`
6314
6384
  #
@@ -6331,6 +6401,16 @@ module Aws::ElastiCache
6331
6401
  #
6332
6402
  # **C1 node types:** `cache.c1.xlarge`
6333
6403
  #
6404
+ # * Memory optimized with data tiering:
6405
+ #
6406
+ # * Current generation:
6407
+ #
6408
+ # **R6gd node types** (available only for Redis engine version 6.2
6409
+ # onward).
6410
+ #
6411
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
6412
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
6413
+ #
6334
6414
  # * Memory optimized:
6335
6415
  #
6336
6416
  # * Current generation:
@@ -6494,9 +6574,8 @@ module Aws::ElastiCache
6494
6574
  #
6495
6575
  # * Current generation:
6496
6576
  #
6497
- # **M6g node types** (available only for Redis engine version 5.0.6
6498
- # onward and for Memcached engine version 1.5.16 onward).
6499
- #
6577
+ # **M6g node types:** (available only for Redis engine version 5.0.6
6578
+ # onward and for Memcached engine version 1.5.16 onward)
6500
6579
  # `cache.m6g.large`, `cache.m6g.xlarge`, `cache.m6g.2xlarge`,
6501
6580
  # `cache.m6g.4xlarge`, `cache.m6g.8xlarge`, `cache.m6g.12xlarge`,
6502
6581
  # `cache.m6g.16xlarge`
@@ -6512,6 +6591,10 @@ module Aws::ElastiCache
6512
6591
  # **M4 node types:** `cache.m4.large`, `cache.m4.xlarge`,
6513
6592
  # `cache.m4.2xlarge`, `cache.m4.4xlarge`, `cache.m4.10xlarge`
6514
6593
  #
6594
+ # **T4g node types** (available only for Redis engine version 5.0.6
6595
+ # onward and for Memcached engine version 1.5.16 onward):
6596
+ # `cache.t4g.micro`, `cache.t4g.small`, `cache.t4g.medium`
6597
+ #
6515
6598
  # **T3 node types:** `cache.t3.micro`, `cache.t3.small`,
6516
6599
  # `cache.t3.medium`
6517
6600
  #
@@ -6534,6 +6617,16 @@ module Aws::ElastiCache
6534
6617
  #
6535
6618
  # **C1 node types:** `cache.c1.xlarge`
6536
6619
  #
6620
+ # * Memory optimized with data tiering:
6621
+ #
6622
+ # * Current generation:
6623
+ #
6624
+ # **R6gd node types** (available only for Redis engine version 6.2
6625
+ # onward).
6626
+ #
6627
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
6628
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
6629
+ #
6537
6630
  # * Memory optimized:
6538
6631
  #
6539
6632
  # * Current generation:
@@ -7195,6 +7288,7 @@ module Aws::ElastiCache
7195
7288
  # resp.snapshots[0].node_snapshots[0].snapshot_create_time #=> Time
7196
7289
  # resp.snapshots[0].kms_key_id #=> String
7197
7290
  # resp.snapshots[0].arn #=> String
7291
+ # resp.snapshots[0].data_tiering #=> String, one of "enabled", "disabled"
7198
7292
  #
7199
7293
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeSnapshots AWS API Documentation
7200
7294
  #
@@ -7357,6 +7451,7 @@ module Aws::ElastiCache
7357
7451
  # resp.user_groups[0].engine #=> String
7358
7452
  # resp.user_groups[0].user_ids #=> Array
7359
7453
  # resp.user_groups[0].user_ids[0] #=> String
7454
+ # resp.user_groups[0].minimum_engine_version #=> String
7360
7455
  # resp.user_groups[0].pending_changes.user_ids_to_remove #=> Array
7361
7456
  # resp.user_groups[0].pending_changes.user_ids_to_remove[0] #=> String
7362
7457
  # resp.user_groups[0].pending_changes.user_ids_to_add #=> Array
@@ -7427,6 +7522,7 @@ module Aws::ElastiCache
7427
7522
  # resp.users[0].user_name #=> String
7428
7523
  # resp.users[0].status #=> String
7429
7524
  # resp.users[0].engine #=> String
7525
+ # resp.users[0].minimum_engine_version #=> String
7430
7526
  # resp.users[0].access_string #=> String
7431
7527
  # resp.users[0].user_group_ids #=> Array
7432
7528
  # resp.users[0].user_group_ids[0] #=> String
@@ -7748,6 +7844,7 @@ module Aws::ElastiCache
7748
7844
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
7749
7845
  # resp.replication_group.log_delivery_configurations[0].message #=> String
7750
7846
  # resp.replication_group.replication_group_create_time #=> Time
7847
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
7751
7848
  #
7752
7849
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
7753
7850
  #
@@ -8179,7 +8276,9 @@ module Aws::ElastiCache
8179
8276
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
8180
8277
  #
8181
8278
  # @option params [Boolean] :auto_minor_version_upgrade
8182
- # This parameter is currently disabled.
8279
+ #  If you are running Redis engine version 6.0 or later, set this
8280
+ # parameter to yes if you want to opt-in to the next auto minor version
8281
+ # upgrade campaign. This parameter is disabled for previous versions. 
8183
8282
  #
8184
8283
  # @option params [Integer] :snapshot_retention_limit
8185
8284
  # The number of days for which ElastiCache retains automatic cluster
@@ -8785,7 +8884,9 @@ module Aws::ElastiCache
8785
8884
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
8786
8885
  #
8787
8886
  # @option params [Boolean] :auto_minor_version_upgrade
8788
- # This parameter is currently disabled.
8887
+ #  If you are running Redis engine version 6.0 or later, set this
8888
+ # parameter to yes if you want to opt-in to the next auto minor version
8889
+ # upgrade campaign. This parameter is disabled for previous versions. 
8789
8890
  #
8790
8891
  # @option params [Integer] :snapshot_retention_limit
8791
8892
  # The number of days for which ElastiCache retains automatic node group
@@ -9045,6 +9146,7 @@ module Aws::ElastiCache
9045
9146
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9046
9147
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9047
9148
  # resp.replication_group.replication_group_create_time #=> Time
9149
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9048
9150
  #
9049
9151
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
9050
9152
  #
@@ -9188,6 +9290,7 @@ module Aws::ElastiCache
9188
9290
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9189
9291
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9190
9292
  # resp.replication_group.replication_group_create_time #=> Time
9293
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9191
9294
  #
9192
9295
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
9193
9296
  #
@@ -9221,6 +9324,7 @@ module Aws::ElastiCache
9221
9324
  # * {Types::User#user_name #user_name} => String
9222
9325
  # * {Types::User#status #status} => String
9223
9326
  # * {Types::User#engine #engine} => String
9327
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
9224
9328
  # * {Types::User#access_string #access_string} => String
9225
9329
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
9226
9330
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -9242,6 +9346,7 @@ module Aws::ElastiCache
9242
9346
  # resp.user_name #=> String
9243
9347
  # resp.status #=> String
9244
9348
  # resp.engine #=> String
9349
+ # resp.minimum_engine_version #=> String
9245
9350
  # resp.access_string #=> String
9246
9351
  # resp.user_group_ids #=> Array
9247
9352
  # resp.user_group_ids[0] #=> String
@@ -9275,6 +9380,7 @@ module Aws::ElastiCache
9275
9380
  # * {Types::UserGroup#status #status} => String
9276
9381
  # * {Types::UserGroup#engine #engine} => String
9277
9382
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
9383
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
9278
9384
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
9279
9385
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
9280
9386
  # * {Types::UserGroup#arn #arn} => String
@@ -9294,6 +9400,7 @@ module Aws::ElastiCache
9294
9400
  # resp.engine #=> String
9295
9401
  # resp.user_ids #=> Array
9296
9402
  # resp.user_ids[0] #=> String
9403
+ # resp.minimum_engine_version #=> String
9297
9404
  # resp.pending_changes.user_ids_to_remove #=> Array
9298
9405
  # resp.pending_changes.user_ids_to_remove[0] #=> String
9299
9406
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -9932,6 +10039,7 @@ module Aws::ElastiCache
9932
10039
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9933
10040
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9934
10041
  # resp.replication_group.replication_group_create_time #=> Time
10042
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9935
10043
  #
9936
10044
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
9937
10045
  #
@@ -9946,6 +10054,12 @@ module Aws::ElastiCache
9946
10054
  # automatic failover on a specified node group (called shard in the
9947
10055
  # console) in a replication group (called cluster in the console).
9948
10056
  #
10057
+ # This API is designed for testing the behavior of your application in
10058
+ # case of ElastiCache failover. It is not designed to be an operational
10059
+ # tool for initiating a failover to overcome a problem you may have with
10060
+ # the cluster. Moreover, in certain conditions such as large-scale
10061
+ # operational events, Amazon may block this API.
10062
+ #
9949
10063
  # **Note the following**
9950
10064
  #
9951
10065
  # * A customer can use this operation to test automatic failover on up
@@ -10083,6 +10197,7 @@ module Aws::ElastiCache
10083
10197
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
10084
10198
  # resp.replication_group.log_delivery_configurations[0].message #=> String
10085
10199
  # resp.replication_group.replication_group_create_time #=> Time
10200
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
10086
10201
  #
10087
10202
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
10088
10203
  #
@@ -10106,7 +10221,7 @@ module Aws::ElastiCache
10106
10221
  params: params,
10107
10222
  config: config)
10108
10223
  context[:gem_name] = 'aws-sdk-elasticache'
10109
- context[:gem_version] = '1.64.0'
10224
+ context[:gem_version] = '1.68.0'
10110
10225
  Seahorse::Client::Request.new(handlers, context)
10111
10226
  end
10112
10227