aws-sdk-elasticache 1.61.0 → 1.65.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d34d86f76070b1a16d8ac76852906c63267b8378e5fde75d1b1cd3001354c4c4
4
- data.tar.gz: 7a41f07ed6836fc39cf40f86baa69570f358d005e6a63044f8c4b7b3fc7a40a4
3
+ metadata.gz: 682f3071ce486e082552e911f83772f5adc9e1cd72e55f5291bf440159db946f
4
+ data.tar.gz: da302664a816da62bfff0385f452309cbc93ae2b4149758370985f3a89104565
5
5
  SHA512:
6
- metadata.gz: e42a4cabaf76c319ab385081f2b62becc88e55712a0d56d3870481fae70b57e006ff67275ad36f8531158524c246d7ed5e79758b57559a4c556f5327c25b4e6a
7
- data.tar.gz: 3959ffa04eb1352bf1d31d07a904f0dea4b7b162a22615521e899c6acf0f6de667b573bf9bc9ede95d21231ad8be349aeec55a9bd6068d17080eb55afe5c9c7f
6
+ metadata.gz: c6c071b1da7dc1bf1064115a689ad404c8345a332feca1c3edc9bd32aa4c8e94855bbfbc61cef46b3c4e3ded749dc28067fea13338d5704af0fda63d59e094b1
7
+ data.tar.gz: 6caca196641ddc567e0205402873b70a91e0cd7d4cc6a28765452821765f01ec3c88bde9667349aa6ce53103535270993672b6ba0013b05c6ac698aa891e4e9e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2021-11-23)
5
+ ------------------
6
+
7
+ * 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.
8
+
9
+ 1.64.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.63.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.62.0 (2021-09-07)
20
+ ------------------
21
+
22
+ * Feature - Doc only update for ElastiCache
23
+
4
24
  1.61.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.65.0
@@ -275,6 +275,15 @@ module Aws::ElastiCache
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -690,6 +699,7 @@ module Aws::ElastiCache
690
699
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
691
700
  # resp.replication_group.log_delivery_configurations[0].message #=> String
692
701
  # resp.replication_group.replication_group_create_time #=> Time
702
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
693
703
  #
694
704
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
695
705
  #
@@ -917,6 +927,7 @@ module Aws::ElastiCache
917
927
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
918
928
  # resp.snapshot.kms_key_id #=> String
919
929
  # resp.snapshot.arn #=> String
930
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
920
931
  #
921
932
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshot AWS API Documentation
922
933
  #
@@ -1071,6 +1082,12 @@ module Aws::ElastiCache
1071
1082
  #
1072
1083
  # * Current generation:
1073
1084
  #
1085
+ # **R6gd node types** (available only for Redis engine version 6.2
1086
+ # onward).
1087
+ #
1088
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
1089
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
1090
+ #
1074
1091
  # **R6g node types** (available only for Redis engine version 5.0.6
1075
1092
  # onward and for Memcached engine version 1.5.16 onward).
1076
1093
  #
@@ -1210,7 +1227,9 @@ module Aws::ElastiCache
1210
1227
  # </note>
1211
1228
  #
1212
1229
  # @option params [Boolean] :auto_minor_version_upgrade
1213
- # This parameter is currently disabled.
1230
+ #  If you are running Redis engine version 6.0 or later, set this
1231
+ # parameter to yes if you want to opt-in to the next minor version
1232
+ # upgrade campaign. This parameter is disabled for previous versions. 
1214
1233
  #
1215
1234
  # @option params [Integer] :snapshot_retention_limit
1216
1235
  # The number of days for which ElastiCache retains automatic snapshots
@@ -1524,7 +1543,7 @@ module Aws::ElastiCache
1524
1543
  #
1525
1544
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
1526
1545
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
1527
- # \| `redis6.x` \|
1546
+ # \| `redis6.0` \| `redis6.2`
1528
1547
  #
1529
1548
  # @option params [required, String] :description
1530
1549
  # A user-specified description for the cache parameter group.
@@ -2067,6 +2086,12 @@ module Aws::ElastiCache
2067
2086
  #
2068
2087
  # * Current generation:
2069
2088
  #
2089
+ # **R6gd node types** (available only for Redis engine version 6.2
2090
+ # onward).
2091
+ #
2092
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
2093
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
2094
+ #
2070
2095
  # **R6g node types** (available only for Redis engine version 5.0.6
2071
2096
  # onward and for Memcached engine version 1.5.16 onward).
2072
2097
  #
@@ -2236,7 +2261,9 @@ module Aws::ElastiCache
2236
2261
  # </note>
2237
2262
  #
2238
2263
  # @option params [Boolean] :auto_minor_version_upgrade
2239
- # This parameter is currently disabled.
2264
+ #  If you are running Redis engine version 6.0 or later, set this
2265
+ # parameter to yes if you want to opt-in to the next minor version
2266
+ # upgrade campaign. This parameter is disabled for previous versions. 
2240
2267
  #
2241
2268
  # @option params [Integer] :snapshot_retention_limit
2242
2269
  # The number of days for which ElastiCache retains automatic snapshots
@@ -2328,6 +2355,15 @@ module Aws::ElastiCache
2328
2355
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
2329
2356
  # Specifies the destination, format and type of the logs.
