Skip to content

Describe Multi Region Parameters

memorydb_describe_multi_region_parameters R Documentation

Returns the detailed parameter list for a particular multi-region parameter group

Description

Returns the detailed parameter list for a particular multi-region parameter group.

Usage

memorydb_describe_multi_region_parameters(MultiRegionParameterGroupName,
  Source, MaxResults, NextToken)

Arguments

MultiRegionParameterGroupName

[required] The name of the multi-region parameter group to return details for.

Source

The parameter types to return. Valid values: user | system | engine-default

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",
  MultiRegionParameters = list(
    list(
      Name = "string",
      Value = "string",
      Description = "string",
      Source = "string",
      DataType = "string",
      AllowedValues = "string",
      MinimumEngineVersion = "string"
    )
  )
)

Request syntax

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