GradientEdge CDK Utils
    Preparing search index...

    Provisioned Service Bus resources for the event handler

    interface EventHandlerServiceBus {
        namespace: Namespace | Output<GetNamespaceResult>;
        queue: Queue | Output<GetQueueResult>;
        queueAuthorizationRule?: QueueAuthorizationRule;
    }
    Index

    Properties

    namespace: Namespace | Output<GetNamespaceResult>

    The provisioned or resolved Service Bus namespace

    queue: Queue | Output<GetQueueResult>

    The provisioned or resolved Service Bus queue

    queueAuthorizationRule?: QueueAuthorizationRule

    Per-queue authorization rule (Listen+Send) used to build the function app's EVENT_INGEST_SERVICE_BUS connection string. Provisioned only when the construct owns the queue (queue.useExisting=false); undefined when the queue is external and the connection string falls back to the namespace-level rule.