aws-sdk-elasticache 1.64.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: ab92feef49657db83ce926da037fcbe5747903cb9bfa14c161cef4c4a5f47fba
4
- data.tar.gz: eddd88741847ac8f6d83f92044d3e46e675839ada7a86b4922a321b03a01c8cd
3
+ metadata.gz: 682f3071ce486e082552e911f83772f5adc9e1cd72e55f5291bf440159db946f
4
+ data.tar.gz: da302664a816da62bfff0385f452309cbc93ae2b4149758370985f3a89104565
5
5
  SHA512:
6
- metadata.gz: 3999cb1c09d895ad321fec61053f553a9c9edb85583d67a7dfbf12048ddfde8f4d954e0816b50de9cea1f8a7e1a74b63cd8fb64abde33f6143528896e811970b
7
- data.tar.gz: 3ef387bbc8974f439f0b68da6c40a4dfbececc00e43efdc079596c07fe8e3ed02b5a40ace7c7c4a00ad33f024ad49140b1d654d3671f086b4f4dc51c3c2d8124
6
+ metadata.gz: c6c071b1da7dc1bf1064115a689ad404c8345a332feca1c3edc9bd32aa4c8e94855bbfbc61cef46b3c4e3ded749dc28067fea13338d5704af0fda63d59e094b1
7
+ data.tar.gz: 6caca196641ddc567e0205402873b70a91e0cd7d4cc6a28765452821765f01ec3c88bde9667349aa6ce53103535270993672b6ba0013b05c6ac698aa891e4e9e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.64.0 (2021-11-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.65.0
@@ -699,6 +699,7 @@ module Aws::ElastiCache
699
699
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
700
700
  # resp.replication_group.log_delivery_configurations[0].message #=> String
701
701
  # resp.replication_group.replication_group_create_time #=> Time
702
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
702
703
  #
703
704
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
704
705
  #
@@ -926,6 +927,7 @@ module Aws::ElastiCache
926
927
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
927
928
  # resp.snapshot.kms_key_id #=> String
928
929
  # resp.snapshot.arn #=> String
930
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
929
931
  #
930
932
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshot AWS API Documentation
931
933
  #
@@ -1080,6 +1082,12 @@ module Aws::ElastiCache
1080
1082
  #
1081
1083
  # * Current generation:
1082
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
+ #
1083
1091
  # **R6g node types** (available only for Redis engine version 5.0.6
1084
1092
  # onward and for Memcached engine version 1.5.16 onward).
1085
1093
  #
@@ -1219,7 +1227,9 @@ module Aws::ElastiCache
1219
1227
  # </note>
1220
1228
  #
1221
1229
  # @option params [Boolean] :auto_minor_version_upgrade
1222
- # 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. 
1223
1233
  #
1224
1234
  # @option params [Integer] :snapshot_retention_limit
1225
1235
  # The number of days for which ElastiCache retains automatic snapshots
@@ -1533,7 +1543,7 @@ module Aws::ElastiCache
1533
1543
  #
1534
1544
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
1535
1545
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
1536
- # \| `redis6.x` \|
1546
+ # \| `redis6.0` \| `redis6.2`
1537
1547
  #
1538
1548
  # @option params [required, String] :description
1539
1549
  # A user-specified description for the cache parameter group.
@@ -2076,6 +2086,12 @@ module Aws::ElastiCache
2076
2086
  #
2077
2087
  # * Current generation:
2078
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
+ #
2079
2095
  # **R6g node types** (available only for Redis engine version 5.0.6
2080
2096
  # onward and for Memcached engine version 1.5.16 onward).
2081
2097
  #
@@ -2245,7 +2261,9 @@ module Aws::ElastiCache
2245
2261
  # </note>
2246
2262
  #
2247
2263
  # @option params [Boolean] :auto_minor_version_upgrade
2248
- # 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. 
2249
2267
  #
2250
2268
  # @option params [Integer] :snapshot_retention_limit
2251
2269
  # The number of days for which ElastiCache retains automatic snapshots
@@ -2337,6 +2355,15 @@ module Aws::ElastiCache
2337
2355
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
2338
2356
  # Specifies the destination, format and type of the logs.
2339
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
+ #
2340
2367
  # @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2341
2368
  #
2342
2369
  # * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -2498,6 +2525,7 @@ module Aws::ElastiCache
2498
2525
  # enabled: false,
2499
2526
  # },
2500
2527
  # ],
2528
+ # data_tiering_enabled: false,
2501
2529
  # })
2502
2530
  #
2503
2531
  # @example Response structure
@@ -2567,6 +2595,7 @@ module Aws::ElastiCache
2567
2595
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
2568
2596
  # resp.replication_group.log_delivery_configurations[0].message #=> String
2569
2597
  # resp.replication_group.replication_group_create_time #=> Time
2598
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
2570
2599
  #
2571
2600
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
2572
2601
  #
@@ -2791,6 +2820,7 @@ module Aws::ElastiCache
2791
2820
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
2792
2821
  # resp.snapshot.kms_key_id #=> String
2793
2822
  # resp.snapshot.arn #=> String
2823
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
2794
2824
  #
2795
2825
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshot AWS API Documentation
2796
2826
  #
@@ -2801,7 +2831,7 @@ module Aws::ElastiCache
2801
2831
  req.send_request(options)
2802
2832
  end
2803
2833
 
2804
- # 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
2805
2835
  # information, see [Using Role Based Access Control (RBAC)][1].
2806
2836
  #
2807
2837
  #
@@ -2838,6 +2868,7 @@ module Aws::ElastiCache
2838
2868
  # * {Types::User#user_name #user_name} => String
2839
2869
  # * {Types::User#status #status} => String
2840
2870
  # * {Types::User#engine #engine} => String
2871
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
2841
2872
  # * {Types::User#access_string #access_string} => String
2842
2873
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
2843
2874
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -2866,6 +2897,7 @@ module Aws::ElastiCache
2866
2897
  # resp.user_name #=> String
2867
2898
  # resp.status #=> String
2868
2899
  # resp.engine #=> String
2900
+ # resp.minimum_engine_version #=> String
2869
2901
  # resp.access_string #=> String
2870
2902
  # resp.user_group_ids #=> Array
2871
2903
  # resp.user_group_ids[0] #=> String
@@ -2882,7 +2914,7 @@ module Aws::ElastiCache
2882
2914
  req.send_request(options)
2883
2915
  end
2884
2916
 
2885
- # 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
2886
2918
  # more information, see [Using Role Based Access Control (RBAC)][1]
2887
2919
  #
2888
2920
  #
@@ -2909,6 +2941,7 @@ module Aws::ElastiCache
2909
2941
  # * {Types::UserGroup#status #status} => String
2910
2942
  # * {Types::UserGroup#engine #engine} => String
2911
2943
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
2944
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
2912
2945
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
2913
2946
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
2914
2947
  # * {Types::UserGroup#arn #arn} => String
@@ -2934,6 +2967,7 @@ module Aws::ElastiCache
2934
2967
  # resp.engine #=> String
2935
2968
  # resp.user_ids #=> Array
2936
2969
  # resp.user_ids[0] #=> String
2970
+ # resp.minimum_engine_version #=> String
2937
2971
  # resp.pending_changes.user_ids_to_remove #=> Array
2938
2972
  # resp.pending_changes.user_ids_to_remove[0] #=> String
2939
2973
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -3154,6 +3188,7 @@ module Aws::ElastiCache
3154
3188
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3155
3189
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3156
3190
  # resp.replication_group.replication_group_create_time #=> Time
3191
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3157
3192
  #
3158
3193
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3159
3194
  #
@@ -3642,6 +3677,7 @@ module Aws::ElastiCache
3642
3677
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3643
3678
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3644
3679
  # resp.replication_group.replication_group_create_time #=> Time
3680
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
3645
3681
  #
3646
3682
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
3647
3683
  #
@@ -3758,6 +3794,7 @@ module Aws::ElastiCache
3758
3794
  # resp.snapshot.node_snapshots[0].snapshot_create_time #=> Time
3759
3795
  # resp.snapshot.kms_key_id #=> String
3760
3796
  # resp.snapshot.arn #=> String
3797
+ # resp.snapshot.data_tiering #=> String, one of "enabled", "disabled"
3761
3798
  #
3762
3799
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteSnapshot AWS API Documentation
3763
3800
  #
@@ -3768,7 +3805,7 @@ module Aws::ElastiCache
3768
3805
  req.send_request(options)
3769
3806
  end
3770
3807
 
3771
- # 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
3772
3809
  # removed from all user groups and in turn removed from all replication
3773
3810
  # groups. For more information, see [Using Role Based Access Control
3774
3811
  # (RBAC)][1].
@@ -3786,6 +3823,7 @@ module Aws::ElastiCache
3786
3823
  # * {Types::User#user_name #user_name} => String
3787
3824
  # * {Types::User#status #status} => String
3788
3825
  # * {Types::User#engine #engine} => String
3826
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
3789
3827
  # * {Types::User#access_string #access_string} => String
3790
3828
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
3791
3829
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -3803,6 +3841,7 @@ module Aws::ElastiCache
3803
3841
  # resp.user_name #=> String
3804
3842
  # resp.status #=> String
3805
3843
  # resp.engine #=> String
3844
+ # resp.minimum_engine_version #=> String
3806
3845
  # resp.access_string #=> String
3807
3846
  # resp.user_group_ids #=> Array
3808
3847
  # resp.user_group_ids[0] #=> String
@@ -3819,7 +3858,7 @@ module Aws::ElastiCache
3819
3858
  req.send_request(options)
3820
3859
  end
3821
3860
 
3822
- # 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
3823
3862
  # group must first be disassociated from the replication group before it
3824
3863
  # can be deleted. For more information, see [Using Role Based Access
3825
3864
  # Control (RBAC)][1].
@@ -3837,6 +3876,7 @@ module Aws::ElastiCache
3837
3876
  # * {Types::UserGroup#status #status} => String
3838
3877
  # * {Types::UserGroup#engine #engine} => String
3839
3878
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
3879
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
3840
3880
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
3841
3881
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
3842
3882
  # * {Types::UserGroup#arn #arn} => String
@@ -3854,6 +3894,7 @@ module Aws::ElastiCache
3854
3894
  # resp.engine #=> String
3855
3895
  # resp.user_ids #=> Array
3856
3896
  # resp.user_ids[0] #=> String
3897
+ # resp.minimum_engine_version #=> String
3857
3898
  # resp.pending_changes.user_ids_to_remove #=> Array
3858
3899
  # resp.pending_changes.user_ids_to_remove[0] #=> String
3859
3900
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -4155,7 +4196,7 @@ module Aws::ElastiCache
4155
4196
  #
4156
4197
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
4157
4198
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
4158
- # \| `redis6.x` \|
4199
+ # \| `redis6.x` \| `redis6.2`
4159
4200
  #
4160
4201
  # Constraints:
4161
4202
  #
@@ -5138,7 +5179,7 @@ module Aws::ElastiCache
5138
5179
  #
5139
5180
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
5140
5181
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
5141
- # \| `redis6.x` \|
5182
+ # \| `redis6.x` \| `redis6.2`
5142
5183
  #
5143
5184
  # @option params [Integer] :max_records
5144
5185
  # The maximum number of records to include in the response. If more
@@ -6251,6 +6292,7 @@ module Aws::ElastiCache
6251
6292
  # resp.replication_groups[0].log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
6252
6293
  # resp.replication_groups[0].log_delivery_configurations[0].message #=> String
6253
6294
  # resp.replication_groups[0].replication_group_create_time #=> Time
6295
+ # resp.replication_groups[0].data_tiering #=> String, one of "enabled", "disabled"
6254
6296
  #
6255
6297
  #
6256
6298
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -6335,6 +6377,12 @@ module Aws::ElastiCache
6335
6377
  #
6336
6378
  # * Current generation:
6337
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
+ #
6338
6386
  # **R6g node types** (available only for Redis engine version 5.0.6
6339
6387
  # onward and for Memcached engine version 1.5.16 onward).
6340
6388
  #
@@ -6538,6 +6586,12 @@ module Aws::ElastiCache
6538
6586
  #
6539
6587
  # * Current generation:
6540
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
+ #
6541
6595
  # **R6g node types** (available only for Redis engine version 5.0.6
6542
6596
  # onward and for Memcached engine version 1.5.16 onward).
6543
6597
  #
@@ -7195,6 +7249,7 @@ module Aws::ElastiCache
7195
7249
  # resp.snapshots[0].node_snapshots[0].snapshot_create_time #=> Time
7196
7250
  # resp.snapshots[0].kms_key_id #=> String
7197
7251
  # resp.snapshots[0].arn #=> String
7252
+ # resp.snapshots[0].data_tiering #=> String, one of "enabled", "disabled"
7198
7253
  #
7199
7254
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeSnapshots AWS API Documentation
7200
7255
  #
@@ -7357,6 +7412,7 @@ module Aws::ElastiCache
7357
7412
  # resp.user_groups[0].engine #=> String
7358
7413
  # resp.user_groups[0].user_ids #=> Array
7359
7414
  # resp.user_groups[0].user_ids[0] #=> String
7415
+ # resp.user_groups[0].minimum_engine_version #=> String
7360
7416
  # resp.user_groups[0].pending_changes.user_ids_to_remove #=> Array
7361
7417
  # resp.user_groups[0].pending_changes.user_ids_to_remove[0] #=> String
7362
7418
  # resp.user_groups[0].pending_changes.user_ids_to_add #=> Array
@@ -7427,6 +7483,7 @@ module Aws::ElastiCache
7427
7483
  # resp.users[0].user_name #=> String
7428
7484
  # resp.users[0].status #=> String
7429
7485
  # resp.users[0].engine #=> String
7486
+ # resp.users[0].minimum_engine_version #=> String
7430
7487
  # resp.users[0].access_string #=> String
7431
7488
  # resp.users[0].user_group_ids #=> Array
7432
7489
  # resp.users[0].user_group_ids[0] #=> String
@@ -7748,6 +7805,7 @@ module Aws::ElastiCache
7748
7805
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
7749
7806
  # resp.replication_group.log_delivery_configurations[0].message #=> String
7750
7807
  # resp.replication_group.replication_group_create_time #=> Time
7808
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
7751
7809
  #
7752
7810
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
7753
7811
  #
@@ -8179,7 +8237,9 @@ module Aws::ElastiCache
8179
8237
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
8180
8238
  #
8181
8239
  # @option params [Boolean] :auto_minor_version_upgrade
8182
- # 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. 
8183
8243
  #
8184
8244
  # @option params [Integer] :snapshot_retention_limit
8185
8245
  # The number of days for which ElastiCache retains automatic cluster
@@ -8785,7 +8845,9 @@ module Aws::ElastiCache
8785
8845
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
8786
8846
  #
8787
8847
  # @option params [Boolean] :auto_minor_version_upgrade
8788
- # 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. 
8789
8851
  #
8790
8852
  # @option params [Integer] :snapshot_retention_limit
8791
8853
  # The number of days for which ElastiCache retains automatic node group
@@ -9045,6 +9107,7 @@ module Aws::ElastiCache
9045
9107
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9046
9108
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9047
9109
  # resp.replication_group.replication_group_create_time #=> Time
9110
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9048
9111
  #
9049
9112
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
9050
9113
  #
@@ -9188,6 +9251,7 @@ module Aws::ElastiCache
9188
9251
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9189
9252
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9190
9253
  # resp.replication_group.replication_group_create_time #=> Time
9254
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9191
9255
  #
9192
9256
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
9193
9257
  #
@@ -9221,6 +9285,7 @@ module Aws::ElastiCache
9221
9285
  # * {Types::User#user_name #user_name} => String
9222
9286
  # * {Types::User#status #status} => String
9223
9287
  # * {Types::User#engine #engine} => String
9288
+ # * {Types::User#minimum_engine_version #minimum_engine_version} => String
9224
9289
  # * {Types::User#access_string #access_string} => String
9225
9290
  # * {Types::User#user_group_ids #user_group_ids} => Array&lt;String&gt;
9226
9291
  # * {Types::User#authentication #authentication} => Types::Authentication
@@ -9242,6 +9307,7 @@ module Aws::ElastiCache
9242
9307
  # resp.user_name #=> String
9243
9308
  # resp.status #=> String
9244
9309
  # resp.engine #=> String
9310
+ # resp.minimum_engine_version #=> String
9245
9311
  # resp.access_string #=> String
9246
9312
  # resp.user_group_ids #=> Array
9247
9313
  # resp.user_group_ids[0] #=> String
@@ -9275,6 +9341,7 @@ module Aws::ElastiCache
9275
9341
  # * {Types::UserGroup#status #status} => String
9276
9342
  # * {Types::UserGroup#engine #engine} => String
9277
9343
  # * {Types::UserGroup#user_ids #user_ids} => Array&lt;String&gt;
9344
+ # * {Types::UserGroup#minimum_engine_version #minimum_engine_version} => String
9278
9345
  # * {Types::UserGroup#pending_changes #pending_changes} => Types::UserGroupPendingChanges
9279
9346
  # * {Types::UserGroup#replication_groups #replication_groups} => Array&lt;String&gt;
9280
9347
  # * {Types::UserGroup#arn #arn} => String
@@ -9294,6 +9361,7 @@ module Aws::ElastiCache
9294
9361
  # resp.engine #=> String
9295
9362
  # resp.user_ids #=> Array
9296
9363
  # resp.user_ids[0] #=> String
9364
+ # resp.minimum_engine_version #=> String
9297
9365
  # resp.pending_changes.user_ids_to_remove #=> Array
9298
9366
  # resp.pending_changes.user_ids_to_remove[0] #=> String
9299
9367
  # resp.pending_changes.user_ids_to_add #=> Array
@@ -9932,6 +10000,7 @@ module Aws::ElastiCache
9932
10000
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9933
10001
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9934
10002
  # resp.replication_group.replication_group_create_time #=> Time
10003
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
9935
10004
  #
9936
10005
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
9937
10006
  #
@@ -9946,6 +10015,12 @@ module Aws::ElastiCache
9946
10015
  # automatic failover on a specified node group (called shard in the
9947
10016
  # console) in a replication group (called cluster in the console).
9948
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
+ #
9949
10024
  # **Note the following**
9950
10025
  #
9951
10026
  # * A customer can use this operation to test automatic failover on up
@@ -10083,6 +10158,7 @@ module Aws::ElastiCache
10083
10158
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
10084
10159
  # resp.replication_group.log_delivery_configurations[0].message #=> String
10085
10160
  # resp.replication_group.replication_group_create_time #=> Time
10161
+ # resp.replication_group.data_tiering #=> String, one of "enabled", "disabled"
10086
10162
  #
10087
10163
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
10088
10164
  #
@@ -10106,7 +10182,7 @@ module Aws::ElastiCache
10106
10182
  params: params,
10107
10183
  config: config)