2330
2357
  #
2358
+ # @option params [Boolean] :data_tiering_enabled
2359
+ # Enables data tiering. Data tiering is only supported for replication
2360
+ # groups using the r6gd node type. This parameter must be set to true
2361
+ # when using r6gd nodes. For more information, see [Data tiering][1].
2362
+ #
2363
+ #
2364
+ #
2365
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
2366
+ #
2331
2367
  # @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2332
2368
  #
2333
2369
  # * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -2489,6 +2525,7 @@ module Aws::ElastiCache
2489
2525
  # enabled: false,
2490
2526
  # },
2491
2527
  # ],
2528
+ # data_tiering_enabled: false,
2492
2529
  # })
2493
2530
  #
2494
2531
  # @example Response structure
@@ -2558,6 +2595,7 @@ module Aws::ElastiCache
2558
2595
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
2559
2596
  # resp.replication_group.log_delivery_configurations[0].message #=> String
2560
2597
  # resp.replication_group.replication_group_create_time #=> Time
2598
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
2561
2599
  #
2562
2600
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
2563
2601
  #
@@ -2782,6 +2820,7 @@ module Aws::ElastiCache
2782
2820
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
2783
2821
  # resp.snapshot.kms_key_id #=> String
2784
2822
  # resp.snapshot.arn #=> String
2823
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
2785
2824
  #
2786
2825
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshot AWS API Documentation
2787
2826
  #
@@ -2792,7 +2831,7 @@ module Aws::ElastiCache
2792
2831
  req.send_request(options)
2793
2832
  end
2794
2833
 
2795
- # For Redis engine version 6.x onwards: Creates a Redis user. For more
2834
+ # For Redis engine version 6.0 onwards: Creates a Redis user. For more
2796
2835
  # information, see [Using Role Based Access Control (RBAC)][1].
2797
2836
  #
2798
2837
  #
@@ -2829,6 +2868,7 @@ module Aws::ElastiCache
2829
2868
  # * {Types::User#user_name #user_name} => String
2830
2869
  # * {Types::User#status #status} => String
2831
2870
  # * {Types::User#engine #engine} => String
2871
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
2832
2872
  # * {Types::User#access_string #access_string} => String
2833
2873
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
2834
2874
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -2857,6 +2897,7 @@ module Aws::ElastiCache
2857
2897
  # resp.user_name #=> String
2858
2898
  # resp.status #=> String
2859
2899
  # resp.engine #=> String
2900
+ # resp.minimum_engine_version #=> String
2860
2901
  # resp.access_string #=> String
2861
2902
  # resp.user_group_ids #=> Array
2862
2903
  # resp.user_group_ids[0] #=> String
@@ -2873,7 +2914,7 @@ module Aws::ElastiCache
2873
2914
  req.send_request(options)
2874
2915
  end
2875
2916
 
2876
- # For Redis engine version 6.x onwards: Creates a Redis user group. For
2917
+ # For Redis engine version 6.0 onwards: Creates a Redis user group. For
2877
2918
  # more information, see [Using Role Based Access Control (RBAC)][1]
2878
2919
  #
2879
2920
  #
@@ -2900,6 +2941,7 @@ module Aws::ElastiCache
2900
2941
  # * {Types::UserGroup#status #status} => String
2901
2942
  # * {Types::UserGroup#engine #engine} => String
2902
2943
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
2944
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
2903
2945
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
2904
2946
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
2905
2947
  # * {Types::UserGroup#arn #arn} => String
@@ -2925,6 +2967,7 @@ module Aws::ElastiCache
2925
2967
  # resp.engine #=> String
2926
2968
  # resp.user_ids #=> Array
2927
2969
  # resp.user_ids[0] #=> String
2970
+ # resp.minimum_engine_version #=> String
2928
2971
  # resp.pending_changes.user_ids_to_remove #=> Array
2929
2972
  # resp.pending_changes.user_ids_to_remove[0] #=> String
2930
2973
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -3145,6 +3188,7 @@ module Aws::ElastiCache
3145
3188
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3146
3189
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3147
3190
  # resp.replication_group.replication_group_create_time #=> Time
3191
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3148
3192
  #
3149
3193
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3150
3194
  #
@@ -3633,6 +3677,7 @@ module Aws::ElastiCache
3633
3677
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3634
3678
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3635
3679
  # resp.replication_group.replication_group_create_time #=> Time
3680
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3636
3681
  #
3637
3682
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
3638
3683
  #
@@ -3749,6 +3794,7 @@ module Aws::ElastiCache
3749
3794
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
3750
3795
  # resp.snapshot.kms_key_id #=> String
3751
3796
  # resp.snapshot.arn #=> String
3797
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
3752
3798
  #
3753
3799
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshot AWS API Documentation
3754
3800
  #
@@ -3759,7 +3805,7 @@ module Aws::ElastiCache
3759
3805
  req.send_request(options)
3760
3806
  end
3761
3807
 
3762
- # For Redis engine version 6.x onwards: Deletes a user. The user will be
3808
+ # For Redis engine version 6.0 onwards: Deletes a user. The user will be
3763
3809
  # removed from all user groups and in turn removed from all replication
3764
3810
  # groups. For more information, see [Using Role Based Access Control
