List Configurations
| mq_list_configurations | R Documentation | 
Returns a list of all configurations¶
Description¶
Returns a list of all configurations.
Usage¶
mq_list_configurations(MaxResults, NextToken)
Arguments¶
| 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(
  Configurations = list(
    list(
      Arn = "string",
      AuthenticationStrategy = "SIMPLE"|"LDAP",
      Created = as.POSIXct(
        "2015-01-01"
      ),
      Description = "string",
      EngineType = "ACTIVEMQ"|"RABBITMQ",
      EngineVersion = "string",
      Id = "string",
      LatestRevision = list(
        Created = as.POSIXct(
          "2015-01-01"
        ),
        Description = "string",
        Revision = 123
      ),
      Name = "string",
      Tags = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)
Request syntax¶
svc$list_configurations(
  MaxResults = 123,
  NextToken = "string"
)