Amazon MQ · Schema
DescribeBrokerEngineTypesResponse
DescribeBrokerEngineTypesResponse schema from Amazon MQ API
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| BrokerEngineTypes | object | |
| MaxResults | object | |
| NextToken | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mq/refs/heads/main/json-schema/mq-api-describe-broker-engine-types-response-schema.json",
"title": "DescribeBrokerEngineTypesResponse",
"description": "DescribeBrokerEngineTypesResponse schema from Amazon MQ API",
"type": "object",
"properties": {
"BrokerEngineTypes": {
"allOf": [
{
"$ref": "#/components/schemas/__listOfBrokerEngineType"
},
{
"xml": {
"name": "brokerEngineTypes"
},
"description": "List of available engine types and versions."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/__integerMin5Max100"
},
{
"xml": {
"name": "maxResults"
},
"description": "Required. 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."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "nextToken"
},
"description": "The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty."
}
]
}
}
}