A MATCHING rule inside BROKERS (...) that routes brokers matching a pattern through an AWS PrivateLink tunnel.
| 620 | /// A MATCHING rule inside BROKERS (...) that routes brokers matching a pattern |
| 621 | /// through an AWS PrivateLink tunnel. |
| 622 | pub struct KafkaMatchingBrokerRule<T: AstInfo> { |
| 623 | /// Given a broker's host:port, should we use this route? |
| 624 | pub pattern: ConnectionRulePattern, |
| 625 | /// Route to the broker through this PrivateLink connection. |
| 626 | pub tunnel: KafkaBrokerAwsPrivatelink<T>, |
| 627 | } |
| 628 | |
| 629 | #[derive( |
| 630 | Debug, |
no outgoing calls
no test coverage detected