aws-sdk-elasticache 1.84.0 → 1.85.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ac9826af8e13ee25d8b07a7d278c12e21183284191da8cb946a253b786a604c
4
- data.tar.gz: 618f94ae1a3d9c993b8e23157119a53ae6d3f9f4c66c386ee9491aec91fd2903
3
+ metadata.gz: f6d68f885cbef5870d991c9e22883b1523f0ec35fbc79744202a507ae96749ff
4
+ data.tar.gz: 49e30cab9deef220fc7cc39c424be6ea4a086ece071e3211871a7c8fadc9f7e2
5
5
  SHA512:
6
- metadata.gz: 2fadc87b68352624c78d5c9468c5158d6aa1a850e1e1a3e8f3686f84061c943500fc0c37a2400a54662011f84773e7772df3d051bf0bf34d3ab71afcc68b2554
7
- data.tar.gz: c632105fd123c5d6b2f1b612da3ad14d97c2ce79b187e78701967993a82a8a573dfb1bb151f92260d240242561babe97e623c685463260d554533b8bf66ce11d
6
+ metadata.gz: 15bc963ba4ead7d467361d3f9d9fa4cbb047b2900e656ba6639dd06fabcc04d12d0250028c0d52b32cdffbdd2d7ead6c83ed1473d4a93e2dc9f2d375cde98f77
7
+ data.tar.gz: 626624edf1b1d906d95000db6470b4bc15cde5b2081d2f05ffef59f17e540076f656185f0cc41b58cbf386c9b3074e2174d51e7dd46547acc94dce1e525322a0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.85.0 (2023-05-11)
5
+ ------------------
6
+
7
+ * Feature - Added support to modify the cluster mode configuration for the existing ElastiCache ReplicationGroups. Customers can now modify the configuration from cluster mode disabled to cluster mode enabled.
8
+
4
9
  1.84.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.85.0
@@ -687,6 +687,7 @@ module Aws::ElastiCache
687
687
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
688
688
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
689
689
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
690
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
690
691
  # resp.replication_group.member_clusters #=> Array
691
692
  # resp.replication_group.member_clusters[0] #=> String
692
693
  # resp.replication_group.node_groups #=> Array
@@ -738,6 +739,7 @@ module Aws::ElastiCache
738
739
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
739
740
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
740
741
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
742
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
741
743
  #
742
744
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
743
745
  #
@@ -1336,9 +1338,6 @@ module Aws::ElastiCache
1336
1338
  # @option params [Boolean] :transit_encryption_enabled
1337
1339
  # A flag that enables in-transit encryption when set to true.
1338
1340
  #
1339
- # Only available when creating a cache cluster in an Amazon VPC using
1340
- # Memcached version 1.6.12 or later.
1341
- #
1342
1341
  # @option params [String] :network_type
1343
1342
  # Must be either `ipv4` \| `ipv6` \| `dual_stack`. IPv6 is supported for
1344
1343
  # workloads using Redis engine version 6.2 onward or Memcached engine
@@ -1346,7 +1345,7 @@ module Aws::ElastiCache
1346
1345
  #
1347
1346
  #
1348
1347
  #
1349
- # [1]: https://aws.amazon.com/ec2/nitro/
1348
+ # [1]: http://aws.amazon.com/ec2/nitro/
1350
1349
  #
1351
1350
  # @option params [String] :ip_discovery
1352
1351
  # The network type you choose when modifying a cluster, either `ipv4` \|
@@ -1356,7 +1355,7 @@ module Aws::ElastiCache
1356
1355
  #
1357
1356
  #
1358
1357
  #
1359
- # [1]: https://aws.amazon.com/ec2/nitro/
1358
+ # [1]: http://aws.amazon.com/ec2/nitro/
1360
1359
  #
1361
1360
  # @return [Types::CreateCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1362
1361
  #
@@ -1617,7 +1616,7 @@ module Aws::ElastiCache
1617
1616
  #
1618
1617
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
1619
1618
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \| `redis5.0`
1620
- # \| `redis6.x`
1619
+ # \| `redis6.x` \| `redis7`
1621
1620
  #
1622
1621
  # @option params [required, String] :description
1623
1622
  # A user-specified description for the cache parameter group.
@@ -2447,7 +2446,7 @@ module Aws::ElastiCache
2447
2446
  #
