aws-sdk-elasticache 1.118.0 → 1.120.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: 5786608cd392690a7244feef7cabae8fcad4f851ea37d82563f8df07daaacc55
4
- data.tar.gz: 2d11fb3f263c8089fdd5e3c7410b28e0df15bc8559ed6f30cbb603185344f1e0
3
+ metadata.gz: 39c037a27aef816fc0049b35fa11072e474f2c7e0c433e9e67ce1a9a70efffd7
4
+ data.tar.gz: 6befdf842b81121ab53a6d514e83c7ddd19a05aee05e5a4e31dddaebd851882a
5
5
  SHA512:
6
- metadata.gz: c68d109bd461fb8dda2c33f8e3ab28d297076033217baff0d8225887d937f04e14348bf242d1f852757556c4a14808739a9513efb1beb02718d807f3335f7155
7
- data.tar.gz: 2d9fd1713697739753e0eb11c9d8968f73585b52385aecd6b4c9959fb6a555b6aebaa43de41059153305f4040b2ac24d8b37136a92cc29d1a3ff82c94f419498
6
+ metadata.gz: 54cf3d03070255935535b10175486f6d1a5c7a7b9040c877faa1d2b9f8bdf8bfc6e96c9b61a76c1f962d0c1853341979facba69e2a09c43aeffb940fbd903ec7
7
+ data.tar.gz: a6fa70b6ebccf46cb4ab950a6ec3a59feb6730c0a4a7d811559e1f1046df7f50be5bb7363fc1a194231513e8d11196c0373ff33511124c0c2c7b60a0b698c9aa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.119.0 (2024-11-21)
10
+ ------------------
11
+
12
+ * Feature - Added support to modify the engine type for existing ElastiCache Users and User Groups. Customers can now modify the engine type from redis to valkey.
13
+
4
14
  1.118.0 (2024-11-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.118.0
1
+ 1.120.0
@@ -257,11 +257,34 @@ module Aws::ElastiCache
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -466,8 +489,8 @@ module Aws::ElastiCache
466
489
  #
467
490
  #
468
491
  #
469
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/IAM.ResourceLevelPermissions.html
470
- # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Tagging.html
492
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/IAM.ResourceLevelPermissions.html
493
+ # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Tagging.html
471
494
  #
472
495
  # @option params [required, String] :resource_name
473
496
  # The Amazon Resource Name (ARN) of the resource to which the tags are
@@ -622,7 +645,7 @@ module Aws::ElastiCache
622
645
  #
623
646
  #
624
647
  #
625
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/applying-updates.html
648
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/applying-updates.html
626
649
  #
627
650
  # @option params [Array<String>] :replication_group_ids
628
651
  # The replication group IDs
@@ -674,7 +697,7 @@ module Aws::ElastiCache
674
697
  #
675
698
  #
676
699
  #
677
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/stopping-self-service-updates.html
700
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/stopping-self-service-updates.html
678
701
  #
679
702
  # @option params [Array<String>] :replication_group_ids
680
703
  # The replication group IDs
@@ -964,10 +987,10 @@ module Aws::ElastiCache
964
987
  #
965
988
  #
966
989
  #
967
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html
968
- # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/IAM.html
969
- # [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-create-s3-bucket
970
- # [4]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-grant-access
990
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/backups-exporting.html
991
+ # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/IAM.html
992
+ # [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/backups-exporting.html#backups-exporting-create-s3-bucket
993
+ # [4]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/backups-exporting.html#backups-exporting-grant-access
971
994
  #
972
995
  # @option params [required, String] :source_snapshot_name
973
996
  # The name of an existing snapshot from which to make a copy.
@@ -991,8 +1014,8 @@ module Aws::ElastiCache
991
1014
  #
992
1015
  #
993
1016
  #
994
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-grant-access
995
- # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html
1017
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/backups-exporting.html#backups-exporting-grant-access
1018
+ # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/backups-exporting.html
996
1019
  #
997
1020
  # @option params [String] :kms_key_id
998
1021
  # The ID of the KMS key used to encrypt the target snapshot.
@@ -1321,7 +1344,7 @@ module Aws::ElastiCache
1321
1344
  #
1322
1345
  #
1323
1346
  #
1324
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
1347
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
1325
1348
  #
1326
1349
  # @option params [String] :engine
1327
1350
  # The name of the cache engine to be used for this cluster.
@@ -1341,7 +1364,7 @@ module Aws::ElastiCache
1341
1364
  #
1342
1365
  #
1343
1366
  #
1344
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
1367
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
1345
1368
  #
1346
1369
  # @option params [String] :cache_parameter_group_name
1347
1370
  # The name of the parameter group to associate with this cluster. If
@@ -1361,7 +1384,7 @@ module Aws::ElastiCache
1361
1384
  #
1362
1385
  #
1363
1386
  #
1364
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.html
1387
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SubnetGroups.html
1365
1388
  #
1366
1389
  # @option params [Array<String>] :cache_security_group_names
1367
1390
  # A list of security group names to associate with this cluster.
@@ -1755,7 +1778,7 @@ module Aws::ElastiCache
1755
1778
  #
1756
1779
  #
1757
1780
  # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_ModifyCacheParameterGroup.html
1758
- # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ParameterGroups.html
1781
+ # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/ParameterGroups.html
1759
1782
  #
1760
1783
  # @option params [required, String] :cache_parameter_group_name
1761
1784
  # A user-specified name for the cache parameter group.
@@ -2034,7 +2057,7 @@ module Aws::ElastiCache
2034
2057
  #
2035
2058
  #
2036
2059
  #
2037
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Redis-Global-Datastore.html
2060
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Redis-Global-Datastore.html
2038
2061
  #
2039
2062
  # @option params [required, String] :global_replication_group_id_suffix
2040
2063
  # The suffix name of a Global datastore. Amazon ElastiCache
@@ -2051,7 +2074,7 @@ module Aws::ElastiCache
2051
2074
  #
2052
2075
  #
2053
2076
  #
2054
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Redis-Global-Datastores-CLI.html
2077
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Redis-Global-Datastores-CLI.html
2055
2078
  #
2056
2079
  # @option params [String] :global_replication_group_description
2057
2080
  # Provides details of the Global datastore
@@ -2148,9 +2171,9 @@ module Aws::ElastiCache
2148
2171
  #
2149
2172
  #
2150
2173
  #
2151
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.Creating.html
2174
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SubnetGroups.Creating.html
2152
2175
  # [2]: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html
2153
- # [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Scaling.html
2176
+ # [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Scaling.html
2154
2177
  #
2155
2178
  # @option params [required, String] :replication_group_id
2156
2179
  # The replication group identifier. This parameter is stored as a
@@ -2194,7 +2217,7 @@ module Aws::ElastiCache
2194
2217
  #
2195
2218
  #
2196
2219
  #
2197
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
2220
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/AutoFailover.html
2198
2221
  #
2199
2222
  # @option params [Integer] :num_cache_clusters
2200
2223
  # The number of clusters this replication group initially has.
@@ -2370,7 +2393,7 @@ module Aws::ElastiCache
2370
2393
  #
2371
2394
  #
2372
2395
  #
2373
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
2396
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
2374
2397
  #
2375
2398
  # @option params [String] :engine
2376
2399
  # The name of the cache engine to be used for the clusters in this
@@ -2390,7 +2413,7 @@ module Aws::ElastiCache
2390
2413
  #
2391
2414
  #
2392
2415
  #
2393
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
2416
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
2394
2417
  #
2395
2418
  # @option params [String] :cache_parameter_group_name
2396
2419
  # The name of the parameter group to associate with this replication
@@ -2417,7 +2440,7 @@ module Aws::ElastiCache
2417
2440
  #
2418
2441
  #
2419
2442
  #
2420
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.html
2443
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SubnetGroups.html
2421
2444
  #
2422
2445
  # @option params [Array<String>] :cache_security_group_names
2423
2446
  # A list of cache security group names to associate with this
@@ -2588,7 +2611,7 @@ module Aws::ElastiCache
2588
2611
  #
2589
2612
  #
2590
2613
  #
2591
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
2614
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/data-tiering.html
2592
2615
  #
2593
2616
  # @option params [String] :network_type
2594
2617
  # Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
@@ -3332,7 +3355,7 @@ module Aws::ElastiCache
3332
3355
  #
3333
3356
  #
3334
3357
  #
3335
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.RBAC.html
3358
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.RBAC.html
3336
3359
  #
3337
3360
  # @option params [required, String] :user_id
3338
3361
  # The ID of the user.
@@ -3423,7 +3446,7 @@ module Aws::ElastiCache
3423
3446
  #
3424
3447
  #
3425
3448
  #
3426
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.RBAC.html
3449
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.RBAC.html
3427
3450
  #
3428
3451
  # @option params [required, String] :user_group_id
3429
3452
  # The ID of the user group.
@@ -4451,7 +4474,7 @@ module Aws::ElastiCache
4451
4474
  #
4452
4475
  #
4453
4476
  #
4454
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.RBAC.html
4477
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.RBAC.html
4455
4478
  #
4456
4479
  # @option params [required, String] :user_id
4457
4480
  # The ID of the user.
@@ -4504,7 +4527,7 @@ module Aws::ElastiCache
4504
4527
  #
4505
4528
  #
4506
4529
  #
4507
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.RBAC.html
4530
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.RBAC.html
4508
4531
  #
4509
4532
  # @option params [required, String] :user_group_id
4510
4533
  # The ID of the user group.
@@ -7094,7 +7117,7 @@ module Aws::ElastiCache
7094
7117
  #
7095
7118
  #
7096
7119
  #
7097
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
7120
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
7098
7121
  #
7099
7122
  # @option params [String] :duration
7100
7123
  # The duration filter value, specified in years or seconds. Use this
@@ -7311,7 +7334,7 @@ module Aws::ElastiCache
7311
7334
  #
7312
7335
  #
7313
7336
  #
7314
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
7337
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
7315
7338
  #
7316
7339
  # @option params [String] :duration
7317
7340
  # Duration filter value, specified in years or seconds. Use this
@@ -8807,7 +8830,7 @@ module Aws::ElastiCache
8807
8830
  #
8808
8831
  #
8809
8832
  #
8810
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/IAM.ResourceLevelPermissions.html
8833
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/IAM.ResourceLevelPermissions.html
8811
8834
  #
8812
8835
  # @option params [required, String] :resource_name
8813
8836
  # The Amazon Resource Name (ARN) of the resource for which you want the
@@ -9027,7 +9050,7 @@ module Aws::ElastiCache
9027
9050
  #
9028
9051
  #
9029
9052
  #
9030
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/CacheNodes.SupportedTypes.html
9053
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html
9031
9054
  #
9032
9055
  # @option params [Array<String>] :cache_security_group_names
9033
9056
  # A list of cache security group names to authorize on this cluster.
@@ -9121,7 +9144,7 @@ module Aws::ElastiCache
9121
9144
  #
9122
9145
  #
9123
9146
  #
9124
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
9147
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
9125
9148
  #
9126
9149
  # @option params [Boolean] :auto_minor_version_upgrade
9127
9150
  #  If you are running Valkey 7.2 or Redis OSS engine version 6.0 or
@@ -9180,7 +9203,7 @@ module Aws::ElastiCache
9180
9203
  #
9181
9204
  #
9182
9205
  #
9183
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
9206
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/auth.html
9184
9207
  #
9185
9208
  # @option params [Array<Types::LogDeliveryConfigurationRequest>] :log_delivery_configurations
9186
9209
  # Specifies the destination, format and type of the logs.
@@ -9636,7 +9659,7 @@ module Aws::ElastiCache
9636
9659
  #
9637
9660
  #
9638
9661
  #
9639
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/scaling-redis-cluster-mode-enabled.html
9662
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/scaling-redis-cluster-mode-enabled.html
9640
9663
  # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_ModifyReplicationGroupShardConfiguration.html
9641
9664
  #
9642
9665
  # @option params [required, String] :replication_group_id
@@ -9763,7 +9786,7 @@ module Aws::ElastiCache
9763
9786
  #
9764
9787
  #
9765
9788
  #
9766
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
9789
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
9767
9790
  #
9768
9791
  # @option params [Boolean] :auto_minor_version_upgrade
9769
9792
  #  If you are running Valkey or Redis OSS engine version 6.0 or later,
@@ -9827,7 +9850,7 @@ module Aws::ElastiCache
9827
9850
  #
9828
9851
  #
9829
9852
  #
9830
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
9853
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/auth.html
9831
9854
  #
9832
9855
  # @option params [Array<String>] :user_group_ids_to_add
9833
9856
  # The ID of the user group you are associating with the replication
@@ -10385,6 +10408,9 @@ module Aws::ElastiCache
10385
10408
  # @option params [Types::AuthenticationMode] :authentication_mode
10386
10409
  # Specifies how to authenticate the user.
10387
10410
  #
10411
+ # @option params [String] :engine
10412
+ # The engine for a specific user.
10413
+ #
10388
10414
  # @return [Types::User] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10389
10415
  #
10390
10416
  # * {Types::User#user_id #user_id} => String
@@ -10409,6 +10435,7 @@ module Aws::ElastiCache
10409
10435
  # type: "password", # accepts password, no-password-required, iam
10410
10436
  # passwords: ["String"],
10411
10437
  # },
10438
+ # engine: "EngineType",
10412
10439
  # })
10413
10440
  #
10414
10441
  # @example Response structure
@@ -10445,6 +10472,9 @@ module Aws::ElastiCache
10445
10472
  # @option params [Array<String>] :user_ids_to_remove
10446
10473
  # The list of user IDs to remove from the user group.
10447
10474
  #
10475
+ # @option params [String] :engine
10476
+ # The engine for a user group.
10477
+ #
10448
10478
  # @return [Types::UserGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10449
10479
  #
10450
10480
  # * {Types::UserGroup#user_group_id #user_group_id} => String
@@ -10463,6 +10493,7 @@ module Aws::ElastiCache
10463
10493
  # user_group_id: "String", # required
10464
10494
  # user_ids_to_add: ["UserId"],
10465
10495
  # user_ids_to_remove: ["UserId"],
10496
+ # engine: "EngineType",
10466
10497
  # })
10467
10498
  #
10468
10499
  # @example Response structure
@@ -10498,7 +10529,7 @@ module Aws::ElastiCache
10498
10529
  #
10499
10530
  #
10500
10531
  #
10501
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/reserved-nodes.html
10532
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/reserved-nodes.html
10502
10533
  #
10503
10534
  # @option params [required, String] :reserved_cache_nodes_offering_id
10504
10535
  # The ID of the reserved cache node offering to purchase.
@@ -10653,7 +10684,7 @@ module Aws::ElastiCache
10653
10684
  #
10654
10685
  #
10655
10686
  #
10656
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/nodes.rebooting.html
10687
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/nodes.rebooting.html
10657
10688
  #
10658
10689
  # @option params [required, String] :cache_cluster_id
10659
10690
  # The cluster identifier. This parameter is stored as a lowercase
@@ -10813,7 +10844,7 @@ module Aws::ElastiCache
10813
10844
  #
10814
10845
  #
10815
10846
  #
10816
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/IAM.ResourceLevelPermissions.html
10847
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/IAM.ResourceLevelPermissions.html
10817
10848
  #
10818
10849
  # @option params [required, String] :resource_name
10819
10850
  # The Amazon Resource Name (ARN) of the resource from which you want the
@@ -11192,9 +11223,9 @@ module Aws::ElastiCache
11192
11223
  #
11193
11224
  #
11194
11225
  #
11195
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ECEvents.Viewing.html
11226
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/ECEvents.Viewing.html
11196
11227
  # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/APIReference/API_DescribeEvents.html
11197
- # [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html#auto-failover-test
11228
+ # [3]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/AutoFailover.html#auto-failover-test
11198
11229
  #
11199
11230
  # @option params [required, String] :replication_group_id
11200
11231
  # The name of the replication group (console: cluster) whose automatic
@@ -11435,7 +11466,7 @@ module Aws::ElastiCache
11435
11466
  tracer: tracer
11436
11467
  )