10108
10184
  context[:gem_name] = 'aws-sdk-elasticache'
10109
- context[:gem_version] = '1.64.0'
10185
+ context[:gem_version] = '1.65.0'
10110
10186
  Seahorse::Client::Request.new(handlers, context)
10111
10187
  end
10112
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
@@ -3600,7 +3645,7 @@ module Aws::ElastiCache
3600
3645
  #
3601
3646
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
3602
3647
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
3603
- # `redis5.0` \| `redis6.x` \|
3648
+ # `redis5.0` \| `redis6.x` \| `redis6.2`
3604
3649
  #
3605
3650
  # Constraints:
3606
3651
  #
@@ -3843,7 +3888,7 @@ module Aws::ElastiCache
3843
3888
  #
3844
3889
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
3845
3890
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
3846
- # `redis5.0` \| `redis6.x` \|
3891
+ # `redis5.0` \| `redis6.x` \| `redis6.2`
3847
3892
  # @return [String]
3848
3893
  #
3849
3894
  # @!attribute [rw] max_records
@@ -4158,6 +4203,13 @@ module Aws::ElastiCache
4158
4203
  #
4159
4204
  # * Current generation:
4160
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
+ #
4161
4213
  # **R6g node types** (available only for Redis engine version
4162
4214
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
4163
4215
  #
