aws-sdk-memorydb 1.52.0 → 1.53.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: d57488958d424a031e636c9c56917cf3f4bb51df663c82b01227204a157ad265
4
- data.tar.gz: b89cd0e8ae014f980570ac90fe1f7c3ab97be6f578822450b2479115f5010919
3
+ metadata.gz: 37a13deb1a497b18c1f09daecb4a0761536a2c1bcde450abe1b3cf1d191e4093
4
+ data.tar.gz: 629c33b77a6ea41b7f126a7786b223afbdfd5babde87fdd0969b4618701bc84b
5
5
  SHA512:
6
- metadata.gz: a4a3e1d2e388c0d6081c46a8a505fecfe98cbcf0b01f5bc729c3f19f4d45f272d7ed4cdb1864f22871bde0e2f08e74d20265d34b65376b0630be76b8913d3fd5
7
- data.tar.gz: 38c33cb2e5efec06f74edcc6a67866453d4bd429570831bd05531a0c62e1830827d0989d7ec55f9ac6be544daf1ed2156231fc56b14e1f40240c0f973aaefb11
6
+ metadata.gz: 0a253a25c737dd53291ae015d7c7e52585ce190e7ed7b3fae1b18b8a385387ddedf13de4cd471edcaa4183f64b1c0350b3526bf2ccaf839b2e388fafeffb0605
7
+ data.tar.gz: 36611810e445d1ffea9b5922c993534fc06bd8619e1152199b3fe828b2607edc62e87699b0db156a739b5798d934b285af1cf03822a8279fa2adafcbf95b7091
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2025-10-06)
5
+ ------------------
6
+
7
+ * Feature - Support for DescribeMultiRegionParameterGroups and DescribeMultiRegionParameters API.
8
+
4
9
  1.52.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -2014,6 +2014,110 @@ module Aws::MemoryDB
2014
2014
  req.send_request(options)
2015
2015
  end
2016
2016
 
2017
+ # Returns a list of multi-region parameter groups.
2018
+ #
2019
+ # @option params [String] :multi_region_parameter_group_name
2020
+ # The request for information on a specific multi-region parameter
2021
+ # group.
2022
+ #
2023
+ # @option params [Integer] :max_results
2024
+ # The maximum number of records to include in the response. If more
2025
+ # records exist than the specified MaxResults value, a token is included
2026
+ # in the response so that the remaining results can be retrieved.
2027
+ #
2028
+ # @option params [String] :next_token
2029
+ # An optional token returned from a prior request. Use this token for
2030
+ # pagination of results from this action. If this parameter is
2031
+ # specified, the response includes only results beyond the token, up to
2032
+ # the value specified by MaxResults.
2033
+ #
2034
+ # @return [Types::DescribeMultiRegionParameterGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2035
+ #
2036
+ # * {Types::DescribeMultiRegionParameterGroupsResponse#next_token #next_token} => String
2037
+ # * {Types::DescribeMultiRegionParameterGroupsResponse#multi_region_parameter_groups #multi_region_parameter_groups} => Array<Types::MultiRegionParameterGroup>
2038
+ #
2039
+ # @example Request syntax with placeholder values
2040
+ #
2041
+ # resp = client.describe_multi_region_parameter_groups({
2042
+ # multi_region_parameter_group_name: "String",
2043
+ # max_results: 1,
2044
+ # next_token: "String",
2045
+ # })
2046
+ #
2047
+ # @example Response structure
2048
+ #
2049
+ # resp.next_token #=> String
2050
+ # resp.multi_region_parameter_groups #=> Array
2051
+ # resp.multi_region_parameter_groups[0].name #=> String
2052
+ # resp.multi_region_parameter_groups[0].family #=> String
2053
+ # resp.multi_region_parameter_groups[0].description #=> String
2054
+ # resp.multi_region_parameter_groups[0].arn #=> String
2055
+ #
2056
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionParameterGroups AWS API Documentation
2057
+ #
2058
+ # @overload describe_multi_region_parameter_groups(params = {})
2059
+ # @param [Hash] params ({})
2060
+ def describe_multi_region_parameter_groups(params = {}, options = {})
2061
+ req = build_request(:describe_multi_region_parameter_groups, params)
2062
+ req.send_request(options)
2063
+ end
2064
+
2065
+ # Returns the detailed parameter list for a particular multi-region
2066
+ # parameter group.
2067
+ #
2068
+ # @option params [required, String] :multi_region_parameter_group_name
2069
+ # The name of the multi-region parameter group to return details for.
2070
+ #
2071
+ # @option params [String] :source
2072
+ # The parameter types to return. Valid values: user \| system \|
2073
+ # engine-default
2074
+ #
2075
+ # @option params [Integer] :max_results
2076
+ # The maximum number of records to include in the response. If more
2077
+ # records exist than the specified MaxResults value, a token is included
2078
+ # in the response so that the remaining results can be retrieved.
2079
+ #
2080
+ # @option params [String] :next_token
2081
+ # An optional token returned from a prior request. Use this token for
2082
+ # pagination of results from this action. If this parameter is
2083
+ # specified, the response includes only results beyond the token, up to
2084
+ # the value specified by MaxResults.
2085
+ #
2086
+ # @return [Types::DescribeMultiRegionParametersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2087
+ #
2088
+ # * {Types::DescribeMultiRegionParametersResponse#next_token #next_token} => String
2089
+ # * {Types::DescribeMultiRegionParametersResponse#multi_region_parameters #multi_region_parameters} => Array<Types::MultiRegionParameter>
2090
+ #
2091
+ # @example Request syntax with placeholder values
2092
+ #
2093
+ # resp = client.describe_multi_region_parameters({
2094
+ # multi_region_parameter_group_name: "String", # required
2095
+ # source: "String",
2096
+ # max_results: 1,
2097
+ # next_token: "String",
2098
+ # })
2099
+ #
2100
+ # @example Response structure
2101
+ #
2102
+ # resp.next_token #=> String
2103
+ # resp.multi_region_parameters #=> Array
2104
+ # resp.multi_region_parameters[0].name #=> String
2105
+ # resp.multi_region_parameters[0].value #=> String
2106
+ # resp.multi_region_parameters[0].description #=> String
2107
+ # resp.multi_region_parameters[0].source #=> String
2108
+ # resp.multi_region_parameters[0].data_type #=> String
2109
+ # resp.multi_region_parameters[0].allowed_values #=> String
2110
+ # resp.multi_region_parameters[0].minimum_engine_version #=> String
2111
+ #
2112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionParameters AWS API Documentation
2113
+ #
2114
+ # @overload describe_multi_region_parameters(params = {})
2115
+ # @param [Hash] params ({})
2116
+ def describe_multi_region_parameters(params = {}, options = {})
2117
+ req = build_request(:describe_multi_region_parameters, params)
2118
+ req.send_request(options)
2119
+ end
2120
+
2017
2121
  # Returns a list of parameter group descriptions. If a parameter group
