Skip to main content

broker_engine_types

Creates, updates, deletes, gets or lists a broker_engine_types resource.

Overview

Namebroker_engine_types
TypeResource
Idaws.mq.broker_engine_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
broker_engine_typesarrayList of available engine types and versions.
max_resultsintegerRequired. The maximum number of engine types that can be returned per page (20 by default). This value must be an integer from 5 to 100.
next_tokenstringThe token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_broker_engine_typesselectregionengineType, maxResults, nextTokenDescribe available engine types and versions.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
engineTypestringFilter response by engine type.
maxResultsintegerThe maximum number of brokers that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.
nextTokenstringThe token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.

SELECT examples

Describe available engine types and versions.

SELECT
broker_engine_types,
max_results,
next_token
FROM aws.mq.broker_engine_types
WHERE region = '{{ region }}' -- required
AND engineType = '{{ engineType }}'
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;