@@ -4338,6 +4390,13 @@ module Aws::ElastiCache
4338
4390
  #
4339
4391
  # * Current generation:
4340
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
+ #
4341
4400
  # **R6g node types** (available only for Redis engine version
4342
4401
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
4343
4402
  #
@@ -4933,7 +4992,7 @@ module Aws::ElastiCache
4933
4992
  #
4934
4993
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
4935
4994
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
4936
- # `redis5.0` \| `redis6.x` \|
4995
+ # `redis5.0` \| `redis6.0` \| `redis6.2`
4937
4996
  # @return [String]
4938
4997
  #
4939
4998
  # @!attribute [rw] marker
@@ -6046,7 +6105,9 @@ module Aws::ElastiCache
6046
6105
  # @return [String]
6047
6106
  #
6048
6107
  # @!attribute [rw] auto_minor_version_upgrade
6049
- # 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. 
6050
6111
  # @return [Boolean]
6051
6112
  #
6052
6113
  # @!attribute [rw] snapshot_retention_limit
@@ -6510,7 +6571,9 @@ module Aws::ElastiCache
6510
6571
  # @return [String]
6511
6572
  #
6512
6573
  # @!attribute [rw] auto_minor_version_upgrade
6513
- # 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. 
6514
6577
  # @return [Boolean]