3765
3811
  # (RBAC)][1].
@@ -3777,6 +3823,7 @@ module Aws::ElastiCache
3777
3823
  # * {Types::User#user_name #user_name} => String
3778
3824
  # * {Types::User#status #status} => String
3779
3825
  # * {Types::User#engine #engine} => String
3826
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
3780
3827
  # * {Types::User#access_string #access_string} => String
3781
3828
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
3782
3829
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -3794,6 +3841,7 @@ module Aws::ElastiCache
3794
3841
  # resp.user_name #=> String
3795
3842
  # resp.status #=> String
3796
3843
  # resp.engine #=> String
3844
+ # resp.minimum_engine_version #=> String
3797
3845
  # resp.access_string #=> String
3798
3846
  # resp.user_group_ids #=> Array
3799
3847
  # resp.user_group_ids[0] #=> String
@@ -3810,7 +3858,7 @@ module Aws::ElastiCache
3810
3858
  req.send_request(options)
3811
3859
  end
3812
3860
 
3813
- # For Redis engine version 6.x onwards: Deletes a user group. The user
3861
+ # For Redis engine version 6.0 onwards: Deletes a user group. The user
3814
3862
  # group must first be disassociated from the replication group before it
3815
3863
  # can be deleted. For more information, see [Using Role Based Access
3816
3864
  # Control (RBAC)][1].
@@ -3828,6 +3876,7 @@ module Aws::ElastiCache
3828
3876
  # * {Types::UserGroup#status #status} => String
3829
3877
  # * {Types::UserGroup#engine #engine} => String
3830
3878
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
3879
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
3831
3880
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
3832
3881
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
3833
3882
  # * {Types::UserGroup#arn #arn} => String
@@ -3845,6 +3894,7 @@ module Aws::ElastiCache
3845
3894
  # resp.engine #=> String
3846
3895
  # resp.user_ids #=> Array
3847
3896
  # resp.user_ids[0] #=> String
3897
+ # resp.minimum_engine_version #=> String
3848
3898
  # resp.pending_changes.user_ids_to_remove #=> Array
3849
3899
  # resp.pending_changes.user_ids_to_remove[0] #=> String
3850
3900
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -4146,7 +4196,7 @@ module Aws::ElastiCache
4146
4196
  #
4147
4197
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
4148
4198
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
4149
- # \| `redis6.x` \|
4199
+ # \| `redis6.x` \| `redis6.2`
4150
4200
  #
4151
4201
  # Constraints:
4152
4202
  #
@@ -5129,7 +5179,7 @@ module Aws::ElastiCache
5129
5179
  #
5130
5180
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
5131
5181
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
5132
- # \| `redis6.x` \|
5182
+ # \| `redis6.x` \| `redis6.2`
5133
5183
  #
5134
5184
  # @option params [Integer] :max_records
5135
5185
  # The maximum number of records to include in the response. If more
@@ -6242,6 +6292,7 @@ module Aws::ElastiCache
6242
6292
  # resp.replication_groups[0].log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
6243
6293
  # resp.replication_groups[0].log_delivery_configurations[0].message #=> String
6244
6294
  # resp.replication_groups[0].replication_group_create_time #=> Time
6295
+ # resp.replication_groups[0].data_tiering #=> String, one of "enabled", "disabled"
6245
6296
  #
6246
6297
  #
6247
6298
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -6326,6 +6377,12 @@ module Aws::ElastiCache
6326
6377
  #
6327
6378
  # * Current generation:
6328
6379
  #
6380
+ # **R6gd node types** (available only for Redis engine version 6.2
6381
+ # onward).
6382
+ #
6383
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
6384
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
6385
+ #
6329
6386
  # **R6g node types** (available only for Redis engine version 5.0.6
6330
6387
  # onward and for Memcached engine version 1.5.16 onward).
6331
6388
  #
@@ -6529,6 +6586,12 @@ module Aws::ElastiCache
6529
6586
  #
6530
6587
  # * Current generation:
6531
6588
  #
6589
+ # **R6gd node types** (available only for Redis engine version 6.2
6590
+ # onward).
6591
+ #
6592
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
6593
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
6594
+ #
6532
6595
  # **R6g node types** (available only for Redis engine version 5.0.6
6533
6596
  # onward and for Memcached engine version 1.5.16 onward).
6534
6597
  #
@@ -7186,6 +7249,7 @@ module Aws::ElastiCache
7186
7249
  # resp.snapshots[0].node_snapshots[0].snapshot_create_time #=> Time
7187
7250
  # resp.snapshots[0].kms_key_id #=> String
7188
7251
  # resp.snapshots[0].arn #=> String
7252
+ # resp.snapshots[0].data_tiering #=> String, one of "enabled", "disabled"
7189
7253
  #
7190
7254
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeSnapshots AWS API Documentation
7191
7255
  #
@@ -7348,6 +7412,7 @@ module Aws::ElastiCache
7348
7412
  # resp.user_groups[0].engine #=> String
7349
7413
  # resp.user_groups[0].user_ids #=> Array
7350
7414
  # resp.user_groups[0].user_ids[0] #=> String
7415
+ # resp.user_groups[0].minimum_engine_version #=> String
7351
7416
  # resp.user_groups[0].pending_changes.user_ids_to_remove #=> Array
