@cdklabs/cdk-amazonmq
Version:
<!--BEGIN STABILITY BANNER-->
25 lines (24 loc) • 599 B
TypeScript
import { BrokerEndpoint } from "../broker-endpoint";
export interface ActiveMqBrokerEndpoints {
/**
* The AMQP endpoint of the broker.
*/
readonly amqp: BrokerEndpoint;
/**
* The STOMP endpoint of the broker.
*/
readonly stomp: BrokerEndpoint;
/**
* The OpenWire endpoint of the broker.
*/
readonly openWire: BrokerEndpoint;
/**
* The MQTT endpoint of the broker.
*/
readonly mqtt: BrokerEndpoint;
/**
* The WSS endpoint of the broker.
*/
readonly wss: BrokerEndpoint;
readonly console: BrokerEndpoint;
}