Skip to content

Commit

Permalink
feat: improve amqp binding description
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed Oct 28, 2024
1 parent f3a5c7b commit b859f14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion amqp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ Field Name | Type | Description
---|:---:|---
<a name="channelBindingObjectIs"></a>`is` | string | Defines what type of channel is it. Can be either `queue` or `routingKey` (default).
<a name="channelBindingObjectName"></a>`name` | string | When `is`=`routingKey`, this defines the actual routing pattern to route the message from the exchange to the queue.
<a name="channelBindingObjectChannelRef"></a>`channel.$ref` | string | When `is`=`routingKey`, this defines the target queue after routing the message (essentially the binding).
<a name="channelBindingObjectChannel"></a>`channel` | Map[string, any] | When `is`=`routingKey`, this defines the destination amqp queue.
<a name="channelBindingObjectChannelRef"></a>`channel.$ref` | string | When `is`=`routingKey`, this defines an AsyncAPI channel `$ref` pointer to the destination amqp queue.
<a name="channelBindingObjectExchange"></a>`exchange` | Map[string, any] | When `is`=`routingKey`, this object defines the exchange properties.
<a name="channelBindingObjectExchangeName"></a>`exchange.name` | string | The name of the exchange. It MUST NOT exceed 255 characters long.
<a name="channelBindingObjectExchangeType"></a>`exchange.type` | string | The type of the exchange. Can be either `topic`, `direct`, `fanout`, `default` or `headers`.
Expand Down

0 comments on commit b859f14

Please sign in to comment.