7352
7417
  # resp.user_groups[0].pending_changes.user_ids_to_remove[0] #=> String
7353
7418
  # resp.user_groups[0].pending_changes.user_ids_to_add #=> Array
@@ -7418,6 +7483,7 @@ module Aws::ElastiCache
7418
7483
  # resp.users[0].user_name #=> String
7419
7484
  # resp.users[0].status #=> String
7420
7485
  # resp.users[0].engine #=> String
7486
+ # resp.users[0].minimum_engine_version #=> String
7421
7487
  # resp.users[0].access_string #=> String
7422
7488
  # resp.users[0].user_group_ids #=> Array
7423
7489
  # resp.users[0].user_group_ids[0] #=> String
@@ -7739,6 +7805,7 @@ module Aws::ElastiCache
7739
7805
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
7740
7806
  # resp.replication_group.log_delivery_configurations[0].message #=> String
7741
7807
  # resp.replication_group.replication_group_create_time #=> Time
7808
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
7742
7809
  #
7743
7810
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
7744
7811
  #
@@ -8170,7 +8237,9 @@ module Aws::ElastiCache
8170
8237
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
8171
8238
  #
8172
8239
  # @option params [Boolean] :auto_minor_version_upgrade
8173
- # This parameter is currently disabled.
8240
+ #  If you are running Redis engine version 6.0 or later, set this
8241
+ # parameter to yes if you want to opt-in to the next minor version
8242
+ # upgrade campaign. This parameter is disabled for previous versions. 
8174
8243
  #
8175
8244
  # @option params [Integer] :snapshot_retention_limit
8176
8245
  # The number of days for which ElastiCache retains automatic cluster
@@ -8776,7 +8845,9 @@ module Aws::ElastiCache
8776
8845
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
8777
8846
  #
8778
8847
  # @option params [Boolean] :auto_minor_version_upgrade
8779
- # This parameter is currently disabled.
8848
+ #  If you are running Redis engine version 6.0 or later, set this
8849
+ # parameter to yes if you want to opt-in to the next minor version
8850
+ # upgrade campaign. This parameter is disabled for previous versions. 
8780
8851
  #
8781
8852
  # @option params [Integer] :snapshot_retention_limit
8782
8853
  # The number of days for which ElastiCache retains automatic node group
@@ -8835,14 +8906,16 @@ module Aws::ElastiCache
8835
8906
  # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
8836
8907
  #
8837
8908
  # @option params [Array<String>] :user_group_ids_to_add
8838
- # The user group you are associating with the replication group.
8909
+ # The ID of the user group you are associating with the replication
8910
+ # group.
8839
8911
  #
8840
8912
  # @option params [Array<String>] :user_group_ids_to_remove
8841
- # The user group to remove, meaning the users in the group no longer can
8842
- # access the replication group.
8913
+ # The ID of the user group to disassociate from the replication group,
8914
+ # meaning the users in the group no longer can access the replication
8915
+ # group.
8843
8916
  #
8844
8917
  # @option params [Boolean] :remove_user_groups
8845
- # Removes the user groups that can access this replication group.
8918
+ # Removes the user group associated with this replication group.
8846
8919
  #
8847
8920
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
8848
8921
  # Specifies the destination, format and type of the logs.
@@ -9034,6 +9107,7 @@ module Aws::ElastiCache
9034
9107
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9035
9108
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9036
9109
  # resp.replication_group.replication_group_create_time #=> Time
9110
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9037
9111
  #
9038
9112
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
9039
9113
  #
@@ -9177,6 +9251,7 @@ module Aws::ElastiCache
9177
9251
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9178
9252
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9179
9253
  # resp.replication_group.replication_group_create_time #=> Time
9254
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9180
9255
  #
9181
9256
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
9182
9257
  #
@@ -9210,6 +9285,7 @@ module Aws::ElastiCache
9210
9285
  # * {Types::User#user_name #user_name} => String
9211
9286
  # * {Types::User#status #status} => String
9212
9287
  # * {Types::User#engine #engine} => String
9288
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
9213
9289
  # * {Types::User#access_string #access_string} => String
9214
9290
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
9215
9291
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -9231,6 +9307,7 @@ module Aws::ElastiCache
9231
9307
  # resp.user_name #=> String
9232
9308
  # resp.status #=> String
9233
9309
  # resp.engine #=> String
9310
+ # resp.minimum_engine_version #=> String
9234
9311
  # resp.access_string #=> String
9235
9312
  # resp.user_group_ids #=> Array
9236
9313
  # resp.user_group_ids[0] #=> String
@@ -9264,6 +9341,7 @@ module Aws::ElastiCache
9264
9341
  # * {Types::UserGroup#status #status} => String
9265
9342
  # * {Types::UserGroup#engine #engine} => String
9266
9343
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
9344
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
9267
9345
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
9268
9346
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
9269
9347
  # * {Types::UserGroup#arn #arn} => String
@@ -9283,6 +9361,7 @@ module Aws::ElastiCache
9283
9361
  # resp.engine #=> String
9284
9362
  # resp.user_ids #=> Array
9285
9363
  # resp.user_ids[0] #=> String
