Skip to content

Describe Multi Region Parameter Groups

memorydb_describe_multi_region_parameter_groups R Documentation

Returns a list of multi-region parameter groups

Description

Returns a list of multi-region parameter groups.

Usage

memorydb_describe_multi_region_parameter_groups(
  MultiRegionParameterGroupName, MaxResults, NextToken)

Arguments

MultiRegionParameterGroupName

The request for information on a specific multi-region parameter group.

MaxResults

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.

NextToken

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.

Value

A list with the following syntax:

list(
  NextToken = "string",
  MultiRegionParameterGroups = list(
    list(
      Name = "string",
      Family = "string",
      Description = "string",
      ARN = "string"
    )
  )
)

Request syntax

svc$describe_multi_region_parameter_groups(
  MultiRegionParameterGroupName = "string",
  MaxResults = 123,
  NextToken = "string"
)