2448
2447
  #
2449
2448
  #
2450
- # [1]: https://aws.amazon.com/ec2/nitro/
2449
+ # [1]: http://aws.amazon.com/ec2/nitro/
2451
2450
  #
2452
2451
  # @option params [String] :ip_discovery
2453
2452
  # The network type you choose when creating a replication group, either
@@ -2457,7 +2456,7 @@ module Aws::ElastiCache
2457
2456
  #
2458
2457
  #
2459
2458
  #
2460
- # [1]: https://aws.amazon.com/ec2/nitro/
2459
+ # [1]: http://aws.amazon.com/ec2/nitro/
2461
2460
  #
2462
2461
  # @option params [String] :transit_encryption_mode
2463
2462
  # A setting that allows you to migrate your clients to use in-transit
@@ -2471,9 +2470,20 @@ module Aws::ElastiCache
2471
2470
  #
2472
2471
  # Setting `TransitEncryptionMode` to `required` is a two-step process
2473
2472
  # that requires you to first set the `TransitEncryptionMode` to
2474
- # `preferred` first, after that you can set `TransitEncryptionMode` to
2473
+ # `preferred`, after that you can set `TransitEncryptionMode` to
2475
2474
  # `required`.
2476
2475
  #
2476
+ # This process will not trigger the replacement of the replication
2477
+ # group.
2478
+ #
2479
+ # @option params [String] :cluster_mode
2480
+ # Enabled or Disabled. To modify cluster mode from Disabled to Enabled,
2481
+ # you must first set the cluster mode to Compatible. Compatible mode
2482
+ # allows your Redis clients to connect using both cluster mode enabled
2483
+ # and cluster mode disabled. After you migrate all Redis clients to use
2484
+ # cluster mode enabled, you can then complete cluster mode configuration
2485
+ # and set the cluster mode to Enabled.
2486
+ #
2477
2487
  # @return [Types::CreateReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2478
2488
  #
2479
2489
  # * {Types::CreateReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -2639,6 +2649,7 @@ module Aws::ElastiCache
2639
2649
  # network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
2640
2650
  # ip_discovery: "ipv4", # accepts ipv4, ipv6
2641
2651
  # transit_encryption_mode: "preferred", # accepts preferred, required
2652
+ # cluster_mode: "enabled", # accepts enabled, disabled, compatible
2642
2653
  # })
2643
2654
  #
2644
2655
  # @example Response structure
@@ -2664,6 +2675,7 @@ module Aws::ElastiCache
2664
2675
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
2665
2676
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
2666
2677
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
2678
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
2667
2679
  # resp.replication_group.member_clusters #=> Array
2668
2680
  # resp.replication_group.member_clusters[0] #=> String
2669
2681
  # resp.replication_group.node_groups #=> Array
@@ -2715,6 +2727,7 @@ module Aws::ElastiCache
2715
2727
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
2716
2728
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
2717
2729
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
2730
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
2718
2731
  #
2719
2732
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
2720
2733
  #
@@ -3270,6 +3283,7 @@ module Aws::ElastiCache
3270
3283
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
3271
3284
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
3272
3285
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
3286
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
3273
3287
  # resp.replication_group.member_clusters #=> Array
3274
3288
  # resp.replication_group.member_clusters[0] #=> String
3275
3289
  # resp.replication_group.node_groups #=> Array
@@ -3321,6 +3335,7 @@ module Aws::ElastiCache
3321
3335
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
3322
3336
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
3323
3337
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
3338
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
3324
3339
  #
3325
3340
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3326
3341
  #
@@ -3770,6 +3785,7 @@ module Aws::ElastiCache
3770
3785
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
3771
3786
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
3772
3787
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
3788
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
3773
3789
  # resp.replication_group.member_clusters #=> Array
3774
3790
  # resp.replication_group.member_clusters[0] #=> String
3775
3791
  # resp.replication_group.node_groups #=> Array
@@ -3821,6 +3837,7 @@ module Aws::ElastiCache
3821
3837
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
3822
3838
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
3823
3839
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
3840
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
3824
3841
  #
3825
3842
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
3826
3843
  #
@@ -6400,6 +6417,7 @@ module Aws::ElastiCache
6400
6417
  # resp.replication_groups[0].pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
6401
6418
  # resp.replication_groups[0].pending_modified_values.transit_encryption_enabled #=> Boolean
6402
6419
  # resp.replication_groups[0].pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
6420
+ # resp.replication_groups[0].pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
6403
6421
  # resp.replication_groups[0].member_clusters #=> Array
6404
6422
  # resp.replication_groups[0].member_clusters[0] #=> String
6405
6423
  # resp.replication_groups[0].node_groups #=> Array
@@ -6451,6 +6469,7 @@ module Aws::ElastiCache
6451
6469
  # resp.replication_groups[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
6452
6470
  # resp.replication_groups[0].ip_discovery #=> String, one of "ipv4", "ipv6"
6453
6471
  # resp.replication_groups[0].transit_encryption_mode #=> String, one of "preferred", "required"
6472
+ # resp.replication_groups[0].cluster_mode #=> String, one of "enabled", "disabled", "compatible"
6454
6473
  #
6455
6474
  #
6456
6475
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -7925,6 +7944,7 @@ module Aws::ElastiCache
7925
7944
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
7926
7945
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
7927
7946
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
7947
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
7928
7948
  # resp.replication_group.member_clusters #=> Array
7929
7949
  # resp.replication_group.member_clusters[0] #=> String
7930
7950
  # resp.replication_group.node_groups #=> Array
@@ -7976,6 +7996,7 @@ module Aws::ElastiCache
7976
7996
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
7977
7997
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
7978
7998
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
7999
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
7979
8000
  #
7980
8001
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
7981
8002
  #
@@ -8473,7 +8494,7 @@ module Aws::ElastiCache
8473
8494
  #
8474
8495
  #
8475
8496
  #
8476
- # [1]: https://aws.amazon.com/ec2/nitro/
8497
+ # [1]: http://aws.amazon.com/ec2/nitro/
8477
8498
  #
8478
8499
  # @return [Types::ModifyCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8479
8500
  #
@@ -9118,7 +9139,7 @@ module Aws::ElastiCache
9118
9139
  #
9119
9140
  #
9120
9141
  #
9121
- # [1]: https://aws.amazon.com/ec2/nitro/
9142
+ # [1]: http://aws.amazon.com/ec2/nitro/
9122
9143
  #
9123
9144
  # @option params [Boolean] :transit_encryption_enabled
9124
9145
  # A flag that enables in-transit encryption when set to true. If you are
@@ -9138,9 +9159,17 @@ module Aws::ElastiCache
9138
9159
  #
9139
9160
  # Setting `TransitEncryptionMode` to `required` is a two-step process
9140
9161
  # that requires you to first set the `TransitEncryptionMode` to
9141
- # `preferred` first, after that you can set `TransitEncryptionMode` to
9162
+ # `preferred`, after that you can set `TransitEncryptionMode` to
9142
9163
  # `required`.
9143
9164
  #
9165
+ # @option params [String] :cluster_mode
9166
+ # Enabled or Disabled. To modify cluster mode from Disabled to Enabled,
9167
+ # you must first set the cluster mode to Compatible. Compatible mode
9168
+ # allows your Redis clients to connect using both cluster mode enabled
9169
+ # and cluster mode disabled. After you migrate all Redis clients to use
9170
+ # cluster mode enabled, you can then complete cluster mode configuration
9171
+ # and set the cluster mode to Enabled.
9172
+ #
9144
9173
  # @return [Types::ModifyReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9145
9174
  #
9146
9175
  # * {Types::ModifyReplicationGroupResult#replication_group #replication_group} => Types::ReplicationGroup
@@ -9262,6 +9291,7 @@ module Aws::ElastiCache
9262
9291
  # ip_discovery: "ipv4", # accepts ipv4, ipv6
9263
9292
  # transit_encryption_enabled: false,
9264
9293
  # transit_encryption_mode: "preferred", # accepts preferred, required
9294
+ # cluster_mode: "enabled", # accepts enabled, disabled, compatible
9265
9295
  # })
9266
9296
  #
9267
9297
  # @example Response structure
@@ -9287,6 +9317,7 @@ module Aws::ElastiCache
9287
9317
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9288
9318
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
9289
9319
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
9320
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
9290
9321
  # resp.replication_group.member_clusters #=> Array
9291
9322
  # resp.replication_group.member_clusters[0] #=> String
9292
9323
  # resp.replication_group.node_groups #=> Array
@@ -9338,6 +9369,7 @@ module Aws::ElastiCache
9338
9369
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
9339
9370
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
9340
9371
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
9372
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
9341
9373
  #
9342
9374
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
9343
9375
  #
@@ -9437,6 +9469,7 @@ module Aws::ElastiCache
9437
9469
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9438
9470
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
9439
9471
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
9472
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
9440
9473
  # resp.replication_group.member_clusters #=> Array
9441
9474
  # resp.replication_group.member_clusters[0] #=> String
9442
9475
  # resp.replication_group.node_groups #=> Array
@@ -9488,6 +9521,7 @@ module Aws::ElastiCache
9488
9521
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
9489
9522
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
9490
9523
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
9524
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
9491
9525
  #
9492
9526
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
9493
9527
  #
@@ -10204,6 +10238,7 @@ module Aws::ElastiCache
10204
10238
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
10205
10239
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
10206
10240
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
10241
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
10207
10242
  # resp.replication_group.member_clusters #=> Array
10208
10243
  # resp.replication_group.member_clusters[0] #=> String
10209
10244
  # resp.replication_group.node_groups #=> Array
@@ -10255,6 +10290,7 @@ module Aws::ElastiCache
10255
10290
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
10256
10291
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
10257
10292
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
10293
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
10258
10294
  #
10259
10295
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
10260
10296
  #
@@ -10368,6 +10404,7 @@ module Aws::ElastiCache
10368
10404
  # resp.replication_group.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
10369
10405
  # resp.replication_group.pending_modified_values.transit_encryption_enabled #=> Boolean
10370
10406
  # resp.replication_group.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
10407
+ # resp.replication_group.pending_modified_values.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
10371
10408
  # resp.replication_group.member_clusters #=> Array
10372
10409
  # resp.replication_group.member_clusters[0] #=> String
10373
10410
  # resp.replication_group.node_groups #=> Array
@@ -10419,6 +10456,7 @@ module Aws::ElastiCache
10419
10456
  # resp.replication_group.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
10420
10457
  # resp.replication_group.ip_discovery #=> String, one of "ipv4", "ipv6"
10421
10458
  # resp.replication_group.transit_encryption_mode #=> String, one of "preferred", "required"
10459
+ # resp.replication_group.cluster_mode #=> String, one of "enabled", "disabled", "compatible"
10422
10460
  #
10423
10461
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
10424
10462
  #
@@ -10442,7 +10480,7 @@ module Aws::ElastiCache
10442
10480
  params: params,
10443
10481
  config: config)
10444
10482
  context[:gem_name] = 'aws-sdk-elasticache'
10445
- context[:gem_version] = '1.84.0'
10483
+ context[:gem_version] = '1.85.0'
10446
10484
  Seahorse::Client::Request.new(handlers, context)
10447
10485
  end
10448
10486
 
@@ -83,6 +83,7 @@ module Aws::ElastiCache
83
83
  ChangeType = Shapes::StringShape.new(name: 'ChangeType')
84
84
  CloudWatchLogsDestinationDetails = Shapes::StructureShape.new(name: 'CloudWatchLogsDestinationDetails')
85
85
  ClusterIdList = Shapes::ListShape.new(name: 'ClusterIdList')
86
+ ClusterMode = Shapes::StringShape.new(name: 'ClusterMode')
86
87
  ClusterQuotaForCustomerExceededFault = Shapes::StructureShape.new(name: 'ClusterQuotaForCustomerExceededFault')
87
88
  CompleteMigrationMessage = Shapes::StructureShape.new(name: 'CompleteMigrationMessage')
88
89
  CompleteMigrationResponse = Shapes::StructureShape.new(name: 'CompleteMigrationResponse')
@@ -747,6 +748,7 @@ module Aws::ElastiCache
747
748
  CreateReplicationGroupMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
748
749
  CreateReplicationGroupMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
749
750
  CreateReplicationGroupMessage.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
751
+ CreateReplicationGroupMessage.add_member(:cluster_mode, Shapes::ShapeRef.new(shape: ClusterMode, location_name: "ClusterMode"))
750
752
  CreateReplicationGroupMessage.struct_class = Types::CreateReplicationGroupMessage
751
753
 
752
754
  CreateReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
@@ -1249,6 +1251,7 @@ module Aws::ElastiCache
1249
1251
  ModifyReplicationGroupMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
1250
1252
  ModifyReplicationGroupMessage.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
1251
1253
  ModifyReplicationGroupMessage.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
1254
+ ModifyReplicationGroupMessage.add_member(:cluster_mode, Shapes::ShapeRef.new(shape: ClusterMode, location_name: "ClusterMode"))
1252
1255
  ModifyReplicationGroupMessage.struct_class = Types::ModifyReplicationGroupMessage
1253
1256
 
1254
1257
  ModifyReplicationGroupResult.add_member(:replication_group, Shapes::ShapeRef.new(shape: ReplicationGroup, location_name: "ReplicationGroup"))
@@ -1488,6 +1491,7 @@ module Aws::ElastiCache
1488
1491
  ReplicationGroup.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
1489
1492
  ReplicationGroup.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
1490
1493
  ReplicationGroup.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
1494
+ ReplicationGroup.add_member(:cluster_mode, Shapes::ShapeRef.new(shape: ClusterMode, location_name: "ClusterMode"))
1491
1495
  ReplicationGroup.struct_class = Types::ReplicationGroup
1492
1496
 
1493
1497
  ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
@@ -1516,6 +1520,7 @@ module Aws::ElastiCache
1516
1520
  ReplicationGroupPendingModifiedValues.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: PendingLogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
1517
1521
  ReplicationGroupPendingModifiedValues.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
1518
1522
  ReplicationGroupPendingModifiedValues.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
1523
+ ReplicationGroupPendingModifiedValues.add_member(:cluster_mode, Shapes::ShapeRef.new(shape: ClusterMode, location_name: "ClusterMode"))
1519
1524
  ReplicationGroupPendingModifiedValues.struct_class = Types::ReplicationGroupPendingModifiedValues
1520
1525
 
1521
1526
  ReservedCacheNode.add_member(:reserved_cache_node_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedCacheNodeId"))
@@ -50,9 +50,6 @@ module Aws::ElastiCache
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -14,39 +14,42 @@ module Aws::ElastiCache
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint)
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
26
20
  end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://elasticache-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
32
23
  end
33
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
- return Aws::Endpoints::Endpoint.new(url: "https://elasticache.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticache-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
37
31
  end
38
- return Aws::Endpoints::Endpoint.new(url: "https://elasticache-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
39
33
  end
40
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
41
- end
42
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
43
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
44
- return Aws::Endpoints::Endpoint.new(url: "https://elasticache.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
37
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticache.#{region}.amazonaws.com", headers: {}, properties: {})
38
+ end
39
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticache-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
+ end
41
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
42
+ end
43
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
44
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
45
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticache.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
46
+ end
47
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
48
  end
46
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
49
+ return Aws::Endpoints::Endpoint.new(url: "https://elasticache.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
47
50
  end
48
- return Aws::Endpoints::Endpoint.new(url: "https://elasticache.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
49
51
  end
52
+ raise ArgumentError, "Invalid Configuration: Missing Region"
50
53
  raise ArgumentError, 'No endpoint could be resolved'
51
54
 
52
55
  end
@@ -545,7 +545,7 @@ module Aws::ElastiCache
545
545
  #
546
546
  #
547
547
  #
548
- # [1]: https://aws.amazon.com/ec2/nitro/
548
+ # [1]: http://aws.amazon.com/ec2/nitro/
549
549
  # @return [String]
550
550
  #
551
551
  # @!attribute [rw] ip_discovery
@@ -556,7 +556,7 @@ module Aws::ElastiCache
556
556
  #
557
557
  #
558
558
  #
559
- # [1]: https://aws.amazon.com/ec2/nitro/
559
+ # [1]: http://aws.amazon.com/ec2/nitro/
560
560
  # @return [String]
561
561
  #
562
562
  # @!attribute [rw] transit_encryption_mode
@@ -652,7 +652,7 @@ module Aws::ElastiCache
652
652
  #
653
653
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
654
654
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
655
- # `redis5.0` \| `redis6.x`
655
+ # `redis5.0` \| `redis6.x` \| `redis7`
656
656
  # @return [String]
657
657
  #
658
658
  # @!attribute [rw] cache_engine_description
@@ -1006,7 +1006,7 @@ module Aws::ElastiCache
1006
1006
  #
1007
1007
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
1008
1008
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
1009
- # `redis5.0` \| `redis6.x` \|
1009
+ # `redis5.0` \| `redis6.x` \| `redis7`
1010
1010
  # @return [String]
1011
1011
  #
1012
1012
  # @!attribute [rw] description
@@ -1281,7 +1281,7 @@ module Aws::ElastiCache
1281
1281
  #
1282
1282
  #
1283
1283
  #
1284
- # [1]: https://aws.amazon.com/ec2/nitro/
1284
+ # [1]: http://aws.amazon.com/ec2/nitro/
1285
1285
  # @return [Array<String>]
1286
1286
  #
1287
1287
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSubnetGroup AWS API Documentation
@@ -1916,9 +1916,6 @@ module Aws::ElastiCache
1916
1916
  #
1917
1917
  # @!attribute [rw] transit_encryption_enabled
1918
1918
  # A flag that enables in-transit encryption when set to true.
1919
- #
1920
- # Only available when creating a cache cluster in an Amazon VPC using
1921
- # Memcached version 1.6.12 or later.
1922
1919
  # @return [Boolean]
1923
1920
  #
1924
1921
  # @!attribute [rw] network_type
@@ -1929,7 +1926,7 @@ module Aws::ElastiCache
1929
1926
  #
1930
1927
  #
1931
1928
  #
1932
- # [1]: https://aws.amazon.com/ec2/nitro/
1929
+ # [1]: http://aws.amazon.com/ec2/nitro/
1933
1930
  # @return [String]
1934
1931
  #
1935
1932
  # @!attribute [rw] ip_discovery
@@ -1940,7 +1937,7 @@ module Aws::ElastiCache
1940
1937
  #
1941
1938
  #
1942
1939
  #
1943
- # [1]: https://aws.amazon.com/ec2/nitro/
1940
+ # [1]: http://aws.amazon.com/ec2/nitro/
1944
1941
  # @return [String]
1945
1942
  #
1946
1943
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheClusterMessage AWS API Documentation
@@ -2004,7 +2001,7 @@ module Aws::ElastiCache
2004
2001
  #
2005
2002
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
2006
2003
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
2007
- # `redis5.0` \| `redis6.x`
2004
+ # `redis5.0` \| `redis6.x` \| `redis7`
2008
2005
  # @return [String]
2009
2006
  #
2010
2007
  # @!attribute [rw] description
@@ -2686,7 +2683,7 @@ module Aws::ElastiCache
2686
2683
  #
2687
2684
  #
2688
2685
  #
2689
- # [1]: https://aws.amazon.com/ec2/nitro/
2686
+ # [1]: http://aws.amazon.com/ec2/nitro/
2690
2687
  # @return [String]
2691
2688
  #
2692
2689
  # @!attribute [rw] ip_discovery
@@ -2697,7 +2694,7 @@ module Aws::ElastiCache
2697
2694
  #
2698
2695
  #
2699
2696
  #
2700
- # [1]: https://aws.amazon.com/ec2/nitro/
2697
+ # [1]: http://aws.amazon.com/ec2/nitro/
2701
2698
  # @return [String]
2702
2699
  #
2703
2700
  # @!attribute [rw] transit_encryption_mode
@@ -2713,8 +2710,20 @@ module Aws::ElastiCache
2713
2710
  #
2714
2711
  # Setting `TransitEncryptionMode` to `required` is a two-step process
2715
2712
  # that requires you to first set the `TransitEncryptionMode` to
2716
- # `preferred` first, after that you can set `TransitEncryptionMode` to
2713
+ # `preferred`, after that you can set `TransitEncryptionMode` to
2717
2714
  # `required`.
2715
+ #
2716
+ # This process will not trigger the replacement of the replication
2717
+ # group.
2718
+ # @return [String]
2719
+ #
2720
+ # @!attribute [rw] cluster_mode
2721
+ # Enabled or Disabled. To modify cluster mode from Disabled to
2722
+ # Enabled, you must first set the cluster mode to Compatible.
2723
+ # Compatible mode allows your Redis clients to connect using both
2724
+ # cluster mode enabled and cluster mode disabled. After you migrate
2725
+ # all Redis clients to use cluster mode enabled, you can then complete
2726
+ # cluster mode configuration and set the cluster mode to Enabled.
2718
2727
  # @return [String]
2719
2728
  #
2720
2729
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroupMessage AWS API Documentation
@@ -2756,7 +2765,8 @@ module Aws::ElastiCache
2756
2765
  :data_tiering_enabled,
2757
2766
  :network_type,
2758
2767
  :ip_discovery,
2759
- :transit_encryption_mode)
2768
+ :transit_encryption_mode,
2769
+ :cluster_mode)
2760
2770
  SENSITIVE = []
2761
2771
  include Aws::Structure
2762
2772
  end
@@ -4513,7 +4523,7 @@ module Aws::ElastiCache
4513
4523
  #
4514
4524
  # Valid values are: `memcached1.4` \| `memcached1.5` \| `memcached1.6`
4515
4525
  # \| `redis2.6` \| `redis2.8` \| `redis3.2` \| `redis4.0` \|
4516
- # `redis5.0` \| `redis6.0` \| `redis6.x`
4526
+ # `redis5.0` \| `redis6.0` \| `redis6.x` \| `redis7`
4517
4527
  # @return [String]
4518
4528
  #
4519
4529
  # @!attribute [rw] marker
@@ -5561,7 +5571,7 @@ module Aws::ElastiCache
5561
5571
  #
5562
5572
  #
5563
5573
  #
5564
- # [1]: https://aws.amazon.com/ec2/nitro/
5574
+ # [1]: http://aws.amazon.com/ec2/nitro/
5565
5575
  # @return [String]
5566
5576
  #
5567
5577
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheClusterMessage AWS API Documentation
@@ -5979,7 +5989,7 @@ module Aws::ElastiCache
5979
5989
  #
5980
5990
  #
5981
5991
  #
5982
- # [1]: https://aws.amazon.com/ec2/nitro/
5992
+ # [1]: http://aws.amazon.com/ec2/nitro/
5983
5993
  # @return [String]
5984
5994
  #
5985
5995
  # @!attribute [rw] transit_encryption_enabled
@@ -6001,10 +6011,19 @@ module Aws::ElastiCache
6001
6011
  #
6002
6012
  # Setting `TransitEncryptionMode` to `required` is a two-step process
6003
6013
  # that requires you to first set the `TransitEncryptionMode` to
6004
- # `preferred` first, after that you can set `TransitEncryptionMode` to
6014
+ # `preferred`, after that you can set `TransitEncryptionMode` to
6005
6015
  # `required`.
6006
6016
  # @return [String]
6007
6017
  #
6018
+ # @!attribute [rw] cluster_mode
6019
+ # Enabled or Disabled. To modify cluster mode from Disabled to
6020
+ # Enabled, you must first set the cluster mode to Compatible.
6021
+ # Compatible mode allows your Redis clients to connect using both
6022
+ # cluster mode enabled and cluster mode disabled. After you migrate
6023
+ # all Redis clients to use cluster mode enabled, you can then complete
6024
+ # cluster mode configuration and set the cluster mode to Enabled.
6025
+ # @return [String]
6026
+ #
6008
6027
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupMessage AWS API Documentation
6009
6028
  #
6010
6029
  class ModifyReplicationGroupMessage < Struct.new(
@@ -6035,7 +6054,8 @@ module Aws::ElastiCache
6035
6054
  :log_delivery_configurations,
6036
6055
  :ip_discovery,
6037
6056
  :transit_encryption_enabled,
6038
- :transit_encryption_mode)
6057
+ :transit_encryption_mode,
6058
+ :cluster_mode)
6039
6059
  SENSITIVE = []
6040
6060
  include Aws::Structure
6041
6061
  end
@@ -7092,10 +7112,10 @@ module Aws::ElastiCache
7092
7112
  # @return [String]
7093
7113
  #
7094
7114
  # @!attribute [rw] auto_minor_version_upgrade
7095
- #  If you are running Redis engine version 6.0 or later, set this
7115
+ # If you are running Redis engine version 6.0 or later, set this
7096
7116
  # parameter to yes if you want to opt-in to the next auto minor
7097
7117
  # version upgrade campaign. This parameter is disabled for previous
7098
- # versions. 
7118
+ # versions.
7099
7119
  # @return [Boolean]
7100
7120
  #
7101
7121
  # @!attribute [rw] network_type
@@ -7106,7 +7126,7 @@ module Aws::ElastiCache
7106
7126
  #
7107
7127
  #
7108
7128
  #
7109
- # [1]: https://aws.amazon.com/ec2/nitro/
7129
+ # [1]: http://aws.amazon.com/ec2/nitro/
7110
7130
  # @return [String]
7111
7131
  #
7112
7132
  # @!attribute [rw] ip_discovery
@@ -7117,7 +7137,7 @@ module Aws::ElastiCache
7117
7137
  #
7118
7138
  #
7119
7139
  #
7120
- # [1]: https://aws.amazon.com/ec2/nitro/
7140
+ # [1]: http://aws.amazon.com/ec2/nitro/
7121
7141
  # @return [String]
7122
7142
  #
7123
7143
  # @!attribute [rw] transit_encryption_mode
@@ -7125,6 +7145,15 @@ module Aws::ElastiCache
7125
7145
  # encryption, with no downtime.
7126
7146
  # @return [String]
7127
7147
  #
7148
+ # @!attribute [rw] cluster_mode
7149
+ # Enabled or Disabled. To modify cluster mode from Disabled to
7150
+ # Enabled, you must first set the cluster mode to Compatible.
7151
+ # Compatible mode allows your Redis clients to connect using both
7152
+ # cluster mode enabled and cluster mode disabled. After you migrate
7153
+ # all Redis clients to use cluster mode enabled, you can then complete
7154
+ # cluster mode configuration and set the cluster mode to Enabled.
7155
+ # @return [String]
7156
+ #
7128
7157
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
7129
7158
  #
7130
7159
  class ReplicationGroup < Struct.new(
@@ -7157,7 +7186,8 @@ module Aws::ElastiCache
7157
7186
  :auto_minor_version_upgrade,
7158
7187
  :network_type,
7159
7188
  :ip_discovery,
7160
- :transit_encryption_mode)
7189
+ :transit_encryption_mode,
7190
+ :cluster_mode)
7161
7191
  SENSITIVE = []
7162
7192
  include Aws::Structure
7163
7193
  end
@@ -7245,6 +7275,15 @@ module Aws::ElastiCache
7245
7275
  # encryption, with no downtime.
7246
7276
  # @return [String]
7247
7277
  #
7278
+ # @!attribute [rw] cluster_mode
7279
+ # Enabled or Disabled. To modify cluster mode from Disabled to
7280
+ # Enabled, you must first set the cluster mode to Compatible.
7281
+ # Compatible mode allows your Redis clients to connect using both
7282
+ # cluster mode enabled and cluster mode disabled. After you migrate
7283
+ # all Redis clients to use cluster mode enabled, you can then complete
7284
+ # cluster mode configuration and set the cluster mode to Enabled.
7285
+ # @return [String]
7286
+ #
7248
7287
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroupPendingModifiedValues AWS API Documentation
7249
7288
  #
7250
7289
  class ReplicationGroupPendingModifiedValues < Struct.new(
@@ -7255,7 +7294,8 @@ module Aws::ElastiCache
7255
7294
  :user_groups,
7256
7295
  :log_delivery_configurations,
7257
7296
  :transit_encryption_enabled,
7258
- :transit_encryption_mode)
7297
+ :transit_encryption_mode,
7298
+ :cluster_mode)
7259
7299
  SENSITIVE = []
7260
7300
  include Aws::Structure
7261
7301
  end
@@ -8326,7 +8366,7 @@ module Aws::ElastiCache
8326
8366
  #
8327
8367
  #
8328
8368
  #
8329
- # [1]: https://aws.amazon.com/ec2/nitro/
8369
+ # [1]: http://aws.amazon.com/ec2/nitro/
8330
8370
  # @return [Array<String>]
8331
8371
  #
8332
8372
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Subnet AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticache/customizations'
53
53
  # @!group service
54
54
  module Aws::ElastiCache
55
55
 
56
- GEM_VERSION = '1.84.0'
56
+ GEM_VERSION = '1.85.0'
57
57
 
58
58
  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.84.0
4
+ version: 1.85.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: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core