9364
+ # resp.minimum_engine_version #=> String
9286
9365
  # resp.pending_changes.user_ids_to_remove #=> Array
9287
9366
  # resp.pending_changes.user_ids_to_remove[0] #=> String
9288
9367
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -9921,6 +10000,7 @@ module Aws::ElastiCache
9921
10000
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9922
10001
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9923
10002
  # resp.replication_group.replication_group_create_time #=> Time
10003
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9924
10004
  #
9925
10005
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
9926
10006
  #
@@ -9935,6 +10015,12 @@ module Aws::ElastiCache
9935
10015
  # automatic failover on a specified node group (called shard in the
9936
10016
  # console) in a replication group (called cluster in the console).
9937
10017
  #
10018
+ # This API is designed for testing the behavior of your application in
10019
+ # case of ElastiCache failover. It is not designed to be an operational
10020
+ # tool for initiating a failover to overcome a problem you may have with
10021
+ # the cluster. Moreover, in certain conditions such as large-scale
10022
+ # operational events, Amazon may block this API.
10023
+ #
9938
10024
  # **Note the following**
9939
10025
  #
9940
10026
  # * A customer can use this operation to test automatic failover on up
@@ -10072,6 +10158,7 @@ module Aws::ElastiCache
10072
10158
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
10073
10159
  # resp.replication_group.log_delivery_configurations[0].message #=> String
10074
10160
  # resp.replication_group.replication_group_create_time #=> Time
10161
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
10075
10162
  #
10076
10163
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
10077
10164
  #
@@ -10095,7 +10182,7 @@ module Aws::ElastiCache
10095
10182
  params: params,
10096
10183
  config: config)
10097
10184
  context[:gem_name] = 'aws-sdk-elasticache'
10098
- context[:gem_version] = '1.61.0'
10185
+ context[:gem_version] = '1.65.0'
10099
10186
  Seahorse::Client::Request.new(handlers, context)
10100
10187
  end
10101
10188
 
@@ -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)
@@ -331,6 +331,13 @@ module Aws::ElastiCache
331
331
  #
332
332
  # * Current generation:
333
333
  #
334
+ # **R6gd node types** (available only for Redis engine version 6.2
335
+ # onward).
336
+ #
337
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
338
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
339
+ # `cache.r6gd.16xlarge`
340
+ #
334
341
  # **R6g node types** (available only for Redis engine version
335
342
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
336
343
  #
@@ -468,7 +475,9 @@ module Aws::ElastiCache
468
475
  # @return [Array<Types::CacheNode>]
469
476
  #
470
477
  # @!attribute [rw] auto_minor_version_upgrade
471
- # This parameter is currently disabled.
478
+ #  If you are running Redis engine version 6.0 or later, set this
479
+ # parameter to yes if you want to opt-in to the next minor version
480
+ # upgrade campaign. This parameter is disabled for previous versions. 
472
481
  # @return [Boolean]
473
482
  #
474
483
  # @!attribute [rw] security_groups
@@ -634,7 +643,7 @@ module Aws::ElastiCache
634
643
  #
635
644
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
636
645
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
637
- # `redis5.0` \| `redis6.x` \|
646
+ # `redis5.0` \| `redis6.0` \| `redis6.2`
638
647
  # @return [String]
639
648
  #
640
649
  # @!attribute [rw] cache_engine_description
@@ -734,6 +743,12 @@ module Aws::ElastiCache
734
743
  #
735
744
  # * Current generation:
736
745
  #