2018
2122
  # name is specified, the list contains only the descriptions for that
2019
2123
  # group.
@@ -3440,7 +3544,7 @@ module Aws::MemoryDB
3440
3544
  tracer: tracer
3441
3545
  )
3442
3546
  context[:gem_name] = 'aws-sdk-memorydb'
3443
- context[:gem_version] = '1.52.0'
3547
+ context[:gem_version] = '1.53.0'
3444
3548
  Seahorse::Client::Request.new(handlers, context)
3445
3549
  end
3446
3550
 
@@ -86,6 +86,10 @@ module Aws::MemoryDB
86
86
  DescribeEventsResponse = Shapes::StructureShape.new(name: 'DescribeEventsResponse')
87
87
  DescribeMultiRegionClustersRequest = Shapes::StructureShape.new(name: 'DescribeMultiRegionClustersRequest')
88
88
  DescribeMultiRegionClustersResponse = Shapes::StructureShape.new(name: 'DescribeMultiRegionClustersResponse')
89
+ DescribeMultiRegionParameterGroupsRequest = Shapes::StructureShape.new(name: 'DescribeMultiRegionParameterGroupsRequest')
90
+ DescribeMultiRegionParameterGroupsResponse = Shapes::StructureShape.new(name: 'DescribeMultiRegionParameterGroupsResponse')
91
+ DescribeMultiRegionParametersRequest = Shapes::StructureShape.new(name: 'DescribeMultiRegionParametersRequest')
92
+ DescribeMultiRegionParametersResponse = Shapes::StructureShape.new(name: 'DescribeMultiRegionParametersResponse')
89
93
  DescribeParameterGroupsRequest = Shapes::StructureShape.new(name: 'DescribeParameterGroupsRequest')
90
94
  DescribeParameterGroupsResponse = Shapes::StructureShape.new(name: 'DescribeParameterGroupsResponse')
91
95
  DescribeParametersRequest = Shapes::StructureShape.new(name: 'DescribeParametersRequest')
@@ -147,7 +151,11 @@ module Aws::MemoryDB
147
151
  MultiRegionClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'MultiRegionClusterAlreadyExistsFault')
148
152
  MultiRegionClusterList = Shapes::ListShape.new(name: 'MultiRegionClusterList')
149
153
  MultiRegionClusterNotFoundFault = Shapes::StructureShape.new(name: 'MultiRegionClusterNotFoundFault')
154
+ MultiRegionParameter = Shapes::StructureShape.new(name: 'MultiRegionParameter')
155
+ MultiRegionParameterGroup = Shapes::StructureShape.new(name: 'MultiRegionParameterGroup')
156
+ MultiRegionParameterGroupList = Shapes::ListShape.new(name: 'MultiRegionParameterGroupList')
150
157
  MultiRegionParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'MultiRegionParameterGroupNotFoundFault')
158
+ MultiRegionParametersList = Shapes::ListShape.new(name: 'MultiRegionParametersList')
151
159
  NetworkType = Shapes::StringShape.new(name: 'NetworkType')
152
160
  NetworkTypeList = Shapes::ListShape.new(name: 'NetworkTypeList')
153
161
  NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
@@ -576,6 +584,25 @@ module Aws::MemoryDB
576
584
  DescribeMultiRegionClustersResponse.add_member(:multi_region_clusters, Shapes::ShapeRef.new(shape: MultiRegionClusterList, location_name: "MultiRegionClusters"))
577
585
  DescribeMultiRegionClustersResponse.struct_class = Types::DescribeMultiRegionClustersResponse
578
586
 
