2025/10/06 - Amazon MemoryDB - 2 new api methods
Changes Support for DescribeMultiRegionParameterGroups and DescribeMultiRegionParameters API.
Returns the detailed parameter list for a particular multi-region parameter group.
See also: AWS API Documentation
Request Syntax
client.describe_multi_region_parameters( MultiRegionParameterGroupName='string', Source='string', MaxResults=123, NextToken='string' )
string
[REQUIRED]
The name of the multi-region parameter group to return details for.
string
The parameter types to return. Valid values: user | system | engine-default
integer
The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
string
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
dict
Response Syntax
{ 'NextToken': 'string', 'MultiRegionParameters': [ { 'Name': 'string', 'Value': 'string', 'Description': 'string', 'Source': 'string', 'DataType': 'string', 'AllowedValues': 'string', 'MinimumEngineVersion': 'string' }, ] }
Response Structure
(dict) --
NextToken (string) --
An optional token to include in the response. If this token is provided, the response includes only results beyond the token, up to the value specified by MaxResults.
MultiRegionParameters (list) --
A list of parameters specific to a particular multi-region parameter group. Each element in the list contains detailed information about one parameter.
(dict) --
Describes an individual setting that controls some aspect of MemoryDB behavior across multiple regions.
Name (string) --
The name of the parameter.
Value (string) --
The value of the parameter.
Description (string) --
A description of the parameter.
Source (string) --
Indicates the source of the parameter value. Valid values: user | system | engine-default
DataType (string) --
The valid data type for the parameter.
AllowedValues (string) --
The valid range of values for the parameter.
MinimumEngineVersion (string) --
The earliest engine version to which the parameter can apply.
Returns a list of multi-region parameter groups.
See also: AWS API Documentation
Request Syntax
client.describe_multi_region_parameter_groups( MultiRegionParameterGroupName='string', MaxResults=123, NextToken='string' )
string
The request for information on a specific multi-region parameter group.
integer
The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
string
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
dict
Response Syntax
{ 'NextToken': 'string', 'MultiRegionParameterGroups': [ { 'Name': 'string', 'Family': 'string', 'Description': 'string', 'ARN': 'string' }, ] }
Response Structure
(dict) --
NextToken (string) --
An optional token to include in the response. If this token is provided, the response includes only results beyond the token, up to the value specified by MaxResults.
MultiRegionParameterGroups (list) --
A list of multi-region parameter groups. Each element in the list contains detailed information about one parameter group.
(dict) --
Represents the output of a CreateMultiRegionParameterGroup operation. A multi-region parameter group represents a collection of parameters that can be applied to clusters across multiple regions.
Name (string) --
The name of the multi-region parameter group.
Family (string) --
The name of the parameter group family that this multi-region parameter group is compatible with.
Description (string) --
A description of the multi-region parameter group.
ARN (string) --
The Amazon Resource Name (ARN) of the multi-region parameter group.