aws-sdk-memorydb 1.38.0 → 1.40.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.
@@ -217,6 +217,10 @@ module Aws::MemoryDB
217
217
  # A group of settings that are currently being applied.
218
218
  # @return [Types::ClusterPendingUpdates]
219
219
  #
220
+ # @!attribute [rw] multi_region_cluster_name
221
+ # The name of the multi-Region cluster that this cluster belongs to.
222
+ # @return [String]
223
+ #
220
224
  # @!attribute [rw] number_of_shards
221
225
  # The number of shards in the cluster
222
226
  # @return [Integer]
@@ -239,15 +243,15 @@ module Aws::MemoryDB
239
243
  # @return [String]
240
244
  #
241
245
  # @!attribute [rw] engine
242
- # The Redis OSS or Valkey engine used by the cluster.
246
+ # The name of the engine used by the cluster.
243
247
  # @return [String]
244
248
  #
245
249
  # @!attribute [rw] engine_version
246
- # The Redis engine version used by the cluster
250
+ # The Redis OSS engine version used by the cluster
247
251
  # @return [String]
248
252
  #
249
253
  # @!attribute [rw] engine_patch_version
250
- # The engine patch version used by the cluster
254
+ # The Redis OSS engine patch version used by the cluster
251
255
  # @return [String]
252
256
  #
253
257
  # @!attribute [rw] parameter_group_name
@@ -334,6 +338,7 @@ module Aws::MemoryDB
334
338
  :description,
335
339
  :status,
336
340
  :pending_updates,
341
+ :multi_region_cluster_name,
337
342
  :number_of_shards,
338
343
  :shards,
339
344
  :availability_mode,
@@ -380,12 +385,11 @@ module Aws::MemoryDB
380
385
  # @return [String]
381
386
  #
382
387
  # @!attribute [rw] engine
383
- # The configuration for the Redis OSS or Valkey engine used by the
384
- # cluster.
388
+ # The name of the engine used by the cluster configuration.
385
389
  # @return [String]
386
390
  #
387
391
  # @!attribute [rw] engine_version
388
- # The engine version used by the cluster
392
+ # The Redis OSS engine version used by the cluster
389
393
  # @return [String]
390
394
  #
391
395
  # @!attribute [rw] maintenance_window
@@ -429,6 +433,16 @@ module Aws::MemoryDB
429
433
  # The list of shards in the cluster
430
434
  # @return [Array<Types::ShardDetail>]
431
435
  #
436
+ # @!attribute [rw] multi_region_parameter_group_name
437
+ # The name of the multi-Region parameter group associated with the
438
+ # cluster configuration.
439
+ # @return [String]
440
+ #
441
+ # @!attribute [rw] multi_region_cluster_name
442
+ # The name for the multi-Region cluster associated with the cluster
443
+ # configuration.
444
+ # @return [String]
445
+ #
432
446
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ClusterConfiguration AWS API Documentation
433
447
  #
434
448
  class ClusterConfiguration < Struct.new(
@@ -446,7 +460,9 @@ module Aws::MemoryDB
446
460
  :snapshot_retention_limit,
447
461
  :snapshot_window,
448
462
  :num_shards,
449
- :shards)
463
+ :shards,
464
+ :multi_region_parameter_group_name,
465
+ :multi_region_cluster_name)
450
466
  SENSITIVE = []
451
467
  include Aws::Structure
452
468
  end
@@ -586,6 +602,10 @@ module Aws::MemoryDB
586
602
  # The compute and memory capacity of the nodes in the cluster.
587
603
  # @return [String]
588
604
  #
605
+ # @!attribute [rw] multi_region_cluster_name
606
+ # The name of the multi-Region cluster to be created.
607
+ # @return [String]
608
+ #
589
609
  # @!attribute [rw] parameter_group_name
590
610
  # The name of the parameter group associated with the cluster.
591
611
  # @return [String]
@@ -696,12 +716,12 @@ module Aws::MemoryDB
696
716
  # @return [String]
697
717
  #
698
718
  # @!attribute [rw] engine
699
- # The name of the engine to be used for the nodes in this cluster. The
700
- # value must be set to either Redis or Valkey.
719
+ # The name of the engine to be used for the cluster.
701
720
  # @return [String]
702
721
  #
703
722
  # @!attribute [rw] engine_version