587
+ DescribeMultiRegionParameterGroupsRequest.add_member(:multi_region_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "MultiRegionParameterGroupName"))
588
+ DescribeMultiRegionParameterGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxResults"))
589
+ DescribeMultiRegionParameterGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
590
+ DescribeMultiRegionParameterGroupsRequest.struct_class = Types::DescribeMultiRegionParameterGroupsRequest
591
+
592
+ DescribeMultiRegionParameterGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
593
+ DescribeMultiRegionParameterGroupsResponse.add_member(:multi_region_parameter_groups, Shapes::ShapeRef.new(shape: MultiRegionParameterGroupList, location_name: "MultiRegionParameterGroups"))
594
+ DescribeMultiRegionParameterGroupsResponse.struct_class = Types::DescribeMultiRegionParameterGroupsResponse
595
+
596
+ DescribeMultiRegionParametersRequest.add_member(:multi_region_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "MultiRegionParameterGroupName"))
597
+ DescribeMultiRegionParametersRequest.add_member(:source, Shapes::ShapeRef.new(shape: String, location_name: "Source"))
598
+ DescribeMultiRegionParametersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxResults"))
599
+ DescribeMultiRegionParametersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
600
+ DescribeMultiRegionParametersRequest.struct_class = Types::DescribeMultiRegionParametersRequest
601
+
602
+ DescribeMultiRegionParametersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
603
+ DescribeMultiRegionParametersResponse.add_member(:multi_region_parameters, Shapes::ShapeRef.new(shape: MultiRegionParametersList, location_name: "MultiRegionParameters"))
604
+ DescribeMultiRegionParametersResponse.struct_class = Types::DescribeMultiRegionParametersResponse
605
+
579
606
  DescribeParameterGroupsRequest.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "ParameterGroupName"))
580
607
  DescribeParameterGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxResults"))
581
608
  DescribeParameterGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
@@ -771,8 +798,27 @@ module Aws::MemoryDB
771
798
 
772
799
  MultiRegionClusterNotFoundFault.struct_class = Types::MultiRegionClusterNotFoundFault
773
800
 
801
+ MultiRegionParameter.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
802
+ MultiRegionParameter.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "Value"))
803
+ MultiRegionParameter.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
804
+ MultiRegionParameter.add_member(:source, Shapes::ShapeRef.new(shape: String, location_name: "Source"))
805
+ MultiRegionParameter.add_member(:data_type, Shapes::ShapeRef.new(shape: String, location_name: "DataType"))
806
+ MultiRegionParameter.add_member(:allowed_values, Shapes::ShapeRef.new(shape: String, location_name: "AllowedValues"))
807
+ MultiRegionParameter.add_member(:minimum_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "MinimumEngineVersion"))
808
+ MultiRegionParameter.struct_class = Types::MultiRegionParameter
809
+
810
+ MultiRegionParameterGroup.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
811
+ MultiRegionParameterGroup.add_member(:family, Shapes::ShapeRef.new(shape: String, location_name: "Family"))
812
+ MultiRegionParameterGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
813
+ MultiRegionParameterGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
814
+ MultiRegionParameterGroup.struct_class = Types::MultiRegionParameterGroup
815
+
816
+ MultiRegionParameterGroupList.member = Shapes::ShapeRef.new(shape: MultiRegionParameterGroup)
817
+
774
818
  MultiRegionParameterGroupNotFoundFault.struct_class = Types::MultiRegionParameterGroupNotFoundFault
775
819
 
820
+ MultiRegionParametersList.member = Shapes::ShapeRef.new(shape: MultiRegionParameter)
821
+
776
822
  NetworkTypeList.member = Shapes::ShapeRef.new(shape: NetworkType)
777
823
 
778
824
  NoOperationFault.struct_class = Types::NoOperationFault
@@ -1466,6 +1512,30 @@ module Aws::MemoryDB
1466
1512
  )
1467
1513
  end)
1468
1514
 