11437
11468
  context[:gem_name] = 'aws-sdk-elasticache'
11438
- context[:gem_version] = '1.118.0'
11469
+ context[:gem_version] = '1.120.0'
11439
11470
  Seahorse::Client::Request.new(handlers, context)
11440
11471
  end
11441
11472
 
@@ -1426,6 +1426,7 @@ module Aws::ElastiCache
1426
1426
  ModifyUserGroupMessage.add_member(:user_group_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "UserGroupId"))
1427
1427
  ModifyUserGroupMessage.add_member(:user_ids_to_add, Shapes::ShapeRef.new(shape: UserIdListInput, location_name: "UserIdsToAdd"))
1428
1428
  ModifyUserGroupMessage.add_member(:user_ids_to_remove, Shapes::ShapeRef.new(shape: UserIdListInput, location_name: "UserIdsToRemove"))
1429
+ ModifyUserGroupMessage.add_member(:engine, Shapes::ShapeRef.new(shape: EngineType, location_name: "Engine"))
1429
1430
  ModifyUserGroupMessage.struct_class = Types::ModifyUserGroupMessage
1430
1431
 
1431
1432
  ModifyUserMessage.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, required: true, location_name: "UserId"))
@@ -1434,6 +1435,7 @@ module Aws::ElastiCache
1434
1435
  ModifyUserMessage.add_member(:passwords, Shapes::ShapeRef.new(shape: PasswordListInput, location_name: "Passwords"))
1435
1436
  ModifyUserMessage.add_member(:no_password_required, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoPasswordRequired"))
1436
1437
  ModifyUserMessage.add_member(:authentication_mode, Shapes::ShapeRef.new(shape: AuthenticationMode, location_name: "AuthenticationMode"))
1438
+ ModifyUserMessage.add_member(:engine, Shapes::ShapeRef.new(shape: EngineType, location_name: "Engine"))
1437
1439
  ModifyUserMessage.struct_class = Types::ModifyUserMessage
1438
1440
 
1439
1441
  NetworkTypeList.member = Shapes::ShapeRef.new(shape: NetworkType)
@@ -369,7 +369,7 @@ module Aws::ElastiCache
369
369
  #
370
370
  #
371
371
  #
372
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
372
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
373
373
  # @return [String]
374
374
  #
375
375
  # @!attribute [rw] engine
@@ -814,7 +814,7 @@ module Aws::ElastiCache
814
814
  #
815
815
  #
816
816
  #
817
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
817
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
818
818
  #
819
819
  # @!attribute [rw] cache_node_id
820
820
  # The cache node identifier. A node ID is a numeric identifier (0001,
@@ -916,7 +916,7 @@ module Aws::ElastiCache
916
916
  #
917
917
  #
918
918
  #
919
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.Rebooting.html
919
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.Rebooting.html
920
920
  # @return [String]
921
921
  #
922
922
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheNodeTypeSpecificParameter AWS API Documentation
@@ -1450,7 +1450,7 @@ module Aws::ElastiCache
1450
1450
  #
1451
1451
  #
1452
1452
  #
1453
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/shard-find-id.html
1453
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/shard-find-id.html
1454
1454
  # @return [String]
1455
1455
  #
1456
1456
  # @!attribute [rw] new_replica_count
@@ -1567,8 +1567,8 @@ module Aws::ElastiCache
1567
1567
  #
1568
1568
  #
1569
1569
  #
1570
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-grant-access
1571
- # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html
1570
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/backups-exporting.html#backups-exporting-grant-access
1571
+ # [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/backups-exporting.html
1572
1572
  # @return [String]
1573
1573
  #
1574
1574
  # @!attribute [rw] kms_key_id
@@ -1812,7 +1812,7 @@ module Aws::ElastiCache
1812
1812
  #
1813
1813
  #
1814
1814
  #
1815
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
1815
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
1816
1816
  # @return [String]
1817
1817
  #
1818
1818
  # @!attribute [rw] engine
@@ -1834,7 +1834,7 @@ module Aws::ElastiCache
1834
1834
  #
1835
1835
  #
1836
1836
  #
1837
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
1837
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
1838
1838
  # @return [String]
1839
1839
  #
1840
1840
  # @!attribute [rw] cache_parameter_group_name
@@ -1856,7 +1856,7 @@ module Aws::ElastiCache
1856
1856
  #
1857
1857
  #
1858
1858
  #
1859
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.html
1859
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SubnetGroups.html
1860
1860
  # @return [String]
1861
1861
  #
1862
1862
  # @!attribute [rw] cache_security_group_names
@@ -2239,7 +2239,7 @@ module Aws::ElastiCache
2239
2239
  #
2240
2240
  #
2241
2241
  #
2242
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Redis-Global-Datastores-CLI.html
2242
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Redis-Global-Datastores-CLI.html
2243
2243
  # @return [String]
2244
2244
  #
2245
2245
  # @!attribute [rw] global_replication_group_description
@@ -2333,7 +2333,7 @@ module Aws::ElastiCache
2333
2333
  #
2334
2334
  #
2335
2335
  #
2336
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
2336
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/AutoFailover.html
2337
2337
  # @return [Boolean]
2338
2338
  #
2339
2339
  # @!attribute [rw] num_cache_clusters
@@ -2516,7 +2516,7 @@ module Aws::ElastiCache
2516
2516
  #
2517
2517
  #
2518
2518
  #
2519
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
2519
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
2520
2520
  # @return [String]
2521
2521
  #
2522
2522
  # @!attribute [rw] engine
@@ -2538,7 +2538,7 @@ module Aws::ElastiCache
2538
2538
  #
2539
2539
  #
2540
2540
  #
2541
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
2541
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
2542
2542
  # @return [String]
2543
2543
  #
2544
2544
  # @!attribute [rw] cache_parameter_group_name
@@ -2567,7 +2567,7 @@ module Aws::ElastiCache
2567
2567
  #
2568
2568
  #
2569
2569
  #
2570
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SubnetGroups.html
2570
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SubnetGroups.html
2571
2571
  # @return [String]
2572
2572
  #
2573
2573
  # @!attribute [rw] cache_security_group_names
@@ -2757,7 +2757,7 @@ module Aws::ElastiCache
2757
2757
  #
2758
2758
  #
2759
2759
  #
2760
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
2760
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/data-tiering.html
2761
2761
  # @return [Boolean]
2762
2762
  #
2763
2763
  # @!attribute [rw] network_type
@@ -4218,7 +4218,7 @@ module Aws::ElastiCache
4218
4218
  #
4219
4219
  #
4220
4220
  #
4221
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
4221
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
4222
4222
  # @return [String]
4223
4223
  #
4224
4224
  # @!attribute [rw] duration
@@ -4399,7 +4399,7 @@ module Aws::ElastiCache
4399
4399
  #
4400
4400
  #
4401
4401
  #
4402
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
4402
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
4403
4403
  # @return [String]
4404
4404
  #
4405
4405
  # @!attribute [rw] duration
@@ -5478,7 +5478,7 @@ module Aws::ElastiCache
5478
5478
  #
5479
5479
  #
5480
5480
  #
5481
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ErrorMessages.html#ErrorMessages.INSUFFICIENT_CACHE_CLUSTER_CAPACITY
5481
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/ErrorMessages.html#ErrorMessages.INSUFFICIENT_CACHE_CLUSTER_CAPACITY
5482
5482
  #
5483
5483
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/InsufficientCacheClusterCapacityFault AWS API Documentation
5484
5484
  #
@@ -5924,7 +5924,7 @@ module Aws::ElastiCache
5924
5924
  #
5925
5925
  #
5926
5926
  #
5927
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/CacheNodes.SupportedTypes.html
5927
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html
5928
5928
  # @return [Array<String>]
5929
5929
  #
5930
5930
  # @!attribute [rw] cache_security_group_names
@@ -6029,7 +6029,7 @@ module Aws::ElastiCache
6029
6029
  #
6030
6030
  #
6031
6031
  #
6032
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
6032
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
6033
6033
  # @return [String]
6034
6034
  #
6035
6035
  # @!attribute [rw] auto_minor_version_upgrade
@@ -6095,7 +6095,7 @@ module Aws::ElastiCache
6095
6095
  #
6096
6096
  #
6097
6097
  #
6098
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
6098
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/auth.html
6099
6099
  # @return [String]
6100
6100
  #
6101
6101
  # @!attribute [rw] log_delivery_configurations
@@ -6442,7 +6442,7 @@ module Aws::ElastiCache
6442
6442
  #
6443
6443
  #
6444
6444
  #
6445
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/SelectEngine.html#VersionManagement
6445
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/SelectEngine.html#VersionManagement
6446
6446
  # @return [String]
6447
6447
  #
6448
6448
  # @!attribute [rw] auto_minor_version_upgrade
@@ -6513,7 +6513,7 @@ module Aws::ElastiCache
6513
6513
  #
6514
6514
  #
6515
6515
  #
6516
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/auth.html
6516
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/auth.html
6517
6517
  # @return [String]
6518
6518
  #
6519
6519
  # @!attribute [rw] user_group_ids_to_add
@@ -6808,12 +6808,17 @@ module Aws::ElastiCache
6808
6808
  # The list of user IDs to remove from the user group.
6809
6809
  # @return [Array<String>]
6810
6810
  #
6811
+ # @!attribute [rw] engine
6812
+ # The engine for a user group.
6813
+ # @return [String]
6814
+ #
6811
6815
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyUserGroupMessage AWS API Documentation
6812
6816
  #
6813
6817
  class ModifyUserGroupMessage < Struct.new(
6814
6818
  :user_group_id,
6815
6819
  :user_ids_to_add,
6816
- :user_ids_to_remove)
6820
+ :user_ids_to_remove,
6821
+ :engine)
6817
6822
  SENSITIVE = []
6818
6823
  include Aws::Structure
6819
6824
  end
@@ -6842,6 +6847,10 @@ module Aws::ElastiCache
6842
6847
  # Specifies how to authenticate the user.
6843
6848
  # @return [Types::AuthenticationMode]
6844
6849
  #
6850
+ # @!attribute [rw] engine
6851
+ # The engine for a specific user.
6852
+ # @return [String]
6853
+ #
6845
6854
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyUserMessage AWS API Documentation
6846
6855
  #
6847
6856
  class ModifyUserMessage < Struct.new(
@@ -6850,7 +6859,8 @@ module Aws::ElastiCache
6850
6859
  :append_access_string,
6851
6860
  :passwords,
6852
6861
  :no_password_required,
6853
- :authentication_mode)
6862
+ :authentication_mode,
6863
+ :engine)
6854
6864
  SENSITIVE = []
6855
6865
  include Aws::Structure
6856
6866
  end
@@ -7224,7 +7234,7 @@ module Aws::ElastiCache
7224
7234
  #
7225
7235
  #
7226
7236
  #
7227
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Clusters.Rebooting.html
7237
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.Rebooting.html
7228
7238
  # @return [String]
7229
7239
  #
7230
7240
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Parameter AWS API Documentation
@@ -7647,7 +7657,7 @@ module Aws::ElastiCache
7647
7657
  #
