Properties
| Name | Type | Description |
|---|---|---|
| created_on | string | |
| dead_letter_queue | object | |
| environment | string | |
| queue_name | string | |
| script_name | string | |
| settings | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/mq_consumer_created",
"title": "mq_consumer_created",
"properties": {
"created_on": {
"readOnly": true,
"type": "string"
},
"dead_letter_queue": {
"$ref": "#/components/schemas/mq_dlq_name"
},
"environment": {
"readOnly": true,
"type": "string"
},
"queue_name": {
"readOnly": true,
"type": "string"
},
"script_name": {
"readOnly": true,
"type": "string"
},
"settings": {
"properties": {
"batch_size": {
"$ref": "#/components/schemas/mq_batch_size"
},
"max_retries": {
"$ref": "#/components/schemas/mq_max_retries"
},
"max_wait_time_ms": {
"$ref": "#/components/schemas/mq_max_wait_time_ms"
}
},
"type": "object"
}
},
"type": "object"
}