6515
6578
  #
6516
6579
  # @!attribute [rw] snapshot_retention_limit
@@ -7767,6 +7830,16 @@ module Aws::ElastiCache
7767
7830
  # The date and time when the cluster was created.
7768
7831
  # @return [Time]
7769
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
+ #
7770
7843
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
7771
7844
  #
7772
7845
  class ReplicationGroup < Struct.new(
@@ -7794,7 +7867,8 @@ module Aws::ElastiCache
7794
7867
  :arn,
7795
7868
  :user_group_ids,
7796
7869
  :log_delivery_configurations,
7797
- :replication_group_create_time)
7870
+ :replication_group_create_time,
7871
+ :data_tiering)
7798
7872
  SENSITIVE = []
7799
7873
  include Aws::Structure
7800
7874
  end
@@ -7953,6 +8027,13 @@ module Aws::ElastiCache
7953
8027
  #
7954
8028
  # * Current generation:
7955
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
+ #
7956
8037
  # **R6g node types** (available only for Redis engine version
7957
8038
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
7958
8039
  #
@@ -8163,6 +8244,13 @@ module Aws::ElastiCache
8163
8244
  #
8164
8245
  # * Current generation:
8165
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
+ #
8166
8254
  # **R6g node types** (available only for Redis engine version
8167
8255
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
8168
8256
  #