746
+ # **R6gd node types** (available only for Redis engine version 6.2
747
+ # onward).
748
+ #
749
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
750
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`, `cache.r6gd.16xlarge`
751
+ #
737
752
  # **R6g node types** (available only for Redis engine version 5.0.6
738
753
  # onward and for Memcached engine version 1.5.16 onward).
739
754
  #
@@ -979,7 +994,7 @@ module Aws::ElastiCache
979
994
  #
980
995
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
981
996
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
982
- # `redis5.0` \| `redis6.x` \|
997
+ # `redis5.0` \| `redis6.0` \|
983
998
  # @return [String]
984
999
  #
985
1000
  # @!attribute [rw] description
@@ -1733,6 +1748,13 @@ module Aws::ElastiCache
1733
1748
  #
1734
1749
  # * Current generation:
1735
1750
  #
1751
+ # **R6gd node types** (available only for Redis engine version 6.2
1752
+ # onward).
1753
+ #
1754
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
1755
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
1756
+ # `cache.r6gd.16xlarge`
1757
+ #
1736
1758
  # **R6g node types** (available only for Redis engine version
1737
1759
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
1738
1760
  #
@@ -1887,7 +1909,9 @@ module Aws::ElastiCache
1887
1909
  # @return [String]
1888
1910
  #
1889
1911
  # @!attribute [rw] auto_minor_version_upgrade
1890
- # This parameter is currently disabled.
1912
+ #  If you are running Redis engine version 6.0 or later, set this
1913
+ # parameter to yes if you want to opt-in to the next minor version
1914
+ # upgrade campaign. This parameter is disabled for previous versions. 
1891
1915
  # @return [Boolean]
1892
1916
  #
1893
1917
  # @!attribute [rw] snapshot_retention_limit
@@ -2031,7 +2055,7 @@ module Aws::ElastiCache
2031
2055
  #
2032
2056
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
2033
2057
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
2034
- # `redis5.0` \| `redis6.x` \|
2058
+ # `redis5.0` \| `redis6.0` \| `redis6.2`
2035
2059
  # @return [String]
2036
2060
  #
2037
2061
  # @!attribute [rw] description
@@ -2335,6 +2359,7 @@ module Aws::ElastiCache
2335
2359
  # enabled: false,
2336
2360
  # },
2337
2361
  # ],
2362
+ # data_tiering_enabled: false,
2338
2363
  # }
2339
2364
  #
2340
2365
  # @!attribute [rw] replication_group_id
@@ -2511,6 +2536,13 @@ module Aws::ElastiCache
2511
2536
  #
2512
2537
  # * Current generation:
2513
2538
  #
2539
+ # **R6gd node types** (available only for Redis engine version 6.2
2540
+ # onward).
2541
+ #
2542
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
2543
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
2544
+ # `cache.r6gd.16xlarge`
2545
+ #
2514
2546
  # **R6g node types** (available only for Redis engine version
2515
2547
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
2516
2548
  #
@@ -2694,7 +2726,9 @@ module Aws::ElastiCache
2694
2726
  # @return [String]
2695
2727
  #
2696
2728
  # @!attribute [rw] auto_minor_version_upgrade
2697
- # This parameter is currently disabled.
2729
+ #  If you are running Redis engine version 6.0 or later, set this
2730
+ # parameter to yes if you want to opt-in to the next minor version
2731
+ # upgrade campaign. This parameter is disabled for previous versions. 
2698
2732
  # @return [Boolean]
2699
2733
  #
2700
2734
  # @!attribute [rw] snapshot_retention_limit
@@ -2795,6 +2829,16 @@ module Aws::ElastiCache
2795
2829
  # Specifies the destination, format and type of the logs.
2796
2830
  # @return [Array<Types::LogDeliveryConfigurationRequest>]
2797
2831
  #
2832
+ # @!attribute [rw] data_tiering_enabled
2833
+ # Enables data tiering. Data tiering is only supported for replication
2834
+ # groups using the r6gd node type. This parameter must be set to true
2835
+ # when using r6gd nodes. For more information, see [Data tiering][1].
2836
+ #
2837
+ #
2838
+ #
2839
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
2840
+ # @return [Boolean]
2841
+ #
2798
2842
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
2799
2843
  #
2800
2844
  class CreateReplicationGroupMessage < Struct.new(
@@ -2830,7 +2874,8 @@ module Aws::ElastiCache
2830
2874
  :at_rest_encryption_enabled,
2831
2875
  :kms_key_id,
2832
2876
  :user_group_ids,
2833
- :log_delivery_configurations)
2877
+ :log_delivery_configurations,
2878
+ :data_tiering_enabled)
2834
2879
  SENSITIVE = []
2835
2880
  include Aws::Structure
2836
2881
  end
@@ -3209,6 +3254,8 @@ module Aws::ElastiCache
3209
3254
  include Aws::Structure
3210
3255
  end
3211
3256
 
3257
+ # The default user assigned to the user group.
3258
+ #
3212
3259
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DefaultUserAssociatedToUserGroupFault AWS API Documentation
3213
3260
  #
3214
3261
  class DefaultUserAssociatedToUserGroupFault < Aws::EmptyStructure; end
@@ -3598,7 +3645,7 @@ module Aws::ElastiCache
3598
3645
  #
3599
3646
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
3600
3647
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
3601
- # `redis5.0` \| `redis6.x` \|
3648
+ # `redis5.0` \| `redis6.x` \| `redis6.2`
3602
3649
  #
3603
3650
  # Constraints:
3604
3651
  #
@@ -3841,7 +3888,7 @@ module Aws::ElastiCache
3841
3888
  #
3842
3889
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
3843
3890
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
3844
- # `redis5.0` \| `redis6.x` \|
3891
+ # `redis5.0` \| `redis6.x` \| `redis6.2`
3845
3892
  # @return [String]
3846
3893
  #
3847
3894
  # @!attribute [rw] max_records
@@ -4156,6 +4203,13 @@ module Aws::ElastiCache
4156
4203
  #
4157
4204
  # * Current generation:
4158
4205
  #
4206
+ # **R6gd node types** (available only for Redis engine version 6.2
4207
+ # onward).
4208
+ #
4209
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
4210
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
4211
+ # `cache.r6gd.16xlarge`
4212
+ #
4159
4213
  # **R6g node types** (available only for Redis engine version
4160
4214
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
4161
4215
  #
@@ -4336,6 +4390,13 @@ module Aws::ElastiCache
4336
4390
  #
4337
4391
  # * Current generation:
4338
4392
  #
4393
+ # **R6gd node types** (available only for Redis engine version 6.2
4394
+ # onward).
4395
+ #
4396
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
4397
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
4398
+ # `cache.r6gd.16xlarge`
4399
+ #
4339
4400
  # **R6g node types** (available only for Redis engine version
4340
4401
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
4341
4402
  #
@@ -4931,7 +4992,7 @@ module Aws::ElastiCache
4931
4992
  #
4932
4993
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
4933
4994
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
4934
- # `redis5.0` \| `redis6.x` \|
4995
+ # `redis5.0` \| `redis6.0` \| `redis6.2`
4935
4996
  # @return [String]
4936
4997
  #
4937
4998
  # @!attribute [rw] marker
@@ -6044,7 +6105,9 @@ module Aws::ElastiCache
6044
6105
  # @return [String]
6045
6106
  #
6046
6107
  # @!attribute [rw] auto_minor_version_upgrade
6047
- # This parameter is currently disabled.
6108
+ #  If you are running Redis engine version 6.0 or later, set this
6109
+ # parameter to yes if you want to opt-in to the next minor version
6110
+ # upgrade campaign. This parameter is disabled for previous versions. 
6048
6111
  # @return [Boolean]
6049
6112
  #
6050
6113
  # @!attribute [rw] snapshot_retention_limit
@@ -6508,7 +6571,9 @@ module Aws::ElastiCache
6508
6571
  # @return [String]
6509
6572
  #
6510
6573
  # @!attribute [rw] auto_minor_version_upgrade
6511
- # This parameter is currently disabled.
6574
+ #  If you are running Redis engine version 6.0 or later, set this
6575
+ # parameter to yes if you want to opt-in to the next minor version
6576
+ # upgrade campaign. This parameter is disabled for previous versions. 
6512
6577
  # @return [Boolean]
6513
6578
  #
6514
6579
  # @!attribute [rw] snapshot_retention_limit
@@ -6574,16 +6639,18 @@ module Aws::ElastiCache
6574
6639
  # @return [String]
6575
6640
  #
6576
6641
  # @!attribute [rw] user_group_ids_to_add
6577
- # The user group you are associating with the replication group.
6642
+ # The ID of the user group you are associating with the replication
6643
+ # group.
6578
6644
  # @return [Array<String>]
6579
6645
  #
6580
6646
  # @!attribute [rw] user_group_ids_to_remove
6581
- # The user group to remove, meaning the users in the group no longer
6582
- # can access the replication group.
6647
+ # The ID of the user group to disassociate from the replication group,
6648
+ # meaning the users in the group no longer can access the replication
6649
+ # group.
6583
6650
  # @return [Array<String>]
6584
6651
  #
6585
6652
  # @!attribute [rw] remove_user_groups
6586
- # Removes the user groups that can access this replication group.
6653
+ # Removes the user group associated with this replication group.
6587
6654
  # @return [Boolean]
6588
6655
  #
6589
6656
  # @!attribute [rw] log_delivery_configurations
@@ -7752,8 +7819,7 @@ module Aws::ElastiCache
7752
7819
  # @return [String]
7753
7820
  #
7754
7821
  # @!attribute [rw] user_group_ids
7755
- # The list of user group IDs that have access to the replication
7756
- # group.
7822
+ # The ID of the user group associated to the replication group.
7757
7823
  # @return [Array<String>]
7758
7824
  #
7759
7825
  # @!attribute [rw] log_delivery_configurations
@@ -7764,6 +7830,16 @@ module Aws::ElastiCache
7764
7830
  # The date and time when the cluster was created.
7765
7831
  # @return [Time]
7766
7832
  #
7833
+ # @!attribute [rw] data_tiering
7834
+ # Enables data tiering. Data tiering is only supported for replication
7835
+ # groups using the r6gd node type. This parameter must be set to true
7836
+ # when using r6gd nodes. For more information, see [Data tiering][1].
7837
+ #
7838
+ #
7839
+ #
7840
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
7841
+ # @return [String]
7842
+ #
7767
7843
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
7768
7844
  #
7769
7845
  class ReplicationGroup < Struct.new(
@@ -7791,7 +7867,8 @@ module Aws::ElastiCache
7791
7867
  :arn,
7792
7868
  :user_group_ids,
7793
7869
  :log_delivery_configurations,
7794
- :replication_group_create_time)
7870
+ :replication_group_create_time,
7871
+ :data_tiering)
7795
7872
  SENSITIVE = []
7796
7873
  include Aws::Structure
7797
7874
  end
@@ -7863,7 +7940,7 @@ module Aws::ElastiCache
7863
7940
  # @return [String]
7864
7941
  #
7865
7942
  # @!attribute [rw] user_groups
7866
- # The user groups being modified.
7943
+ # The user group being modified.
7867
7944
  # @return [Types::UserGroupsUpdateStatus]
7868
7945
  #
7869
7946
  # @!attribute [rw] log_delivery_configurations
@@ -7950,6 +8027,13 @@ module Aws::ElastiCache
7950
8027
  #
7951
8028
  # * Current generation:
7952
8029
  #
8030
+ # **R6gd node types** (available only for Redis engine version 6.2
8031
+ # onward).
8032
+ #
8033
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
8034
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
8035
+ # `cache.r6gd.16xlarge`
8036
+ #
7953
8037
  # **R6g node types** (available only for Redis engine version
7954
8038
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
7955
8039
  #
@@ -8160,6 +8244,13 @@ module Aws::ElastiCache
8160
8244
  #
8161
8245
  # * Current generation:
8162
8246
  #
8247
+ # **R6gd node types** (available only for Redis engine version 6.2
8248
+ # onward).
8249
+ #
8250
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
8251
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
8252
+ # `cache.r6gd.16xlarge`
8253
+ #
8163
8254
  # **R6g node types** (available only for Redis engine version
8164
8255
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
8165
8256
  #
@@ -8647,6 +8738,13 @@ module Aws::ElastiCache
8647
8738
  #
8648
8739
  # * Current generation:
8649
8740
  #
8741
+ # **R6gd node types** (available only for Redis engine version 6.2
8742
+ # onward).
8743
+ #
8744
+ # `cache.r6gd.xlarge`, `cache.r6gd.2xlarge`, `cache.r6gd.4xlarge`,
8745
+ # `cache.r6gd.8xlarge`, `cache.r6gd.12xlarge`,
8746
+ # `cache.r6gd.16xlarge`
8747
+ #
8650
8748
  # **R6g node types** (available only for Redis engine version
8651
8749
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
8652
8750
  #
@@ -8773,7 +8871,9 @@ module Aws::ElastiCache
8773
8871
  # @return [String]
8774
8872
  #
8775
8873
  # @!attribute [rw] auto_minor_version_upgrade
8776
- # This parameter is currently disabled.
8874
+ #  If you are running Redis engine version 6.0 or later, set this
8875
+ # parameter to yes if you want to opt-in to the next minor version
8876
+ # upgrade campaign. This parameter is disabled for previous versions. 
8777
8877
  # @return [Boolean]
8778
8878
  #
8779
8879
  # @!attribute [rw] snapshot_retention_limit
@@ -8818,6 +8918,16 @@ module Aws::ElastiCache
8818
8918
  # The ARN (Amazon Resource Name) of the snapshot.
8819
8919
  # @return [String]
8820
8920
  #
8921
+ # @!attribute [rw] data_tiering
8922
+ # Enables data tiering. Data tiering is only supported for replication
8923
+ # groups using the r6gd node type. This parameter must be set to true
8924
+ # when using r6gd nodes. For more information, see [Data tiering][1].
8925
+ #
8926
+ #
8927
+ #
8928
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
8929
+ # @return [String]
8930
+ #
8821
8931
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
8822
8932
  #
8823
8933
  class Snapshot < Struct.new(
@@ -8847,7 +8957,8 @@ module Aws::ElastiCache
8847
8957
  :automatic_failover,
8848
8958
  :node_snapshots,
8849
8959
  :kms_key_id,
8850
- :arn)
8960
+ :arn,
8961
+ :data_tiering)
8851
8962
  SENSITIVE = []
8852
8963
  include Aws::Structure
8853
8964
  end
@@ -9316,6 +9427,9 @@ module Aws::ElastiCache
9316
9427
  # The current supported value is Redis.
9317
9428
  # @return [String]
9318
9429
  #
9430
+ # @!attribute [rw] minimum_engine_version
9431
+ # @return [String]
9432
+ #
9319
9433
  # @!attribute [rw] access_string
9320
9434
  # Access permissions string used for this user.
9321
9435
  # @return [String]
@@ -9339,6 +9453,7 @@ module Aws::ElastiCache
9339
9453
  :user_name,
9340
9454
  :status,
9341
9455
  :engine,
9456
+ :minimum_engine_version,
9342
9457
  :access_string,
9343
9458
  :user_group_ids,
9344
9459
  :authentication,
@@ -9370,8 +9485,11 @@ module Aws::ElastiCache
9370
9485
  # The list of user IDs that belong to the user group.
9371
9486
  # @return [Array<String>]
9372
9487
  #
9488
+ # @!attribute [rw] minimum_engine_version
9489
+ # @return [String]
9490
+ #
9373
9491
  # @!attribute [rw] pending_changes
9374
- # A list of updates being applied to the user groups.
9492
+ # A list of updates being applied to the user group.
9375
9493
  # @return [Types::UserGroupPendingChanges]
9376
9494
  #
9377
9495
  # @!attribute [rw] replication_groups
@@ -9389,6 +9507,7 @@ module Aws::ElastiCache
9389
9507
  :status,
9390
9508
  :engine,
9391
9509
  :user_ids,
9510
+ :minimum_engine_version,
9392
9511
  :pending_changes,
9393
9512
  :replication_groups,
9394
9513
  :arn)
@@ -9436,11 +9555,11 @@ module Aws::ElastiCache
9436
9555
  # The status of the user group update.
9437
9556
  #
9438
9557
  # @!attribute [rw] user_group_ids_to_add
9439
- # The list of user group IDs to add.
9558
+ # The ID of the user group to add.
9440
9559
  # @return [Array<String>]
9441
9560
  #
9442
9561
  # @!attribute [rw] user_group_ids_to_remove
9443
- # The list of user group IDs to remove.
9562
+ # The ID of the user group to remove.
9444
9563
  # @return [Array<String>]
9445
9564
  #
9446
9565
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/UserGroupsUpdateStatus AWS API Documentation
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-elasticache/customizations'
49
49
  # @!group service
50
50
  module Aws::ElastiCache
51
51
 
52
- GEM_VERSION = '1.61.0'
52
+ GEM_VERSION = '1.65.0'
53
53
 
54
54
  end
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.61.0
4
+ version: 1.65.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-23 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.120.0
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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement