GradientEdge CDK Utils
    Preparing search index...

    Properties for configuring the Service Bus integration in the event handler.

    namespace.useExisting and queue.useExisting are independent. The supported combinations are:

    • namespace.useExisting=false, queue.useExisting=false — create both (default)
    • namespace.useExisting=true, queue.useExisting=false — reuse an existing (e.g. shared) namespace, create a new queue under it
    • namespace.useExisting=true, queue.useExisting=true — reuse both (cross-stack reference to a queue someone else owns)
    • namespace.useExisting=false, queue.useExisting=true — invalid; construct throws at construct-time
    interface EventHandlerServiceBusProps {
        namespace?: EventHandlerServiceBusNamespaceProps;
        queue?: EventHandlerServiceBusQueueProps;
    }
    Index

    Properties

    Properties

    Service Bus namespace properties (extends ServiceBusNamespaceProps with useExisting)

    Service Bus queue properties (extends ServiceBusQueueProps with useExisting)