704
- # The version number of the engine to be used for the cluster.
723
+ # The version number of the Redis OSS engine to be used for the
724
+ # cluster.
705
725
  # @return [String]
706
726
  #
707
727
  # @!attribute [rw] auto_minor_version_upgrade
@@ -724,6 +744,7 @@ module Aws::MemoryDB
724
744
  class CreateClusterRequest < Struct.new(
725
745
  :cluster_name,
726
746
  :node_type,
747
+ :multi_region_cluster_name,
727
748
  :parameter_group_name,
728
749
  :description,
729
750
  :num_shards,
@@ -761,6 +782,71 @@ module Aws::MemoryDB
761
782
  include Aws::Structure
762
783
  end
763
784
 
785
+ # @!attribute [rw] multi_region_cluster_name_suffix
786
+ # A suffix to be added to the multi-Region cluster name.
787
+ # @return [String]
788
+ #
789
+ # @!attribute [rw] description
790
+ # A description for the multi-Region cluster.
791
+ # @return [String]
792
+ #
793
+ # @!attribute [rw] engine
794
+ # The name of the engine to be used for the multi-Region cluster.
795
+ # @return [String]
796
+ #
797
+ # @!attribute [rw] engine_version
798
+ # The version of the engine to be used for the multi-Region cluster.
799
+ # @return [String]
800
+ #
801
+ # @!attribute [rw] node_type
802
+ # The node type to be used for the multi-Region cluster.
803
+ # @return [String]
804
+ #
805
+ # @!attribute [rw] multi_region_parameter_group_name
806
+ # The name of the multi-Region parameter group to be associated with
807
+ # the cluster.
808
+ # @return [String]
809
+ #
810
+ # @!attribute [rw] num_shards
811
+ # The number of shards for the multi-Region cluster.
812
+ # @return [Integer]
813
+ #
814
+ # @!attribute [rw] tls_enabled
815
+ # Whether to enable TLS encryption for the multi-Region cluster.
816
+ # @return [Boolean]
817
+ #
818
+ # @!attribute [rw] tags
819
+ # A list of tags to be applied to the multi-Region cluster.
820
+ # @return [Array<Types::Tag>]
821
+ #
822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateMultiRegionClusterRequest AWS API Documentation
823
+ #
824
+ class CreateMultiRegionClusterRequest < Struct.new(
825
+ :multi_region_cluster_name_suffix,
826
+ :description,
827
+ :engine,
828
+ :engine_version,
829
+ :node_type,
830
+ :multi_region_parameter_group_name,
831
+ :num_shards,
832
+ :tls_enabled,
833
+ :tags)
834
+ SENSITIVE = []
835
+ include Aws::Structure
836
+ end
837
+
838
+ # @!attribute [rw] multi_region_cluster
839
+ # Details about the newly created multi-Region cluster.
840
+ # @return [Types::MultiRegionCluster]
841
+ #
842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateMultiRegionClusterResponse AWS API Documentation
843
+ #
844
+ class CreateMultiRegionClusterResponse < Struct.new(
845
+ :multi_region_cluster)
846
+ SENSITIVE = []
847
+ include Aws::Structure
848
+ end
849
+
764
850
  # @!attribute [rw] parameter_group_name
765
851
  # The name of the parameter group.
766
852
  # @return [String]
@@ -874,7 +960,7 @@ module Aws::MemoryDB
874
960
  end
875
961
 
876
962
  # @!attribute [rw] subnet_group
877
- # The newly-created subnet group
963
+ # The newly-created subnet group.
878
964
  # @return [Types::SubnetGroup]
879
965
  #
880
966
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateSubnetGroupResponse AWS API Documentation
@@ -933,7 +1019,7 @@ module Aws::MemoryDB
933
1019
  class DefaultUserRequired < Aws::EmptyStructure; end
934
1020
 
935
1021
  # @!attribute [rw] acl_name
936
- # The name of the Access Control List to delete
1022
+ # The name of the Access Control List to delete.
937
1023
  # @return [String]
938
1024
  #
939
1025
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteACLRequest AWS API Documentation
@@ -960,6 +1046,10 @@ module Aws::MemoryDB
960
1046
  # The name of the cluster to be deleted
961
1047
  # @return [String]
962
1048
  #
1049
+ # @!attribute [rw] multi_region_cluster_name
1050
+ # The name of the multi-Region cluster to be deleted.
1051
+ # @return [String]
1052
+ #
963
1053
  # @!attribute [rw] final_snapshot_name
964
1054
  # The user-supplied name of a final cluster snapshot. This is the
965
1055
  # unique name that identifies the snapshot. MemoryDB creates the
@@ -970,13 +1060,14 @@ module Aws::MemoryDB
970
1060
  #
971
1061
  class DeleteClusterRequest < Struct.new(
972
1062
  :cluster_name,
1063
+ :multi_region_cluster_name,
973
1064
  :final_snapshot_name)
974
1065
  SENSITIVE = []
975
1066
  include Aws::Structure
976
1067
  end
977
1068
 
978
1069
  # @!attribute [rw] cluster
979
- # The cluster object that has been deleted
1070
+ # The cluster object that has been deleted.
980
1071
  # @return [Types::Cluster]
981
1072
  #
982
1073
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteClusterResponse AWS API Documentation
@@ -987,6 +1078,30 @@ module Aws::MemoryDB
987
1078
  include Aws::Structure
988
1079
  end
989
1080
 
1081
+ # @!attribute [rw] multi_region_cluster_name
1082
+ # The name of the multi-Region cluster to be deleted.
1083
+ # @return [String]
1084
+ #
1085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteMultiRegionClusterRequest AWS API Documentation
1086
+ #
1087
+ class DeleteMultiRegionClusterRequest < Struct.new(
1088
+ :multi_region_cluster_name)
1089
+ SENSITIVE = []
1090
+ include Aws::Structure
1091
+ end
1092
+
1093
+ # @!attribute [rw] multi_region_cluster
1094
+ # Details about the deleted multi-Region cluster.
1095
+ # @return [Types::MultiRegionCluster]
1096
+ #
1097
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteMultiRegionClusterResponse AWS API Documentation
1098
+ #
1099
+ class DeleteMultiRegionClusterResponse < Struct.new(
1100
+ :multi_region_cluster)
1101
+ SENSITIVE = []
1102
+ include Aws::Structure
1103
+ end
1104
+
990
1105
  # @!attribute [rw] parameter_group_name
991
1106
  # The name of the parameter group to delete.
992
1107
  # @return [String]
@@ -1012,7 +1127,7 @@ module Aws::MemoryDB
1012
1127
  end
1013
1128
 
1014
1129
  # @!attribute [rw] snapshot_name
1015
- # The name of the snapshot to delete
1130
+ # The name of the snapshot to delete.
1016
1131
  # @return [String]
1017
1132
  #
1018
1133
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteSnapshotRequest AWS API Documentation
@@ -1036,7 +1151,7 @@ module Aws::MemoryDB
1036
1151
  end
1037
1152
 
1038
1153
  # @!attribute [rw] subnet_group_name
1039
- # The name of the subnet group to delete
1154
+ # The name of the subnet group to delete.
1040
1155
  # @return [String]
1041
1156
  #
1042
1157
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteSubnetGroupRequest AWS API Documentation
@@ -1084,7 +1199,7 @@ module Aws::MemoryDB
1084
1199
  end
1085
1200
 
1086
1201
  # @!attribute [rw] acl_name
1087
- # The name of the ACL
1202
+ # The name of the ACL.
1088
1203
  # @return [String]
1089
1204
  #
1090
1205
  # @!attribute [rw] max_results
@@ -1114,7 +1229,7 @@ module Aws::MemoryDB
1114
1229
  end
1115
1230
 
1116
1231
  # @!attribute [rw] acls
1117
- # The list of ACLs
1232
+ # The list of ACLs.
1118
1233
  # @return [Array<Types::ACL>]
1119
1234
  #
1120
1235
  # @!attribute [rw] next_token
@@ -1134,7 +1249,7 @@ module Aws::MemoryDB
1134
1249
  end
1135
1250
 
1136
1251
  # @!attribute [rw] cluster_name
1137
- # The name of the cluster
1252
+ # The name of the cluster.
1138
1253
  # @return [String]
1139
1254
  #
1140
1255
  # @!attribute [rw] max_results
@@ -1192,12 +1307,11 @@ module Aws::MemoryDB
1192
1307
  end
1193
1308
 
1194
1309
  # @!attribute [rw] engine
1195
- # The engine version to return. Valid values are either valkey or
1196
- # redis.
1310
+ # The name of the engine for which to list available versions.
1197
1311
  # @return [String]
1198
1312
  #
1199
1313
  # @!attribute [rw] engine_version
1200
- # The engine version.
1314
+ # The Redis OSS engine version
1201
1315
  # @return [String]
1202
1316
  #
1203
1317
  # @!attribute [rw] parameter_group_family
@@ -1338,6 +1452,50 @@ module Aws::MemoryDB
1338
1452
  include Aws::Structure
1339
1453
  end
1340
1454
 
1455
+ # @!attribute [rw] multi_region_cluster_name
1456
+ # The name of a specific multi-Region cluster to describe.
1457
+ # @return [String]
1458
+ #
1459
+ # @!attribute [rw] max_results
1460
+ # The maximum number of results to return.
1461
+ # @return [Integer]
1462
+ #
1463
+ # @!attribute [rw] next_token
1464
+ # A token to specify where to start paginating.
1465
+ # @return [String]
1466
+ #
1467
+ # @!attribute [rw] show_cluster_details
1468
+ # Details about the multi-Region cluster.
1469
+ # @return [Boolean]
1470
+ #
1471
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionClustersRequest AWS API Documentation
1472
+ #
1473
+ class DescribeMultiRegionClustersRequest < Struct.new(
1474
+ :multi_region_cluster_name,
1475
+ :max_results,
1476
+ :next_token,
1477
+ :show_cluster_details)
1478
+ SENSITIVE = []
1479
+ include Aws::Structure
1480
+ end
1481
+
1482
+ # @!attribute [rw] next_token
1483
+ # A token to use to retrieve the next page of results.
1484
+ # @return [String]
1485
+ #
1486
+ # @!attribute [rw] multi_region_clusters
1487
+ # A list of multi-Region clusters.
1488
+ # @return [Array<Types::MultiRegionCluster>]
1489
+ #
1490
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionClustersResponse AWS API Documentation
1491
+ #
1492
+ class DescribeMultiRegionClustersResponse < Struct.new(
1493
+ :next_token,
1494
+ :multi_region_clusters)
1495
+ SENSITIVE = []
1496
+ include Aws::Structure
1497
+ end
1498
+
1341
1499
  # @!attribute [rw] parameter_group_name
1342
1500
  # The name of a specific parameter group to return details for.
1343
1501
  # @return [String]
@@ -1604,11 +1762,11 @@ module Aws::MemoryDB
1604
1762
  # @return [String]
1605
1763
  #
1606
1764
  # @!attribute [rw] cluster_names
1607
- # The list of cluster names to identify service updates to apply
1765
+ # The list of cluster names to identify service updates to apply.
1608
1766
  # @return [Array<String>]
1609
1767
  #
1610
1768
  # @!attribute [rw] status
1611
- # The status(es) of the service updates to filter on
1769
+ # The status(es) of the service updates to filter on.
1612
1770
  # @return [Array<String>]
1613
1771
  #
1614
1772
  # @!attribute [rw] max_results
@@ -1789,7 +1947,7 @@ module Aws::MemoryDB
1789
1947
  end
1790
1948
 
1791
1949
  # @!attribute [rw] user_name
1792
- # The name of the user
1950
+ # The name of the user.
1793
1951
  # @return [String]
1794
1952
  #
1795
1953
  # @!attribute [rw] filters
@@ -1869,10 +2027,10 @@ module Aws::MemoryDB
1869
2027
  include Aws::Structure
1870
2028
  end
1871
2029
 
1872
- # Provides details of the engine version.
2030
+ # Provides details of the Redis OSS engine version
1873
2031
  #
1874
2032
  # @!attribute [rw] engine
1875
- # The version of the Redis OSS or Valkey engine used by the cluster.
2033
+ # The name of the engine for which version information is provided.
1876
2034
  # @return [String]
1877
2035
  #
1878
2036
  # @!attribute [rw] engine_version
@@ -1934,11 +2092,11 @@ module Aws::MemoryDB
1934
2092
  end
1935
2093
 
1936
2094
  # @!attribute [rw] cluster_name
1937
- # The cluster being failed over
2095
+ # The cluster being failed over.
1938
2096
  # @return [String]
1939
2097
  #
1940
2098
  # @!attribute [rw] shard_name
1941
- # The name of the shard
2099
+ # The name of the shard.
1942
2100
  # @return [String]
1943
2101
  #
1944
2102
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/FailoverShardRequest AWS API Documentation
@@ -1951,7 +2109,7 @@ module Aws::MemoryDB
1951
2109
  end
1952
2110
 
1953
2111
  # @!attribute [rw] cluster
1954
- # The cluster being failed over
2112
+ # The cluster being failed over.
1955
2113
  # @return [Types::Cluster]
1956
2114
  #
1957
2115
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/FailoverShardResponse AWS API Documentation
@@ -2006,6 +2164,13 @@ module Aws::MemoryDB
2006
2164
  #
2007
2165
  class InvalidKMSKeyFault < Aws::EmptyStructure; end
2008
2166
 
2167
+ # The requested operation cannot be performed on the multi-Region
2168
+ # cluster in its current state.
2169
+ #
2170
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidMultiRegionClusterStateFault AWS API Documentation
2171
+ #
2172
+ class InvalidMultiRegionClusterStateFault < Aws::EmptyStructure; end
2173
+
2009
2174
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidNodeStateFault AWS API Documentation
2010
2175
  #
2011
2176
  class InvalidNodeStateFault < Aws::EmptyStructure; end
@@ -2052,6 +2217,35 @@ module Aws::MemoryDB
2052
2217
  #
2053
2218
  class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
2054
2219
 
2220
+ # @!attribute [rw] multi_region_cluster_name
2221
+ # The name of the multi-Region cluster.
2222
+ # @return [String]
2223
+ #
2224
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ListAllowedMultiRegionClusterUpdatesRequest AWS API Documentation
2225
+ #
2226
+ class ListAllowedMultiRegionClusterUpdatesRequest < Struct.new(
2227
+ :multi_region_cluster_name)
2228
+ SENSITIVE = []
2229
+ include Aws::Structure
2230
+ end
2231
+
2232
+ # @!attribute [rw] scale_up_node_types
2233
+ # The node types that the cluster can be scaled up to.
2234
+ # @return [Array<String>]
2235
+ #
2236
+ # @!attribute [rw] scale_down_node_types
2237
+ # The node types that the cluster can be scaled down to.
2238
+ # @return [Array<String>]
2239
+ #
2240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ListAllowedMultiRegionClusterUpdatesResponse AWS API Documentation
2241
+ #
2242
+ class ListAllowedMultiRegionClusterUpdatesResponse < Struct.new(
2243
+ :scale_up_node_types,
2244
+ :scale_down_node_types)
2245
+ SENSITIVE = []
2246
+ include Aws::Structure
2247
+ end
2248
+
2055
2249
  # @!attribute [rw] cluster_name
2056
2250
  # The name of the cluster you want to scale. MemoryDB uses the cluster
2057
2251
  # name to identify the current node type being used by this cluster,
@@ -2085,7 +2279,7 @@ module Aws::MemoryDB
2085
2279
 
2086
2280
  # @!attribute [rw] resource_arn
2087
2281
  # The Amazon Resource Name (ARN) of the resource for which you want
2088
- # the list of tags
2282
+ # the list of tags.
2089
2283
  # @return [String]
2090
2284
  #
2091
2285
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ListTagsRequest AWS API Documentation
@@ -2108,6 +2302,89 @@ module Aws::MemoryDB
2108
2302
  include Aws::Structure
2109
2303
  end
2110
2304
 
2305
+ # Represents a multi-Region cluster.
2306
+ #
2307
+ # @!attribute [rw] multi_region_cluster_name
2308
+ # The name of the multi-Region cluster.
2309
+ # @return [String]
2310
+ #
2311
+ # @!attribute [rw] description
2312
+ # The description of the multi-Region cluster.
2313
+ # @return [String]
2314
+ #
2315
+ # @!attribute [rw] status
2316
+ # The current status of the multi-Region cluster.
2317
+ # @return [String]
2318
+ #
2319
+ # @!attribute [rw] node_type
2320
+ # The node type used by the multi-Region cluster.
2321
+ # @return [String]
2322
+ #
2323
+ # @!attribute [rw] engine
2324
+ # The name of the engine used by the multi-Region cluster.
2325
+ # @return [String]
2326
+ #
2327
+ # @!attribute [rw] engine_version
2328
+ # The version of the engine used by the multi-Region cluster.
2329
+ # @return [String]
2330
+ #
2331
+ # @!attribute [rw] number_of_shards
2332
+ # The number of shards in the multi-Region cluster.
2333
+ # @return [Integer]
2334
+ #
2335
+ # @!attribute [rw] clusters
2336
+ # The clusters in this multi-Region cluster.
2337
+ # @return [Array<Types::RegionalCluster>]
2338
+ #
2339
+ # @!attribute [rw] multi_region_parameter_group_name
2340
+ # The name of the multi-Region parameter group associated with the
2341
+ # cluster.
2342
+ # @return [String]
2343
+ #
2344
+ # @!attribute [rw] tls_enabled
2345
+ # Indiciates if the multi-Region cluster is TLS enabled.
2346
+ # @return [Boolean]
2347
+ #
2348
+ # @!attribute [rw] arn
2349
+ # The Amazon Resource Name (ARN) of the multi-Region cluster.
2350
+ # @return [String]
2351
+ #
2352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/MultiRegionCluster AWS API Documentation
2353
+ #
2354
+ class MultiRegionCluster < Struct.new(
2355
+ :multi_region_cluster_name,
2356
+ :description,
2357
+ :status,
2358
+ :node_type,
2359
+ :engine,
2360
+ :engine_version,
2361
+ :number_of_shards,
2362
+ :clusters,
2363
+ :multi_region_parameter_group_name,
2364
+ :tls_enabled,
2365
+ :arn)
2366
+ SENSITIVE = []
2367
+ include Aws::Structure
2368
+ end
2369
+
2370
+ # A multi-Region cluster with the specified name already exists.
2371
+ #
2372
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/MultiRegionClusterAlreadyExistsFault AWS API Documentation
2373
+ #
2374
+ class MultiRegionClusterAlreadyExistsFault < Aws::EmptyStructure; end
2375
+
2376
+ # The specified multi-Region cluster does not exist.
2377
+ #
2378
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/MultiRegionClusterNotFoundFault AWS API Documentation
2379
+ #
2380
+ class MultiRegionClusterNotFoundFault < Aws::EmptyStructure; end
2381
+
2382
+ # The specified multi-Region parameter group does not exist.
2383
+ #
2384
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/MultiRegionParameterGroupNotFoundFault AWS API Documentation
2385
+ #
2386
+ class MultiRegionParameterGroupNotFoundFault < Aws::EmptyStructure; end
2387
+
2111
2388
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/NoOperationFault AWS API Documentation
2112
2389
  #
2113
2390
  class NoOperationFault < Aws::EmptyStructure; end
@@ -2344,6 +2621,35 @@ module Aws::MemoryDB
2344
2621
  include Aws::Structure
2345
2622
  end
2346
2623
 
2624
+ # Represents a Regional cluster
2625
+ #
2626
+ # @!attribute [rw] cluster_name
2627
+ # The name of the Regional cluster
2628
+ # @return [String]
2629
+ #
2630
+ # @!attribute [rw] region
2631
+ # The Region the current Regional cluster is assigned to.
2632
+ # @return [String]
2633
+ #
2634
+ # @!attribute [rw] status
2635
+ # The status of the Regional cluster.
2636
+ # @return [String]
2637
+ #
2638
+ # @!attribute [rw] arn
2639
+ # The Amazon Resource Name (ARN) the Regional cluster
2640
+ # @return [String]
2641
+ #
2642
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/RegionalCluster AWS API Documentation
2643
+ #
2644
+ class RegionalCluster < Struct.new(
2645
+ :cluster_name,
2646
+ :region,
2647
+ :status,
2648
+ :arn)
2649
+ SENSITIVE = []
2650
+ include Aws::Structure
2651
+ end
2652
+
2347
2653
  # A request to configure the number of replicas in a shard
2348
2654
  #
2349
2655
  # @!attribute [rw] replica_count
@@ -2596,8 +2902,7 @@ module Aws::MemoryDB
2596
2902
  # @return [String]
2597
2903
  #
2598
2904
  # @!attribute [rw] engine
2599
- # The MemoryDB engine to which the update applies. The values are
2600
- # either Redis or Valkey.
2905
+ # The name of the engine for which a service update is available.
2601
2906
  # @return [String]
2602
2907
  #
2603
2908
  # @!attribute [rw] nodes_updated
@@ -2962,7 +3267,7 @@ module Aws::MemoryDB
2962
3267
 
2963
3268
  # @!attribute [rw] resource_arn
2964
3269
  # The Amazon Resource Name (ARN) of the resource to which the tags are
2965
- # to be added
3270
+ # to be added.
2966
3271
  # @return [String]
2967
3272
  #
2968
3273
  # @!attribute [rw] tags
@@ -3022,11 +3327,11 @@ module Aws::MemoryDB
3022
3327
 
3023
3328
  # @!attribute [rw] resource_arn
3024
3329
  # The Amazon Resource Name (ARN) of the resource to which the tags are
3025
- # to be removed
3330
+ # to be removed.
3026
3331
  # @return [String]
3027
3332
  #
3028
3333
  # @!attribute [rw] tag_keys
3029
- # The list of keys of the tags that are to be removed
3334
+ # The list of keys of the tags that are to be removed.
3030
3335
  # @return [Array<String>]
3031
3336
  #
3032
3337
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UntagResourceRequest AWS API Documentation
@@ -3039,7 +3344,7 @@ module Aws::MemoryDB
3039
3344
  end
3040
3345
 
3041
3346
  # @!attribute [rw] tag_list
3042
- # The list of tags removed
3347
+ # The list of tags removed.
3043
3348
  # @return [Array<Types::Tag>]
3044
3349
  #
3045
3350
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UntagResourceResponse AWS API Documentation
@@ -3051,15 +3356,15 @@ module Aws::MemoryDB
3051
3356
  end
3052
3357
 
3053
3358
  # @!attribute [rw] acl_name
3054
- # The name of the Access Control List
3359
+ # The name of the Access Control List.
3055
3360
  # @return [String]
3056
3361
  #
3057
3362
  # @!attribute [rw] user_names_to_add
3058
- # The list of users to add to the Access Control List
3363
+ # The list of users to add to the Access Control List.
3059
3364
  # @return [Array<String>]
3060
3365
  #
3061
3366
  # @!attribute [rw] user_names_to_remove
3062
- # The list of users to remove from the Access Control List
3367
+ # The list of users to remove from the Access Control List.
3063
3368
  # @return [Array<String>]
3064
3369
  #
3065
3370
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateACLRequest AWS API Documentation
@@ -3073,7 +3378,7 @@ module Aws::MemoryDB
3073
3378
  end
3074
3379
 
3075
3380
  # @!attribute [rw] acl
3076
- # The updated Access Control List
3381
+ # The updated Access Control List.
3077
3382
  # @return [Types::ACL]
3078
3383
  #
3079
3384
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateACLResponse AWS API Documentation
@@ -3085,15 +3390,15 @@ module Aws::MemoryDB
3085
3390
  end
3086
3391
 
3087
3392
  # @!attribute [rw] cluster_name
3088
- # The name of the cluster to update
3393
+ # The name of the cluster to update.
3089
3394
  # @return [String]
3090
3395
  #
3091
3396
  # @!attribute [rw] description
3092
- # The description of the cluster to update
3397
+ # The description of the cluster to update.
3093
3398
  # @return [String]
3094
3399
  #
3095
3400
  # @!attribute [rw] security_group_ids
3096
- # The SecurityGroupIds to update
3401
+ # The SecurityGroupIds to update.
3097
3402
  # @return [Array<String>]
3098
3403
  #
3099
3404
  # @!attribute [rw] maintenance_window
@@ -3122,7 +3427,7 @@ module Aws::MemoryDB
3122
3427
  # @return [String]
3123
3428
  #
3124
3429
  # @!attribute [rw] sns_topic_arn
3125
- # The SNS topic ARN to update
3430
+ # The SNS topic ARN to update.
3126
3431
  # @return [String]
3127
3432
  #
3128
3433
  # @!attribute [rw] sns_topic_status
@@ -3131,7 +3436,7 @@ module Aws::MemoryDB
3131
3436
  # @return [String]
3132
3437
  #
3133
3438
  # @!attribute [rw] parameter_group_name
3134
- # The name of the parameter group to update
3439
+ # The name of the parameter group to update.
3135
3440
  # @return [String]
3136
3441
  #
3137
3442
  # @!attribute [rw] snapshot_window
@@ -3151,8 +3456,7 @@ module Aws::MemoryDB
3151
3456
  # @return [String]
3152
3457
  #
3153
3458
  # @!attribute [rw] engine
3154
- # The name of the engine to be used for the nodes in this cluster. The
3155
- # value must be set to either Redis or Valkey.
3459
+ # The name of the engine to be used for the cluster.
3156
3460
  # @return [String]
3157
3461
  #
3158
3462
  # @!attribute [rw] engine_version
@@ -3164,15 +3468,15 @@ module Aws::MemoryDB
3164
3468
  # @return [String]
3165
3469
  #
3166
3470
  # @!attribute [rw] replica_configuration
3167
- # The number of replicas that will reside in each shard
3471
+ # The number of replicas that will reside in each shard.
3168
3472
  # @return [Types::ReplicaConfigurationRequest]
3169
3473
  #
3170
3474
  # @!attribute [rw] shard_configuration
3171
- # The number of shards in the cluster
3475
+ # The number of shards in the cluster.
3172
3476
  # @return [Types::ShardConfigurationRequest]
3173
3477
  #
3174
3478
  # @!attribute [rw] acl_name
3175
- # The Access Control List that is associated with the cluster
3479
+ # The Access Control List that is associated with the cluster.
3176
3480
  # @return [String]
3177
3481
  #
3178
3482
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateClusterRequest AWS API Documentation
@@ -3198,7 +3502,7 @@ module Aws::MemoryDB
3198
3502
  end
3199
3503
 
3200
3504
  # @!attribute [rw] cluster
3201
- # The updated cluster
3505
+ # The updated cluster.
3202
3506
  # @return [Types::Cluster]
3203
3507
  #
3204
3508
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateClusterResponse AWS API Documentation
@@ -3209,6 +3513,61 @@ module Aws::MemoryDB
3209
3513
  include Aws::Structure
3210
3514
  end
3211
3515
 
3516
+ # @!attribute [rw] multi_region_cluster_name
3517
+ # The name of the multi-Region cluster to be updated.
3518
+ # @return [String]
3519
+ #
3520
+ # @!attribute [rw] node_type
3521
+ # The new node type to be used for the multi-Region cluster.
3522
+ # @return [String]
3523
+ #
3524
+ # @!attribute [rw] description
3525
+ # A new description for the multi-Region cluster.
3526
+ # @return [String]
3527
+ #
3528
+ # @!attribute [rw] engine_version
3529
+ # The new engine version to be used for the multi-Region cluster.
3530
+ # @return [String]
3531
+ #
3532
+ # @!attribute [rw] shard_configuration
3533
+ # A request to configure the sharding properties of a cluster
3534
+ # @return [Types::ShardConfigurationRequest]
3535
+ #
3536
+ # @!attribute [rw] multi_region_parameter_group_name
3537
+ # The new multi-Region parameter group to be associated with the
3538
+ # cluster.
3539
+ # @return [String]
3540
+ #
3541
+ # @!attribute [rw] update_strategy
3542
+ # Whether to force the update even if it may cause data loss.
3543
+ # @return [String]
3544
+ #
3545
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateMultiRegionClusterRequest AWS API Documentation
3546
+ #
3547
+ class UpdateMultiRegionClusterRequest < Struct.new(
3548
+ :multi_region_cluster_name,
3549
+ :node_type,
3550
+ :description,
3551
+ :engine_version,
3552
+ :shard_configuration,
3553
+ :multi_region_parameter_group_name,
3554
+ :update_strategy)
3555
+ SENSITIVE = []
3556
+ include Aws::Structure
3557
+ end
3558
+
3559
+ # @!attribute [rw] multi_region_cluster
3560
+ # The status of updating the multi-Region cluster.
3561
+ # @return [Types::MultiRegionCluster]
3562
+ #
3563
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateMultiRegionClusterResponse AWS API Documentation
3564
+ #
3565
+ class UpdateMultiRegionClusterResponse < Struct.new(
3566
+ :multi_region_cluster)
3567
+ SENSITIVE = []
3568
+ include Aws::Structure
3569
+ end
3570
+
3212
3571
  # @!attribute [rw] parameter_group_name
3213
3572
  # The name of the parameter group to update.
3214
3573
  # @return [String]