@@ -8650,6 +8738,13 @@ module Aws::ElastiCache
8650
8738
  #
8651
8739
  # * Current generation:
8652
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
+ #
8653
8748
  # **R6g node types** (available only for Redis engine version
8654
8749
  # 5.0.6 onward and for Memcached engine version 1.5.16 onward).
8655
8750
  #
@@ -8776,7 +8871,9 @@ module Aws::ElastiCache
8776
8871
  # @return [String]
8777
8872
  #
8778
8873
  # @!attribute [rw] auto_minor_version_upgrade
8779
- # 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. 
8780
8877
  # @return [Boolean]
8781
8878
  #
8782
8879
  # @!attribute [rw] snapshot_retention_limit
@@ -8821,6 +8918,16 @@ module Aws::ElastiCache
8821
8918
  # The ARN (Amazon Resource Name) of the snapshot.
8822
8919
  # @return [String]
8823
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
+ #
8824
8931
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
8825
8932
  #
8826
8933
  class Snapshot < Struct.new(
@@ -8850,7 +8957,8 @@ module Aws::ElastiCache
8850
8957
  :automatic_failover,
8851
8958
  :node_snapshots,
8852
8959
  :kms_key_id,
8853
- :arn)
8960
+ :arn,
8961
+ :data_tiering)
8854
8962
  SENSITIVE = []