1515
+ api.add_operation(:describe_multi_region_parameter_groups, Seahorse::Model::Operation.new.tap do |o|
1516
+ o.name = "DescribeMultiRegionParameterGroups"
1517
+ o.http_method = "POST"
1518
+ o.http_request_uri = "/"
1519
+ o.input = Shapes::ShapeRef.new(shape: DescribeMultiRegionParameterGroupsRequest)
1520
+ o.output = Shapes::ShapeRef.new(shape: DescribeMultiRegionParameterGroupsResponse)
1521
+ o.errors << Shapes::ShapeRef.new(shape: MultiRegionParameterGroupNotFoundFault)
1522
+ o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
1523
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1524
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
1525
+ end)
1526
+
1527
+ api.add_operation(:describe_multi_region_parameters, Seahorse::Model::Operation.new.tap do |o|
1528
+ o.name = "DescribeMultiRegionParameters"
1529
+ o.http_method = "POST"
1530
+ o.http_request_uri = "/"
1531
+ o.input = Shapes::ShapeRef.new(shape: DescribeMultiRegionParametersRequest)
1532
+ o.output = Shapes::ShapeRef.new(shape: DescribeMultiRegionParametersResponse)
1533
+ o.errors << Shapes::ShapeRef.new(shape: MultiRegionParameterGroupNotFoundFault)
1534
+ o.errors << Shapes::ShapeRef.new(shape: ServiceLinkedRoleNotFoundFault)
1535
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1536
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
1537
+ end)
1538
+
1469
1539
  api.add_operation(:describe_parameter_groups, Seahorse::Model::Operation.new.tap do |o|
1470
1540
  o.name = "DescribeParameterGroups"
1471
1541
  o.http_method = "POST"
@@ -58,10 +58,14 @@ module Aws::MemoryDB
58
58
  include Aws::Structure
59
59
  end
60
60
 
61
+ # An ACL with the specified name already exists.
62
+ #
61
63
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ACLAlreadyExistsFault AWS API Documentation
62
64
  #
63
65
  class ACLAlreadyExistsFault < Aws::EmptyStructure; end
64
66
 
67
+ # The specified ACL does not exist.
68
+ #
65
69
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ACLNotFoundFault AWS API Documentation
66
70
  #
67
71
  class ACLNotFoundFault < Aws::EmptyStructure; end
@@ -85,6 +89,9 @@ module Aws::MemoryDB
85
89
  include Aws::Structure
86
90
  end
87
91
 
92
+ # The request cannot be processed because it would exceed the maximum
93
+ # number of ACLs allowed.
94
+ #
88
95
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ACLQuotaExceededFault AWS API Documentation
89
96
  #
90
97
  class ACLQuotaExceededFault < Aws::EmptyStructure; end
@@ -103,6 +110,9 @@ module Aws::MemoryDB
103
110
  include Aws::Structure
104
111
  end
105
112
 
113
+ # The customer has exceeded the maximum number of API requests allowed
114
+ # per time period.
115
+ #
106
116
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/APICallRateForCustomerExceededFault AWS API Documentation
107
117
  #
108
118
  class APICallRateForCustomerExceededFault < Aws::EmptyStructure; end
@@ -380,6 +390,8 @@ module Aws::MemoryDB
380
390
  include Aws::Structure
381
391
  end
382
392
 
393
+ # A cluster with the specified name already exists.
394
+ #
383
395
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ClusterAlreadyExistsFault AWS API Documentation
384
396
  #
385
397
  class ClusterAlreadyExistsFault < Aws::EmptyStructure; end
@@ -481,6 +493,8 @@ module Aws::MemoryDB
481
493
  include Aws::Structure
482
494
  end
483
495
 
496
+ # The specified cluster does not exist.
497
+ #
484
498
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ClusterNotFoundFault AWS API Documentation
485
499
  #
486
500
  class ClusterNotFoundFault < Aws::EmptyStructure; end
@@ -509,6 +523,9 @@ module Aws::MemoryDB
509
523
  include Aws::Structure
510
524
  end
511
525
 
526
+ # The request cannot be processed because it would exceed the maximum
527
+ # number of clusters allowed for this customer.
528
+ #
512
529
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ClusterQuotaForCustomerExceededFault AWS API Documentation
513
530
  #
514
531
  class ClusterQuotaForCustomerExceededFault < Aws::EmptyStructure; end
@@ -1055,6 +1072,8 @@ module Aws::MemoryDB
1055
1072
  include Aws::Structure
1056
1073
  end
1057
1074
 
1075
+ # A default user is required and must be specified.
1076
+ #
1058
1077
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DefaultUserRequired AWS API Documentation
1059
1078
  #
1060
1079
  class DefaultUserRequired < Aws::EmptyStructure; end
@@ -1537,6 +1556,110 @@ module Aws::MemoryDB
1537
1556
  include Aws::Structure
1538
1557
  end
1539
1558
 
1559
+ # @!attribute [rw] multi_region_parameter_group_name
1560
+ # The request for information on a specific multi-region parameter
1561
+ # group.
1562
+ # @return [String]
1563
+ #
1564
+ # @!attribute [rw] max_results
1565
+ # The maximum number of records to include in the response. If more
1566
+ # records exist than the specified MaxResults value, a token is
1567
+ # included in the response so that the remaining results can be
1568
+ # retrieved.
1569
+ # @return [Integer]
1570
+ #
1571
+ # @!attribute [rw] next_token
1572
+ # An optional token returned from a prior request. Use this token for
1573
+ # pagination of results from this action. If this parameter is
1574
+ # specified, the response includes only results beyond the token, up
1575
+ # to the value specified by MaxResults.
1576
+ # @return [String]
1577
+ #
1578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionParameterGroupsRequest AWS API Documentation
1579
+ #
1580
+ class DescribeMultiRegionParameterGroupsRequest < Struct.new(
1581
+ :multi_region_parameter_group_name,
1582
+ :max_results,
1583
+ :next_token)
1584
+ SENSITIVE = []
1585
+ include Aws::Structure
1586
+ end
1587
+
1588
+ # @!attribute [rw] next_token
1589
+ # An optional token to include in the response. If this token is
1590
+ # provided, the response includes only results beyond the token, up to
1591
+ # the value specified by MaxResults.
1592
+ # @return [String]
1593
+ #
1594
+ # @!attribute [rw] multi_region_parameter_groups
1595
+ # A list of multi-region parameter groups. Each element in the list
1596
+ # contains detailed information about one parameter group.
1597
+ # @return [Array<Types::MultiRegionParameterGroup>]
1598
+ #
1599
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionParameterGroupsResponse AWS API Documentation
1600
+ #
1601
+ class DescribeMultiRegionParameterGroupsResponse < Struct.new(
1602
+ :next_token,
1603
+ :multi_region_parameter_groups)
1604
+ SENSITIVE = []
1605
+ include Aws::Structure
1606
+ end
1607
+
1608
+ # @!attribute [rw] multi_region_parameter_group_name
1609
+ # The name of the multi-region parameter group to return details for.
1610
+ # @return [String]
1611
+ #
1612
+ # @!attribute [rw] source
1613
+ # The parameter types to return. Valid values: user \| system \|
1614
+ # engine-default
1615
+ # @return [String]
1616
+ #
1617
+ # @!attribute [rw] max_results
1618
+ # The maximum number of records to include in the response. If more
1619
+ # records exist than the specified MaxResults value, a token is
1620
+ # included in the response so that the remaining results can be
1621
+ # retrieved.
1622
+ # @return [Integer]
1623
+ #
1624
+ # @!attribute [rw] next_token
1625
+ # An optional token returned from a prior request. Use this token for
1626
+ # pagination of results from this action. If this parameter is
1627
+ # specified, the response includes only results beyond the token, up
1628
+ # to the value specified by MaxResults.
1629
+ # @return [String]
1630
+ #
1631
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionParametersRequest AWS API Documentation
1632
+ #
1633
+ class DescribeMultiRegionParametersRequest < Struct.new(
1634
+ :multi_region_parameter_group_name,
1635
+ :source,
1636
+ :max_results,
1637
+ :next_token)
1638
+ SENSITIVE = []
1639
+ include Aws::Structure
1640
+ end
1641
+
1642
+ # @!attribute [rw] next_token
1643
+ # An optional token to include in the response. If this token is
1644
+ # provided, the response includes only results beyond the token, up to
1645
+ # the value specified by MaxResults.
1646
+ # @return [String]
1647
+ #
1648
+ # @!attribute [rw] multi_region_parameters
1649
+ # A list of parameters specific to a particular multi-region parameter
1650
+ # group. Each element in the list contains detailed information about
1651
+ # one parameter.
1652
+ # @return [Array<Types::MultiRegionParameter>]
1653
+ #
1654
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeMultiRegionParametersResponse AWS API Documentation
1655
+ #
1656
+ class DescribeMultiRegionParametersResponse < Struct.new(
1657
+ :next_token,
1658
+ :multi_region_parameters)
1659
+ SENSITIVE = []
1660
+ include Aws::Structure
1661
+ end
1662
+
1540
1663
  # @!attribute [rw] parameter_group_name
1541
1664
  # The name of a specific parameter group to return details for.
1542
1665
  # @return [String]
@@ -2044,6 +2167,8 @@ module Aws::MemoryDB
2044
2167
  include Aws::Structure
2045
2168
  end
2046
2169
 
2170
+ # A user with the specified name already exists.
2171
+ #
2047
2172
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DuplicateUserNameFault AWS API Documentation
2048
2173
  #
2049
2174
  class DuplicateUserNameFault < Aws::EmptyStructure; end
@@ -2181,26 +2306,39 @@ module Aws::MemoryDB
2181
2306
  include Aws::Structure
2182
2307
  end
2183
2308
 
2309
+ # The cluster does not have sufficient capacity to perform the requested
2310
+ # operation.
2311
+ #
2184
2312
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InsufficientClusterCapacityFault AWS API Documentation
2185
2313
  #
2186
2314
  class InsufficientClusterCapacityFault < Aws::EmptyStructure; end
2187
2315
 
2316
+ # The ACL is not in a valid state for the requested operation.
2317
+ #
2188
2318
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidACLStateFault AWS API Documentation
2189
2319
  #
2190
2320
  class InvalidACLStateFault < Aws::EmptyStructure; end
2191
2321
 
2322
+ # The specified Amazon Resource Name (ARN) is not valid.
2323
+ #
2192
2324
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidARNFault AWS API Documentation
2193
2325
  #
2194
2326
  class InvalidARNFault < Aws::EmptyStructure; end
2195
2327
 
2328
+ # The cluster is not in a valid state for the requested operation.
2329
+ #
2196
2330
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidClusterStateFault AWS API Documentation
2197
2331
  #
2198
2332
  class InvalidClusterStateFault < Aws::EmptyStructure; end
2199
2333
 
2334
+ # The provided credentials are not valid.
2335
+ #
2200
2336
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidCredentialsException AWS API Documentation
2201
2337
  #
2202
2338
  class InvalidCredentialsException < Aws::EmptyStructure; end
2203
2339
 
2340
+ # The specified KMS key is not valid or accessible.
2341
+ #
2204
2342
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidKMSKeyFault AWS API Documentation
2205
2343
  #
2206
2344
  class InvalidKMSKeyFault < Aws::EmptyStructure; end
@@ -2212,10 +2350,14 @@ module Aws::MemoryDB
2212
2350
  #
2213
2351
  class InvalidMultiRegionClusterStateFault < Aws::EmptyStructure; end
2214
2352
 
2353
+ # The node is not in a valid state for the requested operation.
2354
+ #
2215
2355
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidNodeStateFault AWS API Documentation
2216
2356
  #
2217
2357
  class InvalidNodeStateFault < Aws::EmptyStructure; end
2218
2358
 
2359
+ # The specified parameter combination is not valid.
2360
+ #
2219
2361
  # @!attribute [rw] message
2220
2362
  # @return [String]
2221
2363
  #
@@ -2227,10 +2369,15 @@ module Aws::MemoryDB
2227
2369
  include Aws::Structure
2228
2370
  end
2229
2371
 
2372
+ # The parameter group is not in a valid state for the requested
2373
+ # operation.
2374
+ #
2230
2375
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidParameterGroupStateFault AWS API Documentation
2231
2376
  #
2232
2377
  class InvalidParameterGroupStateFault < Aws::EmptyStructure; end
2233
2378
 
2379
+ # The specified parameter value is not valid.
2380
+ #
2234
2381
  # @!attribute [rw] message
2235
2382
  # @return [String]
2236
2383
  #
@@ -2242,18 +2389,26 @@ module Aws::MemoryDB
2242
2389
  include Aws::Structure
2243
2390
  end
2244
2391
 
2392
+ # The snapshot is not in a valid state for the requested operation.
2393
+ #
2245
2394
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidSnapshotStateFault AWS API Documentation
2246
2395
  #
2247
2396
  class InvalidSnapshotStateFault < Aws::EmptyStructure; end
2248
2397
 
2398
+ # The specified subnet is not valid.
2399
+ #
2249
2400
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidSubnet AWS API Documentation
2250
2401
  #
2251
2402
  class InvalidSubnet < Aws::EmptyStructure; end
2252
2403
 
2404
+ # The user is not in a valid state for the requested operation.
2405
+ #
2253
2406
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidUserStateFault AWS API Documentation
2254
2407
  #
2255
2408
  class InvalidUserStateFault < Aws::EmptyStructure; end
2256
2409
 
2410
+ # The VPC network is not in a valid state for the requested operation.
2411
+ #
2257
2412
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/InvalidVPCNetworkStateFault AWS API Documentation
2258
2413
  #
2259
2414
  class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
@@ -2420,12 +2575,92 @@ module Aws::MemoryDB
2420
2575
  #
2421
2576
  class MultiRegionClusterNotFoundFault < Aws::EmptyStructure; end
2422
2577
 
2578
+ # Describes an individual setting that controls some aspect of MemoryDB
2579
+ # behavior across multiple regions.
2580
+ #
2581
+ # @!attribute [rw] name
2582
+ # The name of the parameter.
2583
+ # @return [String]
2584
+ #
2585
+ # @!attribute [rw] value
2586
+ # The value of the parameter.
2587
+ # @return [String]
2588
+ #
2589
+ # @!attribute [rw] description
2590
+ # A description of the parameter.
2591
+ # @return [String]
2592
+ #
2593
+ # @!attribute [rw] source
2594
+ # Indicates the source of the parameter value. Valid values: user \|
2595
+ # system \| engine-default
2596
+ # @return [String]
2597
+ #
2598
+ # @!attribute [rw] data_type
2599
+ # The valid data type for the parameter.
2600
+ # @return [String]
2601
+ #
2602
+ # @!attribute [rw] allowed_values
2603
+ # The valid range of values for the parameter.
2604
+ # @return [String]
2605
+ #
2606
+ # @!attribute [rw] minimum_engine_version
2607
+ # The earliest engine version to which the parameter can apply.
2608
+ # @return [String]
2609
+ #
2610
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/MultiRegionParameter AWS API Documentation
2611
+ #
2612
+ class MultiRegionParameter < Struct.new(
2613
+ :name,
2614
+ :value,
2615
+ :description,
2616
+ :source,
2617
+ :data_type,
2618
+ :allowed_values,
2619
+ :minimum_engine_version)
2620
+ SENSITIVE = []
2621
+ include Aws::Structure
2622
+ end
2623
+
2624
+ # Represents the output of a CreateMultiRegionParameterGroup operation.
2625
+ # A multi-region parameter group represents a collection of parameters
2626
+ # that can be applied to clusters across multiple regions.
2627
+ #
2628
+ # @!attribute [rw] name
2629
+ # The name of the multi-region parameter group.
2630
+ # @return [String]
2631
+ #
2632
+ # @!attribute [rw] family
2633
+ # The name of the parameter group family that this multi-region
2634
+ # parameter group is compatible with.
2635
+ # @return [String]
2636
+ #
2637
+ # @!attribute [rw] description
2638
+ # A description of the multi-region parameter group.
2639
+ # @return [String]
2640
+ #
2641
+ # @!attribute [rw] arn
2642
+ # The Amazon Resource Name (ARN) of the multi-region parameter group.
2643
+ # @return [String]
2644
+ #
2645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/MultiRegionParameterGroup AWS API Documentation
2646
+ #
2647
+ class MultiRegionParameterGroup < Struct.new(
2648
+ :name,
2649
+ :family,
2650
+ :description,
2651
+ :arn)
2652
+ SENSITIVE = []
2653
+ include Aws::Structure
2654
+ end
2655
+
2423
2656
  # The specified multi-Region parameter group does not exist.
2424
2657
  #
2425
2658
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/MultiRegionParameterGroupNotFoundFault AWS API Documentation
2426
2659
  #
2427
2660
  class MultiRegionParameterGroupNotFoundFault < Aws::EmptyStructure; end
2428
2661
 
2662
+ # The requested operation would result in no changes.
2663
+ #
2429
2664
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/NoOperationFault AWS API Documentation
2430
2665
  #
2431
2666
  class NoOperationFault < Aws::EmptyStructure; end
@@ -2468,10 +2703,16 @@ module Aws::MemoryDB
2468
2703
  include Aws::Structure
2469
2704
  end
2470
2705
 
2706
+ # The request cannot be processed because it would exceed the maximum
2707
+ # number of nodes allowed for this cluster.
2708
+ #
2471
2709
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/NodeQuotaForClusterExceededFault AWS API Documentation
2472
2710
  #
2473
2711
  class NodeQuotaForClusterExceededFault < Aws::EmptyStructure; end
2474
2712
 
2713
+ # The request cannot be processed because it would exceed the maximum
2714
+ # number of nodes allowed for this customer.
2715
+ #
2475
2716
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/NodeQuotaForCustomerExceededFault AWS API Documentation
2476
2717
  #
2477
2718
  class NodeQuotaForCustomerExceededFault < Aws::EmptyStructure; end
@@ -2548,14 +2789,21 @@ module Aws::MemoryDB
2548
2789
  include Aws::Structure
2549
2790
  end
2550
2791
 
2792
+ # A parameter group with the specified name already exists.
2793
+ #
2551
2794
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ParameterGroupAlreadyExistsFault AWS API Documentation
2552
2795
  #
2553
2796
  class ParameterGroupAlreadyExistsFault < Aws::EmptyStructure; end
2554
2797
 
2798
+ # The specified parameter group does not exist.
2799
+ #
2555
2800
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ParameterGroupNotFoundFault AWS API Documentation
2556
2801
  #
2557
2802
  class ParameterGroupNotFoundFault < Aws::EmptyStructure; end
2558
2803
 
2804
+ # The request cannot be processed because it would exceed the maximum
2805
+ # number of parameter groups allowed.
2806
+ #
2559
2807
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ParameterGroupQuotaExceededFault AWS API Documentation
2560
2808
  #
2561
2809
  class ParameterGroupQuotaExceededFault < Aws::EmptyStructure; end
@@ -2912,6 +3160,8 @@ module Aws::MemoryDB
2912
3160
  include Aws::Structure
2913
3161
  end
2914
3162
 
3163
+ # The required service-linked role was not found.
3164
+ #
2915
3165
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ServiceLinkedRoleNotFoundFault AWS API Documentation
2916
3166
  #
2917
3167
  class ServiceLinkedRoleNotFoundFault < Aws::EmptyStructure; end
@@ -2970,6 +3220,8 @@ module Aws::MemoryDB
2970
3220
  include Aws::Structure
2971
3221
  end
2972
3222
 
3223
+ # The specified service update does not exist.
3224
+ #
2973
3225
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ServiceUpdateNotFoundFault AWS API Documentation
2974
3226
  #
2975
3227
  class ServiceUpdateNotFoundFault < Aws::EmptyStructure; end
@@ -3091,10 +3343,15 @@ module Aws::MemoryDB
3091
3343
  include Aws::Structure
3092
3344
  end
3093
3345
 
3346
+ # The specified shard does not exist.
3347
+ #
3094
3348
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ShardNotFoundFault AWS API Documentation
3095
3349
  #
3096
3350
  class ShardNotFoundFault < Aws::EmptyStructure; end
3097
3351
 
3352
+ # The request cannot be processed because it would exceed the maximum
3353
+ # number of shards allowed per cluster.
3354
+ #
3098
3355
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/ShardsPerClusterQuotaExceededFault AWS API Documentation
3099
3356
  #
3100
3357
  class ShardsPerClusterQuotaExceededFault < Aws::EmptyStructure; end
@@ -3166,14 +3423,21 @@ module Aws::MemoryDB
3166
3423
  include Aws::Structure
3167
3424
  end
3168
3425
 
3426
+ # A snapshot with the specified name already exists.
3427
+ #
3169
3428
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SnapshotAlreadyExistsFault AWS API Documentation
3170
3429
  #
3171
3430
  class SnapshotAlreadyExistsFault < Aws::EmptyStructure; end
3172
3431
 
3432
+ # The specified snapshot does not exist.
3433
+ #
3173
3434
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SnapshotNotFoundFault AWS API Documentation
3174
3435
  #
3175
3436
  class SnapshotNotFoundFault < Aws::EmptyStructure; end
3176
3437
 
3438
+ # The request cannot be processed because it would exceed the maximum
3439
+ # number of snapshots allowed.
3440
+ #
3177
3441
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SnapshotQuotaExceededFault AWS API Documentation
3178
3442
  #
3179
3443
  class SnapshotQuotaExceededFault < Aws::EmptyStructure; end
@@ -3258,30 +3522,46 @@ module Aws::MemoryDB
3258
3522
  include Aws::Structure
3259
3523
  end
3260
3524
 
3525
+ # A subnet group with the specified name already exists.
3526
+ #
3261
3527
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetGroupAlreadyExistsFault AWS API Documentation
3262
3528
  #
3263
3529
  class SubnetGroupAlreadyExistsFault < Aws::EmptyStructure; end
3264
3530
 
3531
+ # The subnet group is currently in use and cannot be deleted.
3532
+ #
3265
3533
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetGroupInUseFault AWS API Documentation
3266
3534
  #
3267
3535
  class SubnetGroupInUseFault < Aws::EmptyStructure; end
3268
3536
 
3537
+ # The specified subnet group does not exist.
3538
+ #
3269
3539
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetGroupNotFoundFault AWS API Documentation
3270
3540
  #
3271
3541
  class SubnetGroupNotFoundFault < Aws::EmptyStructure; end
3272
3542
 
3543
+ # The request cannot be processed because it would exceed the maximum
3544
+ # number of subnet groups allowed.
3545
+ #
3273
3546
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetGroupQuotaExceededFault AWS API Documentation
3274
3547
  #
3275
3548
  class SubnetGroupQuotaExceededFault < Aws::EmptyStructure; end
3276
3549
 
3550
+ # The subnet is currently in use and cannot be deleted.
3551
+ #
3277
3552
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetInUse AWS API Documentation
3278
3553
  #
3279
3554
  class SubnetInUse < Aws::EmptyStructure; end
3280
3555
 
3556
+ # The specified subnet is not allowed for this operation.
3557
+ #
3281
3558
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetNotAllowedFault AWS API Documentation
3282
3559
  #
3283
3560
  class SubnetNotAllowedFault < Aws::EmptyStructure; end
3284
3561
 
3562
+ # The request cannot be processed because it would exceed the maximum
3563
+ # number of subnets allowed.
3564
+ #
3285
3565
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetQuotaExceededFault AWS API Documentation
3286
3566
  #
3287
3567
  class SubnetQuotaExceededFault < Aws::EmptyStructure; end
@@ -3314,10 +3594,15 @@ module Aws::MemoryDB
3314
3594
  include Aws::Structure
3315
3595
  end
3316
3596
 
3597
+ # The specified tag does not exist.
3598
+ #
3317
3599
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/TagNotFoundFault AWS API Documentation
3318
3600
  #
3319
3601
  class TagNotFoundFault < Aws::EmptyStructure; end
3320
3602
 
3603
+ # The request cannot be processed because it would exceed the maximum
3604
+ # number of tags allowed per resource.
3605
+ #
3321
3606
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/TagQuotaPerResourceExceeded AWS API Documentation
3322
3607
  #
3323
3608
  class TagQuotaPerResourceExceeded < Aws::EmptyStructure; end
@@ -3354,6 +3639,8 @@ module Aws::MemoryDB
3354
3639
  include Aws::Structure
3355
3640
  end
3356
3641
 
3642
+ # Test failover is not available for this cluster configuration.
3643
+ #
3357
3644
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/TestFailoverNotAvailableFault AWS API Documentation
3358
3645
  #
3359
3646
  class TestFailoverNotAvailableFault < Aws::EmptyStructure; end
@@ -3787,14 +4074,21 @@ module Aws::MemoryDB
3787
4074
  include Aws::Structure
3788
4075
  end
3789
4076
 
4077
+ # A user with the specified name already exists.
4078
+ #
3790
4079
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UserAlreadyExistsFault AWS API Documentation
3791
4080
  #
3792
4081
  class UserAlreadyExistsFault < Aws::EmptyStructure; end
3793
4082
 
4083
+ # The specified user does not exist.
4084
+ #
3794
4085
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UserNotFoundFault AWS API Documentation
3795
4086
  #
3796
4087
  class UserNotFoundFault < Aws::EmptyStructure; end
3797
4088
 
4089
+ # The request cannot be processed because it would exceed the maximum
4090
+ # number of users allowed.
4091
+ #
3798
4092
  # @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UserQuotaExceededFault AWS API Documentation
3799
4093
  #
3800
4094
  class UserQuotaExceededFault < Aws::EmptyStructure; end
@@ -54,7 +54,7 @@ module Aws::MemoryDB
54
54
  autoload :EndpointProvider, 'aws-sdk-memorydb/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-memorydb/endpoints'
56
56
 
57
- GEM_VERSION = '1.52.0'
57
+ GEM_VERSION = '1.53.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -413,6 +413,33 @@ module Aws
413
413
  ) -> _DescribeMultiRegionClustersResponseSuccess
414
414
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMultiRegionClustersResponseSuccess
415
415
 
416
+ interface _DescribeMultiRegionParameterGroupsResponseSuccess
417
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMultiRegionParameterGroupsResponse]
418
+ def next_token: () -> ::String
419
+ def multi_region_parameter_groups: () -> ::Array[Types::MultiRegionParameterGroup]
420
+ end
421
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MemoryDB/Client.html#describe_multi_region_parameter_groups-instance_method
422
+ def describe_multi_region_parameter_groups: (
423
+ ?multi_region_parameter_group_name: ::String,
424
+ ?max_results: ::Integer,
425
+ ?next_token: ::String
426
+ ) -> _DescribeMultiRegionParameterGroupsResponseSuccess
427
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMultiRegionParameterGroupsResponseSuccess
428
+
429
+ interface _DescribeMultiRegionParametersResponseSuccess
430
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMultiRegionParametersResponse]
431
+ def next_token: () -> ::String
432
+ def multi_region_parameters: () -> ::Array[Types::MultiRegionParameter]
433
+ end
434
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MemoryDB/Client.html#describe_multi_region_parameters-instance_method
435
+ def describe_multi_region_parameters: (
436
+ multi_region_parameter_group_name: ::String,
437
+ ?source: ::String,
438
+ ?max_results: ::Integer,
439
+ ?next_token: ::String
440
+ ) -> _DescribeMultiRegionParametersResponseSuccess
441
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMultiRegionParametersResponseSuccess
442
+
416
443
  interface _DescribeParameterGroupsResponseSuccess