7648
7658
  #
7649
7659
  #
7650
- # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
7660
+ # [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/dg/AutoFailover.html
7651
7661
  # @return [String]
7652
7662
  #
7653
7663
  # @!attribute [rw] configuration_endpoint
@@ -7757,7 +7767,7 @@ module Aws::ElastiCache
7757
7767
  #
7758
7768
  #
7759
7769
  #
7760
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
7770
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/data-tiering.html
7761
7771
  # @return [String]
7762
7772
  #
7763
7773
  # @!attribute [rw] auto_minor_version_upgrade
@@ -8082,7 +8092,7 @@ module Aws::ElastiCache
8082
8092
  #
8083
8093
  #
8084
8094
  #
8085
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
8095
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
8086
8096
  # @return [String]
8087
8097
  #
8088
8098
  # @!attribute [rw] start_time
@@ -8306,7 +8316,7 @@ module Aws::ElastiCache
8306
8316
  #
8307
8317
  #
8308
8318
  #
8309
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
8319
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
8310
8320
  # @return [String]
8311
8321
  #
8312
8322
  # @!attribute [rw] duration
@@ -8779,7 +8789,7 @@ module Aws::ElastiCache
8779
8789
  #
8780
8790
  #
8781
8791
  #
8782
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/elasticache-compliance.html#elasticache-compliance-self-service
8792
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/elasticache-compliance.html#elasticache-compliance-self-service
8783
8793
  # @return [Time]
