@backblaze-labs/b2-mcp
    Preparing search index...

    Interface EventNotificationRuleInput

    Event notification rule accepted by bucket notification tools.

    interface EventNotificationRuleInput {
        eventTypes: string[];
        isEnabled: boolean;
        isSuspended?: boolean;
        name: string;
        objectNamePrefix?: string;
        suspensionReason?: string;
        targetConfiguration: EventNotificationTargetConfigurationInput;
    }
    Index
    eventTypes: string[]

    B2 event types delivered by this rule.

    isEnabled: boolean

    Whether the notification rule is enabled.

    isSuspended?: boolean

    Whether B2 reports the rule as suspended.

    name: string

    Unique notification rule name.

    objectNamePrefix?: string

    Optional object key prefix filter.

    suspensionReason?: string

    B2-provided suspension reason, when available.

    Webhook target configuration.