417
444
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeParameterGroupsResponse]
418
445
  def next_token: () -> ::String
data/sig/types.rbs CHANGED
@@ -422,6 +422,33 @@ module Aws::MemoryDB
422
422
  SENSITIVE: []
423
423
  end
424
424
 
425
+ class DescribeMultiRegionParameterGroupsRequest
426
+ attr_accessor multi_region_parameter_group_name: ::String
427
+ attr_accessor max_results: ::Integer
428
+ attr_accessor next_token: ::String
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class DescribeMultiRegionParameterGroupsResponse
433
+ attr_accessor next_token: ::String
434
+ attr_accessor multi_region_parameter_groups: ::Array[Types::MultiRegionParameterGroup]
435
+ SENSITIVE: []
436
+ end
437
+
438
+ class DescribeMultiRegionParametersRequest
439
+ attr_accessor multi_region_parameter_group_name: ::String
440
+ attr_accessor source: ::String
441
+ attr_accessor max_results: ::Integer
442
+ attr_accessor next_token: ::String
443
+ SENSITIVE: []
444
+ end
445
+
446
+ class DescribeMultiRegionParametersResponse
447
+ attr_accessor next_token: ::String
448
+ attr_accessor multi_region_parameters: ::Array[Types::MultiRegionParameter]
449
+ SENSITIVE: []
450
+ end
451
+
425
452
  class DescribeParameterGroupsRequest
426
453
  attr_accessor parameter_group_name: ::String
427
454
  attr_accessor max_results: ::Integer
@@ -683,6 +710,25 @@ module Aws::MemoryDB
683
710
  class MultiRegionClusterNotFoundFault < Aws::EmptyStructure
684
711
  end
685
712
 
713
+ class MultiRegionParameter
714
+ attr_accessor name: ::String
715
+ attr_accessor value: ::String
716
+ attr_accessor description: ::String
717
+ attr_accessor source: ::String
718
+ attr_accessor data_type: ::String
719
+ attr_accessor allowed_values: ::String
720
+ attr_accessor minimum_engine_version: ::String
721
+ SENSITIVE: []
722
+ end
723
+
724
+ class MultiRegionParameterGroup
725
+ attr_accessor name: ::String
726
+ attr_accessor family: ::String
727
+ attr_accessor description: ::String
728
+ attr_accessor arn: ::String
729
+ SENSITIVE: []
730
+ end
731
+
686
732
  class MultiRegionParameterGroupNotFoundFault < Aws::EmptyStructure
687
733
  end
688
734
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-memorydb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services