8784
8794
  #
8785
8795
  # @!attribute [rw] service_update_status
@@ -9017,7 +9027,7 @@ module Aws::ElastiCache
9017
9027
  #
9018
9028
  #
9019
9029
  #
9020
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
9030
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/CacheNodes.SupportedTypes.html#CacheNodes.SupportedTypesByRegion
9021
9031
  # @return [String]
9022
9032
  #
9023
9033
  # @!attribute [rw] engine
@@ -9155,7 +9165,7 @@ module Aws::ElastiCache
9155
9165
  #
9156
9166
  #
9157
9167
  #
9158
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/data-tiering.html
9168
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/data-tiering.html
9159
9169
  # @return [String]
9160
9170
  #
9161
9171
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
@@ -9538,7 +9548,7 @@ module Aws::ElastiCache
9538
9548
  #
9539
9549
  #
9540
9550
  #
9541
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/elasticache-compliance.html#elasticache-compliance-self-service
9551
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/elasticache-compliance.html#elasticache-compliance-self-service
9542
9552
  # @return [Time]
9543
9553
  #
9544
9554
  # @!attribute [rw] service_update_type
@@ -55,7 +55,7 @@ module Aws::ElastiCache
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticache/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticache/endpoints'
57
57
 
58
- GEM_VERSION = '1.118.0'
58
+ GEM_VERSION = '1.120.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -1274,7 +1276,8 @@ module Aws
1274
1276
  ?authentication_mode: {
1275
1277
  type: ("password" | "no-password-required" | "iam")?,
1276
1278
  passwords: Array[::String]?
1277
- }
1279
+ },
1280
+ ?engine: ::String
1278
1281
  ) -> _ModifyUserResponseSuccess