8855
8963
  include Aws::Structure
8856
8964
  end
@@ -9319,6 +9427,9 @@ module Aws::ElastiCache
9319
9427
  # The current supported value is Redis.
9320
9428
  # @return [String]
9321
9429
  #
9430
+ # @!attribute [rw] minimum_engine_version
9431
+ # @return [String]
9432
+ #
9322
9433
  # @!attribute [rw] access_string
9323
9434
  # Access permissions string used for this user.
9324
9435
  # @return [String]
@@ -9342,6 +9453,7 @@ module Aws::ElastiCache
9342
9453
  :user_name,
9343
9454
  :status,
9344
9455
  :engine,
9456
+ :minimum_engine_version,
9345
9457
  :access_string,
9346
9458
  :user_group_ids,
9347
9459
  :authentication,
@@ -9373,6 +9485,9 @@ module Aws::ElastiCache
9373
9485
  # The list of user IDs that belong to the user group.
9374
9486
  # @return [Array<String>]
9375
9487
  #
9488
+ # @!attribute [rw] minimum_engine_version
9489
+ # @return [String]
9490
+ #
9376
9491
  # @!attribute [rw] pending_changes
9377
9492
  # A list of updates being applied to the user group.
9378
9493
  # @return [Types::UserGroupPendingChanges]
@@ -9392,6 +9507,7 @@ module Aws::ElastiCache
9392
9507
  :status,
9393
9508
  :engine,
9394
9509
  :user_ids,
9510
+ :minimum_engine_version,
9395
9511
  :pending_changes,
9396
9512
  :replication_groups,
9397
9513
  :arn)
@@ -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.64.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.64.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-11-04 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