List Configuration Revisions
| mq_list_configuration_revisions | R Documentation | 
Returns a list of all revisions for the specified configuration¶
Description¶
Returns a list of all revisions for the specified configuration.
Usage¶
mq_list_configuration_revisions(ConfigurationId, MaxResults, NextToken)
Arguments¶
ConfigurationId | 
[required] The unique ID that Amazon MQ generates for the configuration.  | 
MaxResults | 
The maximum number of brokers that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.  | 
NextToken | 
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.  | 
Value¶
A list with the following syntax:
list(
  ConfigurationId = "string",
  MaxResults = 123,
  NextToken = "string",
  Revisions = list(
    list(
      Created = as.POSIXct(
        "2015-01-01"
      ),
      Description = "string",
      Revision = 123
    )
  )
)
Request syntax¶
svc$list_configuration_revisions(
  ConfigurationId = "string",
  MaxResults = 123,
  NextToken = "string"
)