1279
1282
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyUserResponseSuccess
1280
1283
 
@@ -1294,7 +1297,8 @@ module Aws
1294
1297
  def modify_user_group: (
1295
1298
  user_group_id: ::String,
1296
1299
  ?user_ids_to_add: Array[::String],
1297
- ?user_ids_to_remove: Array[::String]
1300
+ ?user_ids_to_remove: Array[::String],
1301
+ ?engine: ::String
1298
1302
  ) -> _ModifyUserGroupResponseSuccess
1299
1303
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyUserGroupResponseSuccess
1300
1304
 
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -1293,6 +1293,7 @@ module Aws::ElastiCache
1293
1293
  attr_accessor user_group_id: ::String
1294
1294
  attr_accessor user_ids_to_add: ::Array[::String]
1295
1295
  attr_accessor user_ids_to_remove: ::Array[::String]
1296
+ attr_accessor engine: ::String
1296
1297
  SENSITIVE: []
1297
1298
  end
1298
1299
 
@@ -1303,6 +1304,7 @@ module Aws::ElastiCache
1303
1304
  attr_accessor passwords: ::Array[::String]
1304
1305
  attr_accessor no_password_required: bool
1305
1306
  attr_accessor authentication_mode: Types::AuthenticationMode
1307
+ attr_accessor engine: ::String
1306
1308
  SENSITIVE: []
1307
1309
  end
1308
1310
 
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.118.0
4
+ version: 1.120.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: 2024-11-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement