Databricks SDK for JavaScript
    Preparing search index...

    Interface AlertTaskSubscriber

    Represents a subscriber that will receive alert notifications. A subscriber can be either a user (via email) or a notification destination (via destination_id).

    interface AlertTaskSubscriber {
        subscriberType?:
            | { $case: "userName"; userName: string }
            | { $case: "destinationId"; destinationId: string };
    }
    Index

    Properties

    Properties

    subscriberType?:
        | { $case: "userName"; userName: string }
        | { $case: "destinationId"; destinationId: string }

    Type Declaration

    • { $case: "userName"; userName: string }
      • $case: "userName"
      • userName: string

        A valid workspace email address.

    • { $case: "destinationId"; destinationId: string }