Describe Broker Engine Types
mq_describe_broker_engine_types | R Documentation |
Describe available engine types and versions¶
Description¶
Describe available engine types and versions.
Usage¶
mq_describe_broker_engine_types(EngineType, MaxResults, NextToken)
Arguments¶
EngineType |
Filter response by engine type. |
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(
BrokerEngineTypes = list(
list(
EngineType = "ACTIVEMQ"|"RABBITMQ",
EngineVersions = list(
list(
Name = "string"
)
)
)
),
MaxResults = 123,
NextToken = "string"
)
Request syntax¶
svc$describe_broker_engine_types(
EngineType = "string",
MaxResults = 123,
